public string GetCpfCompleto() { var cpf = CodigoCpf.ToString(); if (string.IsNullOrEmpty(cpf)) { return(""); } while (cpf.Length < 11) { cpf = "0" + cpf; } return(cpf); }
public string GetCpfSemZeros() { return(CodigoCpf.ToString()); }