コード例 #1
0
 public IActionResult GetStudent()
 {
     return(Ok(_dbService.GetStudents()));
 }
コード例 #2
0
ファイル: StudentsController.cs プロジェクト: s16534/cw3
 public IActionResult GetStudents(string orderBy)
 {
     return(Ok(idbService.GetStudents()));
 }
コード例 #3
0
 public IActionResult GetStudents(string orderBy)
 {
     return Ok(_dbService.GetStudents(orderBy));
 }