public League GetLeague(LeagueNameId league)
 {
     return(new League(league));
 }
Example #2
0
 /// <summary>
 /// C'tor that gets the LeagueNameId enum and make a League instance of the
 /// asked country
 /// </summary>
 /// <param name="league"></param>
 public League(LeagueNameId league) : this((int)league)
 {
 }
Example #3
0
 /// <summary>
 /// C'tor that gets the LeagueNameId enum and make a League instance of the
 /// asked country
 /// </summary>
 /// <param name="league"></param>
 public League(LeagueNameId league)
     : this((int)league)
 {
 }