示例#1
0
        private void init(int productId, System.Collections.Generic.IList <P2GenNHibernate.EN.Default_.OrderLineEN> orderline, string name, string descripcion, string photoURL, float price, int stock, P2GenNHibernate.EN.Default_.CategoryEN category)
        {
            this.ProductId = productId;


            this.Orderline = orderline;

            this.Name = name;

            this.Descripcion = descripcion;

            this.PhotoURL = photoURL;

            this.Price = price;

            this.Stock = stock;

            this.Category = category;
        }
示例#2
0
 public CategoryEN(int categoryId, System.Collections.Generic.IList <P2GenNHibernate.EN.Default_.ProductEN> product, string name, string descripcion, P2GenNHibernate.EN.Default_.CategoryEN parentCategory, System.Collections.Generic.IList <P2GenNHibernate.EN.Default_.CategoryEN> subCategory
                   )
 {
     this.init(CategoryId, product, name, descripcion, parentCategory, subCategory);
 }
示例#3
0
        private void init(int categoryId, System.Collections.Generic.IList <P2GenNHibernate.EN.Default_.ProductEN> product, string name, string descripcion, P2GenNHibernate.EN.Default_.CategoryEN parentCategory, System.Collections.Generic.IList <P2GenNHibernate.EN.Default_.CategoryEN> subCategory)
        {
            this.CategoryId = categoryId;


            this.Product = product;

            this.Name = name;

            this.Descripcion = descripcion;

            this.ParentCategory = parentCategory;

            this.SubCategory = subCategory;
        }
示例#4
0
 public ProductEN(int productId, System.Collections.Generic.IList <P2GenNHibernate.EN.Default_.OrderLineEN> orderline, string name, string descripcion, string photoURL, float price, int stock, P2GenNHibernate.EN.Default_.CategoryEN category
                  )
 {
     this.init(ProductId, orderline, name, descripcion, photoURL, price, stock, category);
 }