Ejemplo n.º 1
0
 public AnamnesisDTO(long Id, string name, string type, string description, MedicalAppointmentDTO medicalAppointmentDTO)
 {
     this.Id     = Id;
     Name        = name;
     Type        = type;
     Description = description;
     this.MedicalAppointmentDTO = medicalAppointmentDTO;
 }
Ejemplo n.º 2
0
 public ReferralDTO(long id, DateTime date, MedicalAppointmentDTO medicalAppointment)
 {
     Id   = id;
     Date = date;
     MedicalAppointment = medicalAppointment;
 }