// DELETE api/<controller>/5
 public async void Delete(ProdutoFormasDePagamento value)
 {
     try
     {
         await _produtoFormasDePagamentoAppService.RemovePhysical(value);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }
 // PUT api/<controller>/5
 public async void Put(int id, [FromBody] ProdutoFormasDePagamento value)
 {
     try
     {
         await _produtoFormasDePagamentoAppService.Update(value);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }