コード例 #1
0
 public async Task <SuperHSBuyer> Put([FromBody] SuperHSBuyer superBuyer, string buyerID)
 {
     return(await _command.Update(buyerID, superBuyer));
 }
コード例 #2
0
 public async Task <SuperHSBuyer> Create([FromBody] SuperHSBuyer buyer)
 {
     return(await _command.Create(buyer));
 }
コード例 #3
0
 public async Task <SuperHSBuyer> Create([FromBody] SuperHSBuyer buyer)
 {
     return(await _command.Create(buyer, VerifiedUserContext.AccessToken));
 }
コード例 #4
0
 public async Task <SuperHSBuyer> Put([FromBody] SuperHSBuyer superBuyer, string buyerID)
 {
     return(await _command.Update(buyerID, superBuyer, VerifiedUserContext.AccessToken));
 }
コード例 #5
0
ファイル: BuyerCommand.cs プロジェクト: timothywlee/headstart
 public async Task <SuperHSBuyer> Create(SuperHSBuyer superBuyer)
 {
     return(await Create(superBuyer, null, _oc));
 }