{
using System;
using System.Collections.Generic;
public partial class treatment
{
public int id_chelovek { get; set; }
public Nullable<System.DateTime> date_of_appeal { get; set; }
public string cause_of_appeal { get; set; }
public string otmetka_o_vipolnenii { get; set; }
public virtual person person { get; set; }
}
}
namespace tson10.Models
{
using System;
using System.Collections.Generic;
public partial class person
{
public int id { get; set; }
public string family { get; set; }
public string name { get; set; }
public string patronymic { get; set; }
public Nullable<System.DateTime> date_of_birth { get; set; }
public string telephone { get; set; }
public Nullable<int> id_category { get; set; }
public Nullable<int> id_disability { get; set; }
public Nullable<int> id_city { get; set; }
public Nullable<int> id_street { get; set; }
public string dom { get; set; }
public string kvartira { get; set; }
public Nullable<int> id_firing { get; set; }
public Nullable<int> id_status { get; set; }
public virtual category category { get; set; }
public virtual child child { get; set; }
public virtual city city { get; set; }
public virtual disability disability { get; set; }
public virtual firing firing { get; set; }
public virtual status status { get; set; }
public virtual street street { get; set; }
public virtual treatment treatment { get; set; }
}
}