Esempio n. 1
0
 public PracticeController(
     IPracticeService practiceService,
     ILoggerFactory loggerFactory)
 {
     _practiceService = practiceService;
     _logger          = loggerFactory.CreateLogger <PracticeController>();
 }
 public SubPracticeController(IPracticeService practiceService,
                              ISubPracticeService subPracticeService, IEmployeeService empService)
 {
     this.practiceService    = practiceService;
     this.subPracticeService = subPracticeService;
     this.empService         = empService;
 }
 public PracticeController(IPracticeService practiceService, IEmployeeService empService,
                           IDropDownSubCategoryService subCategoryService)
 {
     this.practiceService    = practiceService;
     this.empService         = empService;
     this.subCategoryService = subCategoryService;
 }
 public PracticesController(IPracticeService practiceService, INPIService npiService, IUserService userService,
     ISpecialityService specialityService)
 {
     _practiceService = practiceService;
     _npiService = npiService;
     _userService = userService;
     _specialityService = specialityService;
 }
 public PatientsController(IPatientService patientService, IStateService stateService,
     IPracticeService practiceService, INPIService npiService, IPayerService payerService,
     IInsuranceService insuranceService)
 {
     _patientService = patientService;
     _stateService = stateService;
     _practiceService = practiceService;
     _npiService = npiService;
     _payerService = payerService;
     _insuranceService = insuranceService;
 }
Esempio n. 6
0
 public ReportsController(IAllocationService allocationService, IProjectService projectService,
                          IEmployeeService empService, IPracticeService practiceService, IProjectAccountService accountsService,
                          IDropDownSubCategoryService subCategoryService, IEmployeeTechService techService)
 {
     this.allocationService  = allocationService;
     this.projectService     = projectService;
     this.empService         = empService;
     this.practiceService    = practiceService;
     this.accountsService    = accountsService;
     this.subCategoryService = subCategoryService;
     this.techService        = techService;
 }
 public ProjectController(IEmployeeService empService,
                          IDropDownSubCategoryService subCategoryService,
                          IPracticeService practiceService,
                          ISubPracticeService subPracticeService, IProjectService projectService,
                          IProjectAccountService accountsService)
 {
     this.empService         = empService;
     this.subCategoryService = subCategoryService;
     this.practiceService    = practiceService;
     this.subPracticeService = subPracticeService;
     this.projectService     = projectService;
     this.accountsService    = accountsService;
 }
 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 PracticeController(IMapper mapper, IPracticeService practiceService, IGoalService goalService)
 {
     _mapper = mapper;
     _practiceService = practiceService;
     _goalService = goalService;
 }
 public PracticeController(IPracticeService practiceService, IProcessPerspectiveService processPerspective)
 {
     this.practiceService = practiceService;
     this.processPerspective = processPerspective;
 }
 public PracticeRequirementController(IPracticeRequirementService practiceRequirementService, IPracticeService practiceService)
 {
     this.practiceRequirementService = practiceRequirementService;
     this.practiceService = practiceService;
 }
 public LocationsController(IPracticeService practiceService,IStateService stateService,IServicePlaceService servicePlaceService)
 {
     _practiceService = practiceService;
     _stateService = stateService;
     _servicePlaceService = servicePlaceService;
 }
Esempio n. 13
0
 public PracticeRequirementController(IPracticeRequirementService practiceRequirementService, IPracticeService practiceService)
 {
     this.practiceRequirementService = practiceRequirementService;
     this.practiceService            = practiceService;
 }
 public AuthorizationsController(IPracticeService practiceService, IAuthorizationService authorizationService)
 {
     _practiceService = practiceService;
     _authorizationService = authorizationService;
 }
Esempio n. 15
0
 public MigrationController(IPatientService patientService, IPracticeService practiceService)
 {
     PatientService  = patientService;
     PracticeService = practiceService;
 }
 public NavigationController(IPracticeService practiceService)
 {
     _practiceService = practiceService;
 }
 public HomeController(IPracticeService practiceService)
 {
     _PracticeService = practiceService;
 }
 public ProvidersController(IPracticeService practiceService,IStateService stateService,ISpecialityService specialityService)
 {
     _practiceService = practiceService;
     _stateService = stateService;
     _specialityService = specialityService;
 }
Esempio n. 19
0
 public PracticeController(IPracticeService practiceService)
 {
     this.practiceService = practiceService;
 }
 public PracticeController(IPracticeService practiceService, IProcessPerspectiveService processPerspective)
 {
     this.practiceService    = practiceService;
     this.processPerspective = processPerspective;
 }