public ValidationOfMedicament(bool approved, Medicament medicament, FeedbackOfValidation feedbackOfValidation, Model.AllActors.Doctor doctor)
 {
     Approved             = approved;
     Medicament           = medicament;
     FeedbackOfValidation = feedbackOfValidation;
     Doctor = doctor;
 }
Example #2
0
 public DoctorWorkDay(int id, DateTime date, int doctorId, Model.AllActors.Doctor doctor, List <Appointment> scheduledAppointments)
 {
     Id       = id;
     Date     = date;
     DoctorId = doctorId;
     Doctor   = doctor;
     ScheduledAppointments = scheduledAppointments;
 }
 public List <MedicalExamination> GetAllMedicalExaminationsByDoctor(Model.AllActors.Doctor doctor)
 {
     return(medicalExaminationRepository.GetAllMedicalExaminationsByDoctor(doctor));
 }