Ejemplo n.º 1
0
 public BaseMatchData(int matchType, Guid matchId, MatchManagerInfo home, MatchManagerInfo away)
     : this(matchType, matchId)
 {
     this.Home = home;
     this.Away = away;
 }
Ejemplo n.º 2
0
 public BaseMatchData(EnumMatchType matchType, Guid matchId, MatchManagerInfo home, MatchManagerInfo away)
     : this((int)matchType, matchId, home, away)
 {
 }