Example #1
0
 public static Information Create(Entities.DoctorAggregate.Doctor doctor, InformationDto dto)
 {
     return(new (
                dto.Type,
                dto.Title,
                dto.Priority,
                doctor
                ));
 }
 public static Stats Create(Entities.DoctorAggregate.Doctor doctor)
 {
     return(new(doctor));
 }