public PlatformLiveLogsController(PlatformJobsRepository jobRepo
                                   , PlatformLogsRepository jobLogsRepo
                                   , StrategyRunsRepository runsRepo
                                   , StrategyLogsRepository runsLogRepo
                                   , ExchangeLogsRepository exchangeLogsRepo
                                   , TradingJobServiceFactory jobsFactory
                                   , TradingPlatform TradingPlatform
                                   , ILoggingService log)
 {
     this.jobRepo          = jobRepo;
     this.jobLogsRepo      = jobLogsRepo;
     this.runsRepo         = runsRepo;
     this.runsLogRepo      = runsLogRepo;
     this.exchangeLogsRepo = exchangeLogsRepo;
     this.jobsFactory      = jobsFactory;
     this.log             = log;
     this.TradingPlatform = TradingPlatform;
 }
 public TradingPlatformHub(TradingJobServiceFactory facto)
 {
     this.facto = facto;
 }