コード例 #1
0
ファイル: CatsController.cs プロジェクト: kstreich/catsalot
        public ActionResult <Cat> Get(int id)
        {
            Cat result = _catRepo.GetCatById(id);

            if (result != null)
            {
                return(Ok(result));
            }
            return(NotFound());
        }
コード例 #2
0
 public ActionResult <Cat> Get(int id)
 {
     return(_context.GetCatById(id));
 }