18 lines
361 B
C#
18 lines
361 B
C#
|
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
|
|||
|
};
|
|||
|
}
|
|||
|
}
|