Пример #1
0
 public virtual void AddAwayMatchScorer(MatchScorer scorer)
 {
     scorer.Match = this;
     MatchScorers.Add(scorer);
     MatchAwayTeam.AddMatchScorer(scorer);
 }
Пример #2
0
 public virtual void AddHomeMatchScorer(MatchScorer scorer)
 {
     scorer.Match = this;
     MatchScorers.Add(scorer);
     MatchHomeTeam.AddMatchScorer(scorer);
 }
Пример #3
0
 public virtual void AddMatchScorer(MatchScorer scorer)
 {
     scorer.MatchTeam = this;
     MatchScorers.Add(scorer);
 }