PIbd-21 Valiulov I.A. LabWork01 #2
@ -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)
|
||||
{
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user