ISEbd-22_Rozhkov.I.E._Simple/GasStation/Entities/ProductSelling.cs

21 lines
430 B
C#
Raw Normal View History

2024-12-02 14:38:24 +04:00
namespace GasStation.Entities;
public class ProductSelling
{
public int Id { get; private set; }
public int ProductID { get; private set; }
public int Count { get; private set; }
public static ProductSelling CreateSelling(int id, int productID, int count)
{
return new ProductSelling
{
Id = id,
ProductID = productID,
Count = count
};
}
}