コード例 #1
0
 // POST api/<controller>
 public async void Post([FromBody] EmpresaCliente value)
 {
     try
     {
         await _empresaClienteAppService.Add(value);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }