コード例 #1
0
 public JsonResult CreateAppRecord(AppointmentRecordVM appointmentRecordVM)
 {
     appointmentService.AddAppointmentRecord(MapperUtilVM.MapToAppointmentRecordDTO(appointmentRecordVM));
     return(Json(appointmentRecordVM, JsonRequestBehavior.AllowGet));
 }