Suteki.Shop.Product.AddCategory C# (CSharp) Method

AddCategory() public method

public AddCategory ( Category category, int position ) : void
category Category
position int
return void
        public virtual void AddCategory(Category category, int position)
        {
            var productCategory = new ProductCategory
            {
                Category = category, 
                Product = this,
                Position = position
            };
            ProductCategories.Add(productCategory);
            category.ProductCategories.Add(productCategory);
        }