public PatientController(IPatientBusiness patientBusiness, IPatientAuthorization patientAuthorization,
                          IDistributedCache distributedCache)
 {
     _patientBusiness      = patientBusiness;
     _patientAuthorization = patientAuthorization;
     _distributedCache     = distributedCache;
 }
 public PatientController(IHttpContextAccessor httpContextAccessor,
                          IPatientBusiness patientBusiness)
 {
     _authenticationDto = httpContextAccessor.HttpContext.User.ToAuthenticationDto();
     _patientBusiness   = patientBusiness;
 }
 public PatientController(IPatientBusiness patientBusiness, IAppoinmentBusiness appoinmentBusiness)
 {
     this._appoinmentBusiness = appoinmentBusiness;
     this._patientBusiness    = patientBusiness;
 }
Exemple #4
0
 public PatientController(IPatientBusiness patientBusiness)
 {
     _patientBusness = patientBusiness;
 }
Exemple #5
0
 public DashboardController(IDoctorBusiness doctorBusiness, IAppoinmentBusiness appoinmentBusiness, IPatientBusiness patientBusiness)
 {
     this._appoinmentBusiness = appoinmentBusiness;
     this._doctorBusiness     = doctorBusiness;
     this._patientBusiness    = patientBusiness;
 }
 public PatientController(IPatientBusiness patientBusiness,
                          ILogger <PatientController> logger)
 {
     _patientBusiness = patientBusiness;
     _logger          = logger;
 }
Exemple #7
0
 public ScheduleController(IPatientBusiness patientBusiness)
 {
     _patientBusiness = patientBusiness;
 }
Exemple #8
0
 public PatientController(IPatientBusiness business, ILoggingBusiness logging)
 {
     _business = business;
     _logging  = logging;
 }
Exemple #9
0
 public PatientController(ILogger <PatientController> logger, IPatientBusiness patientBusiness)
 {
     _logger          = logger;
     _patientBusiness = patientBusiness;
 }