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