public ProductsRepository(ProductsContext context, IProductChangedService productChangedService)
 {
     _context = context;
     _productChangedService = productChangedService;
 }
Пример #2
0
 public ProductsRepository(ProductsDbContext dbContext, IProductChangedService productChangedService)
 {
     _dbContext             = dbContext;
     _productChangedService = productChangedService;
 }