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