public IActionResult GetStudent()
 {
     return(Ok(_dbService.GetStudents()));
 }
 public IActionResult GetStudent(String orderby)
 {
     return(Ok(_dbServices.GetStudents()));
 }
Beispiel #3
0
        public IActionResult GetStudents()
        {
            var students = service.GetStudents();

            return(Ok(students));
        }