KalkulatorISP-31rrrrr/source/repos/WinFormsApp6/Models/Client.cs
2025-11-11 14:18:33 +04:00

22 lines
496 B
C#

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<Order> Orders { get; set; } = new List<Order>();
}