Esempio n. 1
0
 public bool AddToBasket(OrderProduct orderProduct)
 {
     DAL.Entity.OrderProduct ord = new DAL.Entity.OrderProduct
     {
         Id        = orderProduct.Id,
         OrderId   = orderProduct.OrderId,
         ProductId = orderProduct.ProductId
     };
     if (ord != null)
     {
         _dal.AddToBasket(ord);
         return(true);
     }
     else
     {
         return(false);
     }
 }