public IActionResult GetStudents([FromServices] IStudentsDal serv, [FromQuery] string orderBy) { if (orderBy == "lastname") { return(Ok(_dbService.GetStudents().OrderBy(stu => stu.LastName))); } return(Ok(_dbService.GetStudents())); }
public IActionResult GetStudents() { return(Ok(_dbService.GetStudents())); }
public IActionResult GetStudents(string orderBy) { return(Ok(studentDB.GetStudents())); }
public IActionResult GetStudents(string orderBy) { //return Ok(_dbService.GetStudents()); return(Ok(_dbService.GetStudents())); }