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

44 lines
1.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}