示例#1
0
        bool IService1.AddToBasket(string orderId, string productId)
        {
            BLL.Models.OrderProduct orderProduct = new BLL.Models.OrderProduct
            {
                OrderId   = Int32.Parse(orderId),
                ProductId = Int32.Parse(productId)
            };

            return(_bll.AddToBasket(orderProduct));
        }