public MatchServiceTest()
 {
     _matchService   = new MatchService(GetInMemoryTeamRepository());
     _rafflesService = new RafflesService(GetInMemoryTeamRepository());
     _teamRepository = GetInMemoryTeamRepository();
     finals          = new List <Team>();
 }
Example #2
0
 public RafflesAppService(IRafflesService rafflesService)
 {
     _rafflesService = rafflesService;
 }
 public RafflesServiceTest()
 {
     _rafflesService = new RafflesService(GetInMemoryTeamRepository());
     _teamRepository = GetInMemoryTeamRepository();
 }