예제 #1
0
        public IActionResult Details(int id)
        {
            var model = _repo.GetPlayersById(id);

            return(View(model));
        }
예제 #2
0
 public Player GetPlayer(int id)
 {
     return(_repo.GetPlayersById(id));
 }