コード例 #1
0
 public CompetitionService(MongoRepository<Competition> competitionRepo, NodeService nodeService, MongoRepository<Team> teamRepo, PriceService priceService)
 {
     _competitionRepo = competitionRepo;
     _nodeService = nodeService;
     _teamRepo = teamRepo;
     _priceService = priceService;
 }
コード例 #2
0
 public CompetitionController(TeamService teamService, NodeService nodeService, CompetitionService competitionService)
     : base(competitionService)
 {
     _teamService = teamService;
     _nodeService = nodeService;
 }