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

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