22 lines
496 B
C#
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>();
|
|
}
|