Beispiel #1
0
 public async Task <SuperHSBuyer> Put([FromBody] SuperHSBuyer superBuyer, string buyerID)
 {
     return(await _command.Update(buyerID, superBuyer));
 }
Beispiel #2
0
 public async Task <SuperHSBuyer> Create([FromBody] SuperHSBuyer buyer)
 {
     return(await _command.Create(buyer));
 }
Beispiel #3
0
 public async Task <SuperHSBuyer> Create([FromBody] SuperHSBuyer buyer)
 {
     return(await _command.Create(buyer, VerifiedUserContext.AccessToken));
 }
Beispiel #4
0
 public async Task <SuperHSBuyer> Put([FromBody] SuperHSBuyer superBuyer, string buyerID)
 {
     return(await _command.Update(buyerID, superBuyer, VerifiedUserContext.AccessToken));
 }
Beispiel #5
0
 public async Task <SuperHSBuyer> Create(SuperHSBuyer superBuyer)
 {
     return(await Create(superBuyer, null, _oc));
 }