/// <summary>
 /// Initializes a new instance of the <see cref="GetLookupListByKeywordRequestHandler"/> class.
 /// </summary>
 /// <param name="keywordsSearchService">The keywords search service.</param>
 /// <param name="lookupTypeService">The lookup type service.</param>
 public GetLookupListByKeywordRequestHandler(IKeywordsSearchService keywordsSearchService, ILookupTypeService lookupTypeService)
 {
     _keywordsSearchService = keywordsSearchService;
     _lookupTypeService     = lookupTypeService;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GetLookupValuesRequestHandler"/> class.
 /// </summary>
 /// <param name="lookupTypeService">The lookup type service.</param>
 public GetLookupValuesRequestHandler(ILookupTypeService lookupTypeService)
 {
     _lookupTypeService = lookupTypeService;
 }