Ejemplo n.º 1
0
        public IActionResult Details(int id)
        {
            var model = _repo.GetPlayersById(id);

            return(View(model));
        }
Ejemplo n.º 2
0
 public Player GetPlayer(int id)
 {
     return(_repo.GetPlayersById(id));
 }