From 9c4297756c17a7d5ffddadce876ddbbfab5fb682 Mon Sep 17 00:00:00 2001 From: Glliza Date: Mon, 23 Dec 2024 11:59:46 +0400 Subject: [PATCH] =?UTF-8?q?=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ShoeStore/Entities/Product.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ShoeStore/Entities/Product.cs b/ShoeStore/Entities/Product.cs index 68bccd9..cb00bbc 100644 --- a/ShoeStore/Entities/Product.cs +++ b/ShoeStore/Entities/Product.cs @@ -11,24 +11,18 @@ namespace ShoeStore.Entities; public class Product { public int Id { get; private set; } - //public int StorageProductId { get; private set; } public string NameOfShoes { get; private set; } public ManufacturingCompany ManufacturingCompany { get; private set; } public int Price { get; private set; } - //public ProductType ProductType { get; private set; } - //public int StorageSize { get; private set; } public static Product CreateEntity(int id, string nameOfShoes, ManufacturingCompany manufacturingCompany, int price) { return new Product { Id = id, - //StorageProductId = storageProductId, NameOfShoes = nameOfShoes, ManufacturingCompany = manufacturingCompany, Price = price, - //ProductType = productType, - //StorageSize = storageSize }; } }