/// <summary> /// Verifica se existe um aluno com o mesmo cpf /// </summary> /// <param name="cpf"></param> /// <returns></returns> public static bool ExisteAlunoComCPF(string cpf) { var existe = false; if (AlunoDao.FindByCpf(cpf) != null) { existe = true; } return(existe); }