protected ActionResult CustomResponse(object result = null) { if (OperacaoValida()) { return(Ok(new { success = true, data = result })); } return(BadRequest(new { success = false, errors = _notificador.Notificacoes().Select(n => n.Mensagem) })); }