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