protected static List<Discente> LISTA_DISCENTES_PREENCHIDA()
        {
            List<Discente> retorno = new List<Discente>();

            for (int i = 0; i < 5; i++)
            {
                var discente = new Discente();
                retorno.Add(discente);
            }
            return retorno;
        }
Example #2
0
        protected static List <Discente> LISTA_DISCENTES_PREENCHIDA()
        {
            List <Discente> retorno = new List <Discente>();

            for (int i = 0; i < 5; i++)
            {
                var discente = new Discente();
                retorno.Add(discente);
            }
            return(retorno);
        }