public static bool Maior(string dataNasc) { if (GerenciadorBanco.GetIdade(dataNasc) < 18) { return(false); } else { return(true); } }