Beispiel #1
0
 public Giocatore GetGiocatore(string nome)
 {
     if (nome != null)
     {
         var giocatore = _repo.GetByName(nome);
         return(giocatore);
     }
     else
     {
         return(null);
     }
 }
 public Giocatore GetGiocatore(string name)
 {
     return(_repo.GetByName(name));
 }