Exemplo n.º 1
0
 public ProductChangedEventRepository(ProductsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public StoreRepository(ProductsDbContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public ProductsRepository(ProductsDbContext dbContext, IProductChangedService productChangedService)
 {
     _dbContext             = dbContext;
     _productChangedService = productChangedService;
 }