Example #1
0
 public ApprovalDTO(long id, string desc, bool approved, DoctorDTO doctor, PropositionDTO Proposition)
 {
     this.Description = desc;
     this.IsApproved  = approved;
     this.Doctor      = doctor;
     this.Proposition = Proposition;
 }
Example #2
0
 public ReviewDTO(int rating, string description, DoctorDTO doctor)
 {
     Rating      = rating;
     Description = description;
     Doctor      = doctor;
 }