public MultipleInputCustomersAndDemographicsController(NorthwindContext context)
 {
     _context                   = context;
     customerService            = new CustomerService();
     customerDemographicService = new CustomerDemographicService();
 }
示例#2
0
 public CustomerDemographicsController(NorthwindContext context)
 {
     _context = context;
     customerDemographicService = new CustomerDemographicService();
 }