public Doctor GetDoctorById(int doctorId)
 {
     DAL.DoctorGateway gateway = new DoctorGateway();
     return(gateway.GetDoctorById(doctorId));
 }
Esempio n. 2
0
 public Doctor GetDoctorById(int doctorId)
 {
     return(doctorGateway.GetDoctorById(doctorId));
 }