Example #1
0
 public static String SearchProductByPagination(int index, String value)
 {
     DataTable dt = new DataTable();
     ProductDAL dal = new ProductDAL();
     dt = dal.SearchProductByPagination(index, AppConstants.PRODUCT_PAGE_SIZE, value);
     return getProductJsonIncludePage(dt, index);
 }