示例#1
0
        public dynamic DeleteCustomerProducts()
        {
            int        productId  = Fun.Form("productId", 0);
            int        customerId = Fun.Form("customerId", 0);
            int        type       = Fun.Form("type", -1);
            ProductBLL bll        = new ProductBLL();

            if (!bll.DeleteCustomerProducts(productId, customerId, type))
            {
                return("失败");
            }
            else
            {
                return("成功");
            }
        }