public MultipleInputCustomersAndDemographicsController(NorthwindContext context)
 {
     _context                   = context;
     customerService            = new CustomerService();
     customerDemographicService = new CustomerDemographicService();
 }
Пример #2
0
 public CustomerDemographicsController(NorthwindContext context)
 {
     _context = context;
     customerDemographicService = new CustomerDemographicService();
 }