示例#1
0
        public IActionResult GetStudents()
        {
            var students = _dbService.GetAllStudents();

            return(Ok(students));
        }
示例#2
0
 public IActionResult GetAllStudents()
 {
     return(Ok(_studentsDbService.GetAllStudents()));
 }
示例#3
0
 public IActionResult GetAllStudents(string studentIndex)
 {
     return(Ok(_studentsDbService.GetAllStudents()));
 }