public Task <Dictionary <string, bool> > MarketsState()
 {
     return(Task.FromResult(_scheduleSettingsCacheService.GetMarketState()
                            .ToDictionary(x => x.Key, x => x.Value.IsEnabled)));
 }