예제 #1
0
        public void InitData()
        {
            var product1 = new Product {Name = "Chomik"};
            session.Store(product1);

            session.SaveChanges();
        }
예제 #2
0
파일: Cart.cs 프로젝트: soaexample/soastore
        public void AddToCart(Product p, int count)
        {
            var entry = this.Products.SingleOrDefault(x => x.Product.Id == p.Id);

            if (entry != null)
            {
                entry.Count += count;
            }
            else
            {
                Products.Add(new CartEntry(p, count));
            }
        }
예제 #3
0
파일: Cart.cs 프로젝트: soaexample/soastore
 public CartEntry(Product product, int count)
 {
     this.product = product;
     this.Count = count;
 }