Example #1
0
 public static String GetUserWishList(int index)
 {
     DataTable dt = new DataTable();
     ProductDAL dal = new ProductDAL();
     dt = dal.GetUserWishList(index, AppConstants.PRODUCT_PAGE_SIZE, HttpContext.Current.Session[AppConstants.SESSION_USER_ID].ToString());
     return getProductJsonIncludePage(dt, index);
 }