public ActionResult <RodadaNegociacao> Delete(int id)
 {
     try
     {
         return(Ok(_service.Delete(id)));
     }
     catch (NotFoundException)
     {
         return(NotFound("Rodada de Negociação não encontrada!"));
     }
     catch (Exception e)
     {
         return(BadRequest(e.Message));
     }
 }