public PriceService(TeamService teamService, MongoRepository<Competition> competitionRepo, MongoRepository<Result> resultRepo) { _teamService = teamService; _competitionRepo = competitionRepo; _resultRepo = resultRepo; }
public CompetitionController(TeamService teamService, NodeService nodeService, CompetitionService competitionService) : base(competitionService) { _teamService = teamService; _nodeService = nodeService; }
public NodeService(MongoRepository<Result> resultRepo, TeamService teamService) { _resultRepo = resultRepo; _teamService = teamService; }
public TeamController(TeamService teamService, CompetitionService competitionService) : base(competitionService) { _teamService = teamService; }