using System; using System.Collections.Generic; namespace OOO_WriteAndClear.DBModels; public partial class Supplier { public int SuppliarId { get; set; } public string SuppliarName { get; set; } = null!; public virtual ICollection Products { get; set; } = new List(); }