public IActionResult GetStudents([FromServices] IStudentsDal serv, [FromQuery] string orderBy)


        {
            if (orderBy == "lastname")
            {
                return(Ok(_dbService.GetStudents().OrderBy(stu => stu.LastName)));
            }
            return(Ok(_dbService.GetStudents()));
        }
Beispiel #2
0
 public IActionResult GetStudents()
 {
     return(Ok(_dbService.GetStudents()));
 }
Beispiel #3
0
 public IActionResult GetStudents(string orderBy)
 {
     return(Ok(studentDB.GetStudents()));
 }
Beispiel #4
0
 public IActionResult GetStudents(string orderBy)
 {
     //return Ok(_dbService.GetStudents());
     return(Ok(_dbService.GetStudents()));
 }