using System; using System.Collections.Generic; namespace WinFormsApp3.Models; public partial class Supplier { public int IdPostav { get; set; } public string Name { get; set; } = null!; public string Type { get; set; } = null!; public int Inn { get; set; } public int Rate { get; set; } public DateOnly DateStart { get; set; } public virtual ICollection MaterialSuppliers { get; set; } = new List(); }