public SearchServiceModel ToSearchServiceModel(SearchCriteria criteria, SearchServiceType type, string pagekey = null)
 {
     return(new SearchServiceModel()
     {
         Criteria = criteria,
         Page = criteria.Page,
         MaxPage = Pages,
         PageKey = pagekey,
         Type = type,
         Searched = true
     });
 }
Exemplo n.º 2
0
 public WebSearchService(SearchServiceType type)
 {
     ServiceType = type;
 }