コード例 #1
0
ファイル: AnamnesisDTO.cs プロジェクト: Selich/SIMS-HCI
 public AnamnesisDTO(long Id, string name, string type, string description, MedicalAppointmentDTO medicalAppointmentDTO)
 {
     this.Id     = Id;
     Name        = name;
     Type        = type;
     Description = description;
     this.MedicalAppointmentDTO = medicalAppointmentDTO;
 }
コード例 #2
0
ファイル: ReferralDTO.cs プロジェクト: Selich/SIMS-HCI
 public ReferralDTO(long id, DateTime date, MedicalAppointmentDTO medicalAppointment)
 {
     Id   = id;
     Date = date;
     MedicalAppointment = medicalAppointment;
 }