14 |
{ |
{ |
15 |
SearchType _search_type = new SearchType(search.DataType, search.IsUnsignedDataType, search.CompareType, search.CompareValueType, search.CompareStartValue, search.CompareEndValue, null); |
SearchType _search_type = new SearchType(search.DataType, search.IsUnsignedDataType, search.CompareType, search.CompareValueType, search.CompareStartValue, search.CompareEndValue, null); |
16 |
_search_type.IsFirstSearch = search.IsFirstSearch; |
_search_type.IsFirstSearch = search.IsFirstSearch; |
17 |
_search_type.Results = search.Results; |
//_search_type.Results = search.Results; |
18 |
return _search_type; |
return _search_type; |
19 |
} |
} |
20 |
#endregion |
#endregion |
120 |
|
|
121 |
public bool IsFirstSearch { get { return _IsFirstSearch; } set { _IsFirstSearch = value; } } |
public bool IsFirstSearch { get { return _IsFirstSearch; } set { _IsFirstSearch = value; } } |
122 |
|
|
123 |
public List<ResultType<object>> Results { get { return _Results; } set { _Results = value; } } |
//public List<ResultType<object>> Results { get { return _Results; } set { _Results = value; } } |
124 |
|
|
125 |
public void LogSearchOptions() |
public void LogSearchOptions() |
126 |
{ |
{ |