예제 #1
0
 public GetAndStoreMatchDataCommandHandler(
     IMatchDataProvider matchDataProvider,
     IMatchDbRepository matchDbRepository)
 {
     _matchDataProvider = matchDataProvider;
     _matchDbRepository = matchDbRepository;
 }
예제 #2
0
 public TeamController(
     ILogger <TeamController> logger,
     ITeamsDbRepository teamsDbRepository,
     IMatchDbRepository matchDbRepository)
 {
     _logger            = logger;
     _teamsDbRepository = teamsDbRepository;
     _matchDbRepository = matchDbRepository;
 }