Ejemplo n.º 1
0
        public Product(int categoryId, string name, string description, string imageUrl, Price price)
        {
            price.ValidateNotNullParameter("price");

            this.CategoryId = categoryId;
            this.Name = name;
            this.Description = description;
            this.ImageUrl = imageUrl;
            this.ExactPrice = price.ExactPrice;
            this.FromPrice = price.FromPrice;
            this.ToPrice = price.ToPrice;
        }