示例#1
0
 public ProductChangedEventRepository(ProductsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public StoreRepository(ProductsDbContext context)
 {
     _context = context;
 }
示例#3
0
 public ProductsRepository(ProductsDbContext dbContext, IProductChangedService productChangedService)
 {
     _dbContext             = dbContext;
     _productChangedService = productChangedService;
 }