예제 #1
0
        public string GetCpfCompleto()
        {
            var cpf = CodigoCpf.ToString();

            if (string.IsNullOrEmpty(cpf))
            {
                return("");
            }

            while (cpf.Length < 11)
            {
                cpf = "0" + cpf;
            }

            return(cpf);
        }
예제 #2
0
 public string GetCpfSemZeros()
 {
     return(CodigoCpf.ToString());
 }