Exemple #1
0
        public async Task <ActionResult> ListAllInvestigationsForDiagnosis(int id)
        {
            return(Json("Not implemented: ListAllInvestigationsForDiagnosis")); //TODO: ListAllInvestigationsForDiagnosis()

            if (id < 1)
            {
                return(Json(null));
            }

            var result = await _drugService.ListAllInvestigationsForDiagnosis(id);

            return(Json(result));
        }