예제 #1
0
        public async Task <JsonResult> FindMethods(Guid DiseaseId)
        {
            var result = await _diagnosticService.FindMethods(DiseaseId);

            return(Json(result, JsonRequestBehavior.AllowGet));
        }