public TherapistController(ITherapistService therapistService)
 {
     _therapistService = therapistService;
 }
 public TherapistController(IMapper mapper, ITherapistService therapistSevice)
 {
     _mapper           = mapper;
     _therapistService = therapistSevice;
 }
예제 #3
0
 public BasicAuthenticationHandler(IOptionsMonitor <AuthenticationSchemeOptions> options, ILoggerFactory logger, UrlEncoder encoder, ISystemClock clock, ITherapistService therapistService) : base(options, logger, encoder, clock)
 {
     _therapistService = therapistService;
 }
예제 #4
0
 public UtilsController(ITherapistService therapistService)
 {
     _therapistService = therapistService;
 }
예제 #5
0
파일: Add.cshtml.cs 프로젝트: eisamat/TFG
 public AddPatientModel(ILogger <AddPatientModel> logger, IPatientService patientService, ITherapistService therapistService)
 {
     _logger           = logger;
     _patientService   = patientService;
     _therapistService = therapistService;
 }
예제 #6
0
 public PatientListModel(IPatientService patientService, ILogger <PatientListModel> logger, ITherapistService therapistService)
 {
     _patientService   = patientService;
     _logger           = logger;
     _therapistService = therapistService;
 }