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