Ejemplo n.º 1
0
 public async Task <Document> Put(string id, [FromBody] SocialInteractions value)
 {
     return(await _socialInteractionsRepository.UpdateItemAsync(id, value));
 }
Ejemplo n.º 2
0
 public async Task <Document> Post([FromBody] SocialInteractions value)
 {
     return(await _socialInteractionsRepository.CreateItemAsync(value));
 }