public IEnumerable <Object> GetActivePaging(int pageIndex, int pageSize) { try { return(_studentDAL.GetActivePaging(pageIndex, pageSize)); } catch (Exception ex) { throw new Exception("Error from StudentBLL: " + ex.Message.ToString()); } }