From cb288c201d1de28f7328c62f3422ad28cfdc84bf Mon Sep 17 00:00:00 2001 From: Glliza Date: Mon, 23 Dec 2024 12:00:43 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BE=D0=B0=D0=BE=D1=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ShoeStore/Entities/Product.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ShoeStore/Entities/Product.cs b/ShoeStore/Entities/Product.cs index 4dee192..1b58e8a 100644 --- a/ShoeStore/Entities/Product.cs +++ b/ShoeStore/Entities/Product.cs @@ -14,11 +14,6 @@ public class Product public string NameOfShoes { get; private set; } public ManufacturingCompany ManufacturingCompany { get; private set; } public int Price { get; private set; } - public IEnumerable Sales - { - get; - private set; - } = []; public static Product CreateEntity(int id, string nameOfShoes, ManufacturingCompany manufacturingCompany, int price) { return new Product