Example #1
0
 public MatchesController(Context context, IMapper mapper, ApiFootballDataClient client)
 {
     _context        = context;
     _matchDAO       = new MatchManager(context, mapper);
     _autoUpdate     = new AutoUpdateManager(context, client);
     _rankingManager = new RankingManager(context);
     _mapper         = mapper;
 }
Example #2
0
 public AutoUpdateManager(Context context, ApiFootballDataClient client)
 {
     _context = context;
     _client  = client;
 }