예제 #1
0
 public MatchLogic()
 {
     matchStorage    = new MatchStorage();
     teamPlayerLogic = new TeamPlayerLogic();
     goalLogic       = new GoalLogic();
 }
 public IEnumerable<Goal> GetGoalscorers(int id)
 {
     GoalLogic goalLogic = new GoalLogic();
     return goalLogic.GetMacthGoals(id);
 }
예제 #3
0
 public MatchLogic()
 {
     matchStorage = new MatchStorage();
     teamPlayerLogic = new TeamPlayerLogic();
     goalLogic = new GoalLogic();
 }