Exemple #1
0
        public ActionResult GetStudentList(StudentSearchInput input)
        {
            var list = _studentAppService.GetAllStudent(input);

            return(Content(list.ToJson()));
        }