コード例 #1
0
 public MatchServiceTest()
 {
     _matchService   = new MatchService(GetInMemoryTeamRepository());
     _rafflesService = new RafflesService(GetInMemoryTeamRepository());
     _teamRepository = GetInMemoryTeamRepository();
     finals          = new List <Team>();
 }
コード例 #2
0
 public RafflesAppService(IRafflesService rafflesService)
 {
     _rafflesService = rafflesService;
 }
コード例 #3
0
 public RafflesServiceTest()
 {
     _rafflesService = new RafflesService(GetInMemoryTeamRepository());
     _teamRepository = GetInMemoryTeamRepository();
 }