Exemplo n.º 1
0
 public IHttpActionResult Put(Pagamento pagamento)
 {
     _pagamentoService.ValidarPagamento(pagamento);
     if (_notification.HasNotification())
     {
         return(Content(HttpStatusCode.BadRequest, _notification.GetNotification()));
     }
     _pagamentoRepository.EditarPagamento(pagamento);
     return(Ok());
 }