Ejemplo n.º 1
0
 public VisitationManagementService(IVisitationRepository visitationRepository,
                                    IMedicationRepository medicationRepository,
                                    ITreatmentRepository treatmentRepository,
                                    ITestRepository testRepository)
 {
     _visitationRepository = visitationRepository;
     _medicationRepository = medicationRepository;
     _treatmentRepository  = treatmentRepository;
     _testRepository       = testRepository;
 }
Ejemplo n.º 2
0
 public BillingManagementService(IVisitationRepository visitationRepository,
                                 ITreatmentRepository treatmentRepository,
                                 ITestRepository testRepository,
                                 IDoctorRepository doctorRepository,
                                 IPatientRepository patientRepository,
                                 IMedicationRepository medicationRepository)
 {
     _visitationRepository = visitationRepository;
     _treatmentRepository  = treatmentRepository;
     _testRepository       = testRepository;
     _doctorRepository     = doctorRepository;
     _patientRepository    = patientRepository;
     _medicationRepositpry = medicationRepository;
 }
Ejemplo n.º 3
0
 public LegalManagementService(IDoctorRepository doctorRepository,
                               IVisitationRepository visitationRepository)
 {
     _doctorRepository     = doctorRepository;
     _visitationRepository = visitationRepository;
 }