Esempio n. 1
0
 public ProfileMatchController(IProfileService profileService, UserManager <ApplicationUser> userManager, IClinicianService clinicianService, IProfileMatchService profileMatchService)
 {
     _userManager         = userManager;
     _profileService      = profileService;
     _clinicianService    = clinicianService;
     _profileMatchService = profileMatchService;
 }
Esempio n. 2
0
 public ClinicianController(
     IClinicianService clinicianService,
     IApiMapper mapper)
 {
     _clinicianService = clinicianService;
     _mapper           = mapper;
 }
 public ReportsController(IClinicianService clinicianService, UserManager <ApplicationUser> userManager, IProfileService profileService, IPrescriptionService prescriptionService, ICreditService creditService, IAppointmentService appointmentService)
 {
     _clinicianService    = clinicianService;
     _userManager         = userManager;
     _prescriptionService = prescriptionService;
     _profileService      = profileService;
     _creditService       = creditService;
     _appointmentService  = appointmentService;
 }
 public PrescriptionController(IClinicianService clinicianService, UserManager <ApplicationUser> userManager, IProfileService profileService, IPrescriptionService prescriptionService, IEmailSender emailSender, IPharmacyService pharmacyService)
 {
     _clinicianService    = clinicianService;
     _userManager         = userManager;
     _profileService      = profileService;
     _prescriptionService = prescriptionService;
     _emailSender         = emailSender;
     _pharmacyService     = pharmacyService;
 }
 public ReferralController(IClinicianService clinicianService, UserManager <ApplicationUser> userManager, IProfileService profileService, IProfileMatchService profileMatchService, IReferralService referralService, IEmailSender emailSender)
 {
     _clinicianService    = clinicianService;
     _userManager         = userManager;
     _profileService      = profileService;
     _profileMatchService = profileMatchService;
     _referralService     = referralService;
     _emailSender         = emailSender;
 }
Esempio n. 6
0
 public ClinicianController(IClinicianService clinicianService, UserManager <ApplicationUser> userManager, IEnrollmentService enrollmentService, IAppointmentService appointmentService, IClinicianAvailabilityService clinicianAvailabilityService, IProfileService profileService, IServiceCostService serviceCostService, IProviderCategoryService providerCategoryService)
 {
     _clinicianService             = clinicianService;
     _enrollmentService            = enrollmentService;
     _userManager                  = userManager;
     _appointmentService           = appointmentService;
     _clinicianAvailabilityService = clinicianAvailabilityService;
     _profileService               = profileService;
     _serviceCostService           = serviceCostService;
     _providerCategoryService      = providerCategoryService;
 }
Esempio n. 7
0
 public AuthController(UserManager <ApplicationUser> userManager, ILogger <AuthController> logger,
                       IEmailSender emailSender, SignInManager <ApplicationUser> signInManager, RoleManager <IdentityRole> roleMgr, IConfiguration config, IProfileService profileService, IClinicianService clinicianService)
 {
     _userManager      = userManager;
     _logger           = logger;
     _emailSender      = emailSender;
     _signInManager    = signInManager;
     roleManager       = roleMgr;
     _config           = config;
     _profileService   = profileService;
     _clinicianService = clinicianService;
 }
Esempio n. 8
0
 public AppointmentController(IProfileService profileService, UserManager <ApplicationUser> userManager, IAppointmentService appointmentService, IClinicianAvailabilityService clinicianAvailabilityService, ICreditService creditService, IClinicianService clinicianService, IProfileMatchService profileMatchService, IEmailSender emailSender, IProfileBankService profileBankService, IAppointmentRefundService appointmentRefundService, IServiceCostService serviceCostService, IOptions <PayStackSettings> payStackSettings)
 {
     _userManager                  = userManager;
     _profileService               = profileService;
     _appointmentService           = appointmentService;
     _clinicianAvailabilityService = clinicianAvailabilityService;
     _creditService                = creditService;
     _clinicianService             = clinicianService;
     _profileMatchService          = profileMatchService;
     _emailSender                  = emailSender;
     _profileBankService           = profileBankService;
     _appointmentRefundService     = appointmentRefundService;
     _serviceCostService           = serviceCostService;
     _payStackSettings             = payStackSettings.Value;
 }
Esempio n. 9
0
 public UserController(UserManager <ApplicationUser> userManager, ILogger <UserController> logger,
                       IEmailSender emailSender, SignInManager <ApplicationUser> signInManager, RoleManager <IdentityRole> roleMgr, IProfileService profileService, IEnrollmentService enrollmentService, IProfileMatchService profileMatchService, ICoupleScreeningService coupleScreeningService, IClinicianService clinicianService, IEvaluationService evaluationService, IEmergencyContactService emergencyContactService, IWebHostEnvironment environment)
 {
     _userManager             = userManager;
     _logger                  = logger;
     _emailSender             = emailSender;
     _signInManager           = signInManager;
     roleManager              = roleMgr;
     _profileService          = profileService;
     _enrollmentService       = enrollmentService;
     _profileMatchService     = profileMatchService;
     _coupleScreeningService  = coupleScreeningService;
     _clinicianService        = clinicianService;
     _evaluationService       = evaluationService;
     _emergencyContactService = emergencyContactService;
     _environment             = environment;
 }
 public ClinicianController(IClinicianService clinicianService, UserManager <ApplicationUser> userManager, IEnrollmentService enrollmentService, IAppointmentService appointmentService, IClinicianAvailabilityService clinicianAvailabilityService, IProfileService profileService, IServiceCostService serviceCostService, IProviderCategoryService providerCategoryService, IApplicantService applicantService, ILookUpService lookUpService, IApplicantDocumentService applicantDocumentService, IExpertiseService expertiseService, IClinicianDocumentService profileDocumentService, IEmailSender emailSender, IPopulationService populationService, ISpecialtyService specialtyService, IEducationService educationService, ILanguageService languageService, IPracticeService practiceService, IOtherActivitiesService otherActivitiesService, ILogger <ApplicantController> log, IClinicService clinicService)
 {
     _clinicianService             = clinicianService;
     _enrollmentService            = enrollmentService;
     _userManager                  = userManager;
     _appointmentService           = appointmentService;
     _clinicianAvailabilityService = clinicianAvailabilityService;
     _profileService               = profileService;
     _serviceCostService           = serviceCostService;
     _providerCategoryService      = providerCategoryService;
     _applicantService             = applicantService;
     _lookUpService                = lookUpService;
     _expertiseService             = expertiseService;
     _applicantDocumentService     = applicantDocumentService;
     _profileDocumentService       = profileDocumentService;
     _emailSender                  = emailSender;
     _specialtyService             = specialtyService;
     _populationService            = populationService;
     _educationService             = educationService;
     _languageService              = languageService;
     _practiceService              = practiceService;
     _otherActivitiesService       = otherActivitiesService;
     _clinicService                = clinicService;
 }
 public ProfileController(IProfileService profileService, IClinicianService clinicianService)
 {
     _profileService   = profileService;
     _clinicianService = clinicianService;
 }
 public HomeController(IClinicianService clinicianService)
 {
     _clinicianService = clinicianService;
 }
Esempio n. 13
0
 public EvaluationController(UserManager <ApplicationUser> userManager, IClinicianService clinicianService, IEvaluationService evaluationService)
 {
     _userManager       = userManager;
     _clinicianService  = clinicianService;
     _evaluationService = evaluationService;
 }
Esempio n. 14
0
 public ConversationController(IProfileService profileService, UserManager <ApplicationUser> userManager, IClinicianService clinicianService)
 {
     _profileService   = profileService;
     _userManager      = userManager;
     _clinicianService = clinicianService;
 }
Esempio n. 15
0
 public ApiUtilityController(IClinicianService clinicianService)
 {
     _clinicianService = clinicianService;
 }