Beispiel #1
0
        public IActionResult Get(int id)
        {
            Run run = _runRepo.Get(id);

            if (run == null)
            {
                return(NotFound());
            }
            return(new JsonResult(run));
        }