public MarketsController(
     IMarketsService marketsService,
     IConvertService convertService)
 {
     _marketsService = marketsService;
     _convertService = convertService;
 }
 public BetfairFetchingService(ICompetitionsService compsService, IEventsService eventsService, IMarketsService marketsService, IMarketBooksService marketBooksService, IAuthClient authClient, IKeepAliveClient keepAliveClient)
 {
     _compsService       = compsService;
     _eventsService      = eventsService;
     _marketsService     = marketsService;
     _marketBooksService = marketBooksService;
     _authClient         = authClient;
     _keepAliveClient    = keepAliveClient;
 }
 public MarketController(IMarketsService marketsService)
 {
     this.marketsService = marketsService;
 }