Ejemplo n.º 1
0
        public async Task <ActionResult <List <StudentListModel> > > GetStudents()
        {
            var students = await service.GetStudentsAsync();

            return(students);
        }