public ProductsRepository(ProductsContext context, IProductChangedService productChangedService)
 {
     _context = context;
     _productChangedService = productChangedService;
 }
Esempio n. 2
0
 public ProductsRepository(ProductsDbContext dbContext, IProductChangedService productChangedService)
 {
     _dbContext             = dbContext;
     _productChangedService = productChangedService;
 }