public FindItemsToCheckExist(IEnumerable <IItemProvider> itemProviders, IMarketCheckService marketCheckService,
                              Func <ISsmbDbContext> dbContextFactory)
 {
     this.marketCheckService = marketCheckService;
     this.itemProviders      = itemProviders;
     this.dbContextFactory   = dbContextFactory;
 }
예제 #2
0
 public ItemMarketCheck(IMarketCheckService marketCheckService, Func <ISsmbDbContext> dbContextFactory)
 {
     this.marketCheckService = marketCheckService;
     this.dbContextFactory   = dbContextFactory;
 }
예제 #3
0
 public CheckItemExistsJob(IMarketCheckService marketCheckService, Func <ISsmbDbContext> dbContextFactory)
 {
     this.marketCheckService = marketCheckService;
     this.dbContextFactory   = dbContextFactory;
 }