Example #1
0
        public ActionResult Details(int id)
        {
            Disease user = repo.GetDesease(id);

            if (user != null)
            {
                return(View(user));
            }
            return(NotFound());
        }