private static void RecebeCpf() { Tuple <bool, string> retornoCpf = TelaFormularioDadosPessoa.RecebeCpf(); if (retornoCpf.Item1 == false) { UtilitariosGlobais.ApresentaMensagemErro(" CPF inválido!"); RecebeCpf(); } }
internal static void RecebeCpf() { Tuple <bool, string> retornoCpf = TelaFormularioDadosPessoa.RecebeCpf(); if (retornoCpf.Item1 == true) { Console.Clear(); ControllerUsuario.AlteraCpf(TelaOpcoesAlteracaoUsuarioNew.CpfInformado, retornoCpf.Item2); FinalizaAlteracao(); } else { UtilitariosGlobais.ApresentaMensagemErro(" Cpf inválido!"); RecebeCpf(); } }