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;
 }
Example #2
0
 public GendersController(
     IAppGender genderApp)
 {
     _genderApp = genderApp;
 }