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