public async Task RemoveCustomAsync(string userId, string watchListId)
 {
     await _customWatchListRepository.RemoveAsync(userId, watchListId);
 }
예제 #2
0
        public async Task RemoveCustomAsync(string userId, string watchListId)
        {
            await _customWatchListRepository.RemoveAsync(userId, watchListId);

            await ReLoadCustomWatchListToNoSqlCache(userId);
        }