Exemplo n.º 1
0
 public async Task <IFeeRate> GetFeeRateAsync()
 {
     return(await _storage.GetDataAsync(FeeRateEntity.GeneratePartitionKey(), FeeRateEntity.GenerateRowKey()));
 }
Exemplo n.º 2
0
 public Task SetFeeRateAsync(int feePerByte)
 {
     return(_storage.InsertOrReplaceAsync(FeeRateEntity.Create(feePerByte)));
 }