public async Task RemoveAsync(string id)
 {
     await _assetPairRepository.RemoveAsync(id);
 }
        public async Task RemoveAsync(string id)
        {
            await _assetPairRepository.RemoveAsync(id);

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