Example #1
0
 public Hospitalitation(int id, bool urgency, string shortDescription, Room room, AllActors.Doctor doctor, Bed bedForLaying, DateTime fromDateTime, DateTime toDateTime)
     : base(fromDateTime, toDateTime)
 {
     Urgency          = urgency;
     ShortDescription = shortDescription;
     Id           = id;
     Room         = room;
     Doctor       = doctor;
     BedForLaying = bedForLaying;
 }
Example #2
0
 public Comment(AllActors.Patient patient, AllActors.Doctor doctor)
 {
     Patient = patient;
     Doctor  = doctor;
 }
Example #3
0
 public IssueOfMedicaments(int id, string receipt, MedicalRecord medicalRecord, AllActors.Doctor doctor, List <Medicament> medicaments)
 {
     Receipt       = receipt;
     Id            = id;
     MedicalRecord = medicalRecord;
     Doctor        = doctor;
     Medicaments   = medicaments;
 }
Example #4
0
 public Comment(int id, AllActors.Patient patient, AllActors.Doctor doctor) : this(id)
 {
     Patient = patient;
     Doctor  = doctor;
 }