Ejemplo n.º 1
0
        //Kullanıcı ilk kayıt olduğunda cart item oluşturmak için.
        public void InitializeCart(string userId)
        {
            if (string.IsNullOrEmpty(userId))
            {
                throw new ArgumentNullException(nameof(userId));
            }

            _cartDal.Insert(new Cart()
            {
                UserId = userId
            });
        }
Ejemplo n.º 2
0
 public void AddToCart(Cart cart)
 {
     _cartDal.Insert(cart);
 }