public async Task <IWatchList> GetCustomAsync(string userId, string watchListId)
 {
     return(await _customWatchListRepository.GetAsync(userId, watchListId));
 }
Пример #2
0
        public async Task <IWatchList> GetCustomAsync(string userId, string watchListId)
        {
            await ReLoadCustomWatchListToNoSqlCache(userId);

            return(await _customWatchListRepository.GetAsync(userId, watchListId));
        }