Example #1
0
 public IActionResult GetStudent()
 {
     return(Ok(_dbService.GetStudents()));
 }
Example #2
0
 public IActionResult GetStudents(string orderBy)
 {
     return(Ok(idbService.GetStudents()));
 }
Example #3
0
 public IActionResult GetStudents(string orderBy)
 {
     return Ok(_dbService.GetStudents(orderBy));
 }