public ProductsController(AspNetCoreIntroductionContext context, IOptions <MandatoryInfoConfiguration> config)
 {
     _configuration = config.Value;
     _context       = context;
 }
Exemple #2
0
 public CustomersController(AspNetCoreIntroductionContext context)
 {
     _context = context;
 }
Exemple #3
0
 public CategoriesController(AspNetCoreIntroductionContext context)
 {
     _context = context;
 }
Exemple #4
0
 public RegionsController(AspNetCoreIntroductionContext context)
 {
     _context = context;
 }
Exemple #5
0
 public EmployeesController(AspNetCoreIntroductionContext context)
 {
     _context = context;
 }