Exemple #1
0
 public AuctionUpdateService(ILogger <AuctionUpdateService> logger, IDataContextFactory factory, IOptionsSnapshot <UpdateOptions> options, IAuctionPlatform search)
 {
     this.logger  = logger;
     this.factory = factory;
     this.search  = search;
     this.options = options.Value;
 }
 public SearchQueryUpdateService(
     ILogger <SearchQueryUpdateService> logger,
     IDataContextFactory factory,
     IOptionsSnapshot <SearchQueryUpdateOptions> options,
     IAuctionPlatform search,
     INotifier notifier)
 {
     this.logger   = logger;
     this.factory  = factory;
     this.search   = search;
     this.notifier = notifier;
     this.options  = options.Value;
 }
 public SearchQueryService(IDataContext data, IAuctionPlatform search, IIdentity identity)
 {
     this.data     = data;
     this.search   = search;
     this.identity = identity;
 }
Exemple #4
0
 public SearchResultService(IDataContext data, IIdentity identity, IAuctionPlatform provider)
 {
     this.data     = data;
     this.identity = identity;
     this.provider = provider;
 }