public MultipleInputCustomersAndDemographicsController(NorthwindContext context)
 {
     _context                   = context;
     customerService            = new CustomerService();
     customerDemographicService = new CustomerDemographicService();
 }
Exemplo n.º 2
0
 public CustomerDemographicsController(NorthwindContext context)
 {
     _context = context;
     customerDemographicService = new CustomerDemographicService();
 }