public List <MODEL.Alunos> SelectByNome(string nome)
        {
            DAL.Alunos dalAlu = new DAL.Alunos();

            return(dalAlu.SelectByNome(nome));
        }