예제 #1
0
        public JsonResult RecalculateGIRbyId(string subjectId, string calcDate)
        {
            var studyId = DbUtils.GetStudyIDFromSubjectId(subjectId);
            var gir     = GIRUpdateService.UpdateForStudyIdandDate(studyId.ToString(), calcDate);

            return(Json(gir));
        }
예제 #2
0
 public JsonResult RecalculateGIR(object obj)
 {
     GIRUpdateService.UpdateAll();
     return(Json(""));
 }