Example #1
0
 public async Task <ActionResult <PagedResult <ClassroomViewModel> > > PagingCourse(string keyword = "", int pageSize = 10, int pageIndex = 0)
 {
     try
     {
         return(await Task.FromResult(_classroomService.GetAllPaging(keyword, pageSize, pageIndex)));
     }
     catch
     {
         throw new Exception(string.Format("Lỗi xảy ra ở phân trang!"));
     }
 }