コード例 #1
0
        public IActionResult Detay(int id)
        {
            var result = Kullanici.Detay(id);

            if (result == null || result.Id <= 0)
            {
                return(View("NotFound"));
            }

            return(View("Detay", result));
        }