21 lines
444 B
C#
21 lines
444 B
C#
using System.ComponentModel;
|
|
|
|
namespace GasStation.Entities;
|
|
|
|
public class Supplier
|
|
{
|
|
public int Id { get; private set; }
|
|
|
|
[DisplayName("Имя поставщика")]
|
|
public string SupplierName { get; private set; } = string.Empty;
|
|
|
|
public static Supplier CreateSupplier(int id, string supplierName)
|
|
{
|
|
return new Supplier
|
|
{
|
|
Id = id,
|
|
SupplierName = supplierName
|
|
};
|
|
}
|
|
}
|