public CachedLoadResultService(
     ISetting config,
     IRepositoryRegistry context,
     ISeadQueryCache cache,
     IResultService service,
     IBogusPickService bogusPickService) : base(config, context, cache, service, bogusPickService)
 {
     Cache = cache;
 }
示例#2
0
 public CachedLoadFacetService(
     ISetting config,
     IRepositoryRegistry context,
     ISeadQueryCache cache,
     IBogusPickService bogusService,
     IFacetContentServiceLocator contentServiceLocator) : base(config, context, cache, bogusService, contentServiceLocator)
 {
     Cache = cache;
 }
 public LoadResultService(
     ISetting config,
     IRepositoryRegistry context,
     #pragma warning disable IDE0060
     ISeadQueryCache cache,
     #pragma warning restore IDE0060
     IResultService service,
     IBogusPickService bogusPickService) : base(config, context)
 {
     ResultService    = service;
     BogusPickService = bogusPickService;
 }
示例#4
0
 public LoadFacetService(ISetting config, IRepositoryRegistry context, ISeadQueryCache cache,
                         IBogusPickService bogusService, IFacetContentServiceLocator contentServiceLocator) : base(config, context)
 {
     BogusPickService      = bogusService;
     ContentServiceLocator = contentServiceLocator;
 }