예제 #1
0
 public ActionResult GetAppointment(AppointmentModel model)
 {
     model.DoctorName  = model.GetDoctorName(model.DoctorId);
     model.ChamberName = model.GetChamberName(model.ChamberId);
     return(View(model));
 }