Example #1
0
 public StatisticRepository(DepotContext dbContext)
 {
     this._dbContext = dbContext;
 }
Example #2
0
 public ModerationRepository(DepotContext dbContext, IProducerCodeService producerCodeService)
 {
     this._producerCodeService = producerCodeService;
     this._dbContext           = dbContext;
 }
Example #3
0
 public CatalogItemStatisticRepository(DepotContext dbContext)
 {
     this._dbContext = dbContext;
 }
 public SeoRepository(DepotContext dbContext, IHostingEnvironment hostingEnvironment)
 {
     this._dbContext          = dbContext;
     this._hostingEnvironment = hostingEnvironment;
 }
Example #5
0
 public CatalogItemRepository(DepotContext dbContext, IProducerCodeService producerCodeService)
 {
     this._dbContext           = dbContext;
     this._producerCodeService = producerCodeService;
 }
Example #6
0
 public SupplierOfferFilesRepository(DepotContext dbContext)
 {
     this._dbContext = dbContext;
 }
Example #7
0
 public SupplierWarehouseRepository(DepotContext dbContext)
 {
     this._dbContext = dbContext;
 }
 public PartProducerRepository(DepotContext dbContext)
 {
     this._dbContext = dbContext;
 }
 public PartSupplierRepository(DepotContext dbContext)
 {
     this._dbContext = dbContext;
 }
 public SupplierPriceItemRepository(DepotContext dbContext, IProducerCodeService producerCodeService)
 {
     this._dbContext           = dbContext;
     this._producerCodeService = producerCodeService;
 }