public async Task RemovePredefinedAsync(string watchListId)
 {
     await _predefinedWatchListRepository.RemoveAsync(watchListId);
 }
Ejemplo n.º 2
0
        public async Task RemovePredefinedAsync(string watchListId)
        {
            await _predefinedWatchListRepository.RemoveAsync(watchListId);

            await _myNoSqlWriterPredefined.TryDeleteAsync(WatchListPredefinedNoSql.GeneratePartitionKey(), WatchListPredefinedNoSql.GenerateRowKey(watchListId));
        }