public PatientAccountController(
     IUnitOfWork unitOfWork,
     IPatientAccountService patientAccountService,
     IAccountEmailService accountEmailService,
     IAuthService authService) : base(authService)
 {
     UnitOfWork            = unitOfWork;
     PatientAccountService = patientAccountService;
     AccountEmailService   = accountEmailService;
 }
 public PatientController(PatientService patientService,
                          IPatientRegistrationService patientRegistrationService,
                          IHostEnvironment hostEnvironment,
                          IPatientAccountService patientAccountService
                          )
 {
     _hostEnvironment            = hostEnvironment;
     _patientService             = patientService;
     _patientRegistrationService = patientRegistrationService;
     _patientAccountService      = patientAccountService;
 }
 public PatientRegistrationService(IPatientAccountService patientAccountService, IRegistrationNotifier registrationNotifier)
 {
     this.patientAccountService = patientAccountService;
     this.registrationNotifier  = registrationNotifier;
 }