예제 #1
0
파일: Match.cs 프로젝트: erikaspl/WhoScored
 public virtual void AddAwayMatchScorer(MatchScorer scorer)
 {
     scorer.Match = this;
     MatchScorers.Add(scorer);
     MatchAwayTeam.AddMatchScorer(scorer);
 }
예제 #2
0
파일: Match.cs 프로젝트: erikaspl/WhoScored
 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);
 }