Beispiel #1
0
 public CatService(IHttpService httpService, CatMatchContext context, IConfiguration config)
 {
     HttpService     = httpService;
     Context         = context;
     CatsApiEndPoint = new Uri(config["Cats:EndPoint"]);
 }
Beispiel #2
0
 public MatchService(CatMatchContext context, IRankingService rankingService)
 {
     Context        = context;
     RankingService = rankingService;
 }