public JsonResult RecalculateGIRbyId(string subjectId, string calcDate) { var studyId = DbUtils.GetStudyIDFromSubjectId(subjectId); var gir = GIRUpdateService.UpdateForStudyIdandDate(studyId.ToString(), calcDate); return(Json(gir)); }
public JsonResult RecalculateGIR(object obj) { GIRUpdateService.UpdateAll(); return(Json("")); }