public async Task RemoveAsync(string id)
 {
     await _assetCategoryRepository.RemoveAsync(id);
 }
Exemple #2
0
        public async Task RemoveAsync(string id)
        {
            await _assetCategoryRepository.RemoveAsync(id);

            await _myNoSqlWriter.TryDeleteAsync(AssetCategoryNoSql.GeneratePartitionKey(), AssetCategoryNoSql.GenerateRowKey(id));
        }