PIbd-21 Valiulov I.A. LabWork01 #2

Open
Ilyas wants to merge 3 commits from LabWork01 into main
2 changed files with 3 additions and 3 deletions
Showing only changes of commit b2b3f9739a - Show all commits

View File

@ -7,7 +7,7 @@ public class Product
public int Id { get; private set; }
public string Name { get; private set; } = string.Empty;
public ProductType Type { get; private set; }
public int CountInWarehouse { get; private set; }
public int CountInWarehouse { get; set; }
public IEnumerable<ProductMaterial> ProductMaterial { get; private set; } = [];
public static Product CreateEntity(int id, string name, ProductType type, int countInWarehouse, IEnumerable<ProductMaterial> productMaterial)
{

View File

@ -3,8 +3,8 @@
public class ProductMaterial
{
public int Id { get; private set; }
public int MaterialId { get; private set; }
public int Count { get; private set; }
public int MaterialId { get; set; }
public int Count { get; set; }
public static ProductMaterial CreateOperation(int id, int materialId, int count)
{
return new ProductMaterial