Example #1
0
 public static String AddToWishList(String prdid)
 {
     WishList wl = new WishList();
     ProductDAL dal = new ProductDAL();
     int i = dal.InsertWishList(prdid, HttpContext.Current.Session[AppConstants.SESSION_USER_ID].ToString());
     return "";
 }