//public AccountController()
 //{ }
 public AccountController(ICustomerService customer, IStaffProfileService StaffProf)
 {
     _customer = customer;
     _StaffProf = StaffProf;
 }
 public EmployeeController(IStaffProfileService staffProfile, IPatientAppointmentService appointments)
 {
     _staffProfile = staffProfile;
     _appointments = appointments;
 }