コード例 #1
0
 private List <AppointmentRecordVM> GetAppointmentRecords()
 {
     return(MapperUtilVM.MapToAppointmentRecordVMList(appointmentService.GetAppointmentRecords()));
 }
コード例 #2
0
 public PartialViewResult AJAXGetAppointmentRecords(long appointmentId)
 {
     return(PartialView("_ListAppointmentRecords", MapperUtilVM.MapToAppointmentRecordVMList(appointmentService.GetAppointmentRecordsByAppointment(appointmentId))));
 }