コード例 #1
0
        public string DeleteWishlist(string Id)
        {
            U_USR_WListDAL oeventDAL = new U_USR_WListDAL();
            var            status    = oeventDAL.Delete_Wishlist(Id);

            if (status == true)
            {
                return("1");
            }
            else
            {
                return("0");
            }
        }