Exemplo n.º 1
0
        /// <summary>
        /// MÉTODO RESPONSÁVEL POR RETORNAR TODOS OS DO ALUNOS
        /// </summary>
        /// <param name="IDAluno">ID DO ALUNO</param>
        /// <returns>OBJETO ALUNO</returns>
        public async Task <List <Aluno> > GetAllAlunoAsync()
        {
            //VERIFICAR SE OS DADOS QUE SERÃO CONSTRUÍDOS ESTÃO OK
            new List <Aluno>();

            return(await _alunoRepository.GetAllAlunoAsync());
        }