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 }; } }