Beispiel #1
0
 public AzureStandardService(
     IStandardIndexService standardIndexService,
     IMapper <StandardModel, Models.StandardModel> mapper,
     IAzureService azureService,
     IODataQueryService oDataQueryService,
     ISearchTermFormattingService searchTermFormattingService)
     : base(searchTermFormattingService)
 {
     _standardIndexService = standardIndexService;
     _mapper            = mapper;
     _azureService      = azureService;
     _oDataQueryService = oDataQueryService;
 }
Beispiel #2
0
 public StandardIndexController(IStandardIndexService standardIndexService)
 {
     _standardIndexService = standardIndexService;
 }