Exemple #1
0
 public AppointmentService(IPatientVisitAppointmentDocument patientVisitAppointmentDocument,
                             IBlockAppointmentDocument blockAppointmentDocument,
                             IOtherAppointmentDocument otherAppointmentDocument,
                             IRecurrenceGroupDocument recurrenceDocument,
                             IPatientDocument patientDocument, IAppointmentDocument appointmentDocument, IMasterService masterService)
 {
     _blockAppointmentDocument = blockAppointmentDocument;
     _otherAppointmentDocument = otherAppointmentDocument;
     _patientVisitAppointmentDocument = patientVisitAppointmentDocument;
     _recurrenceDocument = recurrenceDocument;
     _patientDocument = patientDocument;
     _appointmentDocument = appointmentDocument;
     _masterService = masterService;
 }
Exemple #2
0
 public LoginController()
 {
     _document = new PatientDocument();
 }
 public PatientController()
 {
     _document = new PatientDocument();
 }