public static void checkIdValue(Identidade id)
        {
            String padrao = "^[1-9]\\d*$";

            if (!Regex.IsMatch(id.ToString(),padrao))
            {
                throw new ArgumentException("Fora das limites numéricos!");
            }
        }