public CustomersController(
     IAppCustomer customerApp,
     IAppCity cityApp,
     IAppClassification classificationApp,
     IAppGender genderApp,
     IAppRegion regionApp,
     UserManager <IdentityUser> userManager)
 {
     _customerApp       = customerApp;
     _cityApp           = cityApp;
     _classificationApp = classificationApp;
     _genderApp         = genderApp;
     _regionApp         = regionApp;
     _userManager       = userManager;
 }
Beispiel #2
0
 public ClassificationsController(
     IAppClassification classificationApp)
 {
     _classificationApp = classificationApp;
 }