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