ISEbd-22_Rozhkov.I.E._Simple/GasStation/Entities/Product.cs
2024-12-02 14:38:24 +04:00

23 lines
465 B
C#

using GasStation.Entities.Enums;
namespace GasStation.Entities;
public class Product
{
public int Id { get; private set; }
public int Cost { get; private set; }
public ProductType ProductType { get; private set; }
public static Product CreateProduct(int id, int cost, ProductType productType)
{
return new Product
{
Id = id,
Cost = cost,
ProductType = productType
};
}
}