コード例 #1
0
 public async Task <ICashout> GetCashout(Guid id)
 {
     return(await _storage.GetDataAsync(CashoutEntity.GeneratePartitionKey(), id.ToString()));
 }
コード例 #2
0
 public Task CreateCashout(Guid id, string contract, decimal amount)
 {
     return(_storage.InsertAsync(CashoutEntity.Create(id, contract, amount)));
 }