private async Task <Result <Exception, Unit> > InnerAsync(AgentUpdateVO agent, HttpMethod httpMethod)
 => await InnerAsync <Unit, AgentUpdateVO>("agents", agent, httpMethod);
Exemple #2
0
 public Result <Exception, Unit> Update(AgentUpdateVO agent)
 => _agentInformations.Update(agent);
 public Result <Exception, Unit> Update(AgentUpdateVO agent)
 => InnerAsync(agent, HttpMethod.Patch).ConfigureAwait(false).GetAwaiter().GetResult();