Exemple #1
0
 public PatientController(IRepositories iRepositoryP, ILogger <PatientController> loggerP, IPatientBL iPatientBLP)
 {
     this.iRepository = iRepositoryP;
     this.logger      = loggerP;
     this.iPatientBL  = iPatientBLP;
 }
Exemple #2
0
 public PatientController(IPatientBL patientBL)
 {
     _patientBL = patientBL;
     EmailHelper.Init(EmailHelper.EMAIL_SENDER, EmailHelper.EMAIL_CREDENTIALS, EmailHelper.SMTP_CLIENT);
 }