public EFCategoryRepository(NatustechDbContext natustechDbContext)
 {
     this.natustechDbContext = natustechDbContext;
 }
 public ProductService(NatustechDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 3
0
 public EFProductRepository(NatustechDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Exemplo n.º 4
0
 public CategoriesController(NatustechDbContext context)
 {
     _context = context;
 }