public ActionResult Cadastrar(IFormCollection formCollection, PerfilViewModel model) { PreencherPerfilFuncionalidade(formCollection, model); var resultado = appService.Inserir(model); if (resultado.Successo) { resultado.RedirecionarPara(Url.Action(nameof(Index))); } return(Json(resultado.Retorno())); }