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; }
public PatientController(IPatientBusiness patientBusiness) { _patientBusness = patientBusiness; }
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; }
public ScheduleController(IPatientBusiness patientBusiness) { _patientBusiness = patientBusiness; }
public PatientController(IPatientBusiness business, ILoggingBusiness logging) { _business = business; _logging = logging; }
public PatientController(ILogger <PatientController> logger, IPatientBusiness patientBusiness) { _logger = logger; _patientBusiness = patientBusiness; }