Example #1
0
 public SubCategoriesController(IProductManagerContext context)
 {
     db = context;
 }
Example #2
0
 public SubCategoriesController()
 {
     db = new ProductManagerContext();
 }
Example #3
0
 public ProductsController(IProductManagerContext context)
 {
     db = context;
 }
Example #4
0
 public ProductsController()
 {
     db = new ProductManagerContext();
 }
Example #5
0
 public EmployeesController(IProductManagerContext context)
 {
     db = context;
 }
Example #6
0
 public EmployeesController()
 {
     db = new ProductManagerContext();
 }