using System; using System.Collections.Generic; namespace WinFormsApp6.Models; public partial class Client { public int IdClients { get; set; } public string NameClients { get; set; } = null!; public string SurnameClients { get; set; } = null!; public string? PatronymicClients { get; set; } public string Telefon { get; set; } = null!; public string Mail { get; set; } = null!; public virtual ICollection Orders { get; set; } = new List(); }