예제 #1
0
 public MatchController()
 {
     service     = new MatchServices();
     serviceComp = new CompetitionServices();
 }
예제 #2
0
 public MatchController(IMatchServices matchServices)
 {
     _matchServices = matchServices;
 }
예제 #3
0
 public MatchesController(IRepository repository, IModelsFactory modelsFactory, IMatchServices matchServices)
 {
     _repository    = repository;
     _modelsFactory = modelsFactory;
     _matchServices = matchServices;
 }