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