using System; using System.Collections.Generic; namespace samusev_42; public partial class Supplier { public int IdSupplier { get; set; } public string SupplierName { get; set; } = null!; public virtual ICollection Products { get; set; } = new List(); }