Esempio n. 1
0
 public TeamController(ITeamAppService teamAppService,
                       IMatchAppService matchAppService, IRafflesAppService rafflesAppService)
 {
     _teamAppService    = teamAppService;
     _matchAppService   = matchAppService;
     _rafflesAppService = rafflesAppService;
 }
 public RafflesAppServiceTest()
 {
     _rafflesAppService = new RafflesAppService(new RafflesService(GetInMemoryTeamRepository()));
     _teamRepository    = GetInMemoryTeamRepository();
 }