44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
|
||
namespace WinFormsApp6.Models;
|
||
|
||
public partial class Pacient
|
||
{
|
||
public int IdPacient { get; set; }
|
||
|
||
public string Фио { get; set; } = null!;
|
||
|
||
public DateOnly ДатаРождения { get; set; }
|
||
|
||
public string Пол { get; set; } = null!;
|
||
|
||
public string Адрес { get; set; } = null!;
|
||
|
||
public string Телефон { get; set; } = null!;
|
||
|
||
public int? Iddoctors { get; set; }
|
||
|
||
public int? Iddiagnoses { get; set; }
|
||
|
||
public int? Idmedicine { get; set; }
|
||
|
||
public int? Idchambers { get; set; }
|
||
|
||
public int? Idprocedures { get; set; }
|
||
|
||
public int? Idnurses { get; set; }
|
||
|
||
public virtual Chamber? IdchambersNavigation { get; set; }
|
||
|
||
public virtual Diagnosis? IddiagnosesNavigation { get; set; }
|
||
|
||
public virtual Doctor? IddoctorsNavigation { get; set; }
|
||
|
||
public virtual Medicine? IdmedicineNavigation { get; set; }
|
||
|
||
public virtual Nurse? IdnursesNavigation { get; set; }
|
||
|
||
public virtual Procedure? IdproceduresNavigation { get; set; }
|
||
}
|