public EmergencyRequest(TypeOfAppointment typeOfAppointment, string sideNotes, Specialization specialization, MedicalRecord.MedicalRecord medicalRecord)
 {
     TypeOfAppointment = typeOfAppointment;
     SideNotes         = sideNotes;
     Specialization    = specialization;
     MedicalRecord     = medicalRecord;
     Scheduled         = false;
 }
Ejemplo n.º 2
0
 public ExaminationSurgery(DateTime startTime, TypeOfAppointment type, Doctor doctor, MedicalRecord.MedicalRecord record)
 {
     StartTime     = startTime;
     Type          = type;
     Doctor        = doctor;
     MedicalRecord = record;
     Treatments    = new List <Treatment>();
     Diagnoses     = new List <Diagnosis>();
 }
Ejemplo n.º 3
0
 public Appointment(DateTime startTime, DateTime endTime, TypeOfAppointment type, string shortDescription,
                    bool urgent, bool deleted, Room room, MedicalRecord.MedicalRecord medicalRecord, Doctor doctor)
 {
     Finished          = false;
     StartTime         = startTime;
     EndTime           = endTime;
     TypeOfAppointment = type;
     ShortDescription  = shortDescription;
     Urgent            = urgent;
     Deleted           = deleted;
     Room          = room;
     MedicalRecord = medicalRecord;
     Doctor        = doctor;
 }
Ejemplo n.º 4
0
 public Occupation(DateTime startDate, DateTime endDate, MedicalRecord.MedicalRecord patient)
 {
     OccupiedFromDate = startDate;
     OccupiedToDate   = endDate;
     Patient          = patient;
 }