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

18 lines
361 B
C#
Raw Normal View History

2024-11-13 23:20:06 +04:00
namespace GasStation.Entities;
public class Supplier
{
public int Id { get; private set; }
public string ProductName { get; private set; } = string.Empty;
public static Supplier CreateSupplier(int id, string productName)
{
return new Supplier
{
Id = id,
ProductName = productName
};
}
}