public ProfileController(IProfileService profileService, UserManager <ApplicationUser> userManager, IEnrollmentService enrollmentService, IAppointmentService appointmentService, IClinicianAvailabilityService clinicianAvailabilityService, IChildrenService childrenService, IProfileMatchService profileMatchService, IProfileBankService profileBankService, IProfileHMOService profileHMOService)
 {
     _profileService               = profileService;
     _enrollmentService            = enrollmentService;
     _userManager                  = userManager;
     _appointmentService           = appointmentService;
     _clinicianAvailabilityService = clinicianAvailabilityService;
     _childrenService              = childrenService;
     _profileMatchService          = profileMatchService;
     _profileBankService           = profileBankService;
     _profileHMOService            = profileHMOService;
 }
 public SettingsController(IProfileBankService profileBankService, IProfileHMOService profileHMOService, UserManager <ApplicationUser> userManager)
 {
     _profileBankService = profileBankService;
     _profileHMOService  = profileHMOService;
     _userManager        = userManager;
 }