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

18 lines
365 B
C#

namespace GasStation.Entities;
public class Supplier
{
public int Id { get; private set; }
public string SupplierName { get; private set; } = string.Empty;
public static Supplier CreateSupplier(int id, string supplierName)
{
return new Supplier
{
Id = id,
SupplierName = supplierName
};
}
}