Commit 736dbbcb by AlexNasyr

MinistryOfSocialProtection project added

parent fe891906
Showing with 3555 additions and 0 deletions
...@@ -5,6 +5,8 @@ VisualStudioVersion = 17.0.31903.59 ...@@ -5,6 +5,8 @@ VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DDO_Application", "DDO_Application\DDO_Application.csproj", "{D568A3F5-FA39-4244-8CD8-0B179626F4F8}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DDO_Application", "DDO_Application\DDO_Application.csproj", "{D568A3F5-FA39-4244-8CD8-0B179626F4F8}"
EndProject EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SocialMinistryDataExchange", "SocialMinistryDataExchange\SocialMinistryDataExchange.csproj", "{4FEEE366-B12B-4582-8C81-DDFE7AC5299B}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU Debug|Any CPU = Debug|Any CPU
...@@ -15,6 +17,10 @@ Global ...@@ -15,6 +17,10 @@ Global
{D568A3F5-FA39-4244-8CD8-0B179626F4F8}.Debug|Any CPU.Build.0 = Debug|Any CPU {D568A3F5-FA39-4244-8CD8-0B179626F4F8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D568A3F5-FA39-4244-8CD8-0B179626F4F8}.Release|Any CPU.ActiveCfg = Release|Any CPU {D568A3F5-FA39-4244-8CD8-0B179626F4F8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D568A3F5-FA39-4244-8CD8-0B179626F4F8}.Release|Any CPU.Build.0 = Release|Any CPU {D568A3F5-FA39-4244-8CD8-0B179626F4F8}.Release|Any CPU.Build.0 = Release|Any CPU
{4FEEE366-B12B-4582-8C81-DDFE7AC5299B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4FEEE366-B12B-4582-8C81-DDFE7AC5299B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4FEEE366-B12B-4582-8C81-DDFE7AC5299B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4FEEE366-B12B-4582-8C81-DDFE7AC5299B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
......
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SocialMinistryDataExchange.Controllers {
[ApiController]
[Route("[controller]")]
public class WeatherForecastController : ControllerBase {
private static readonly string[] Summaries = new[]
{
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching"
};
private readonly ILogger<WeatherForecastController> _logger;
public WeatherForecastController(ILogger<WeatherForecastController> logger) {
_logger = logger;
}
[HttpGet]
public IEnumerable<WeatherForecast> Get() {
var rng = new Random();
return Enumerable.Range(1, 5).Select(index => new WeatherForecast {
Date = DateTime.Now.AddDays(index),
TemperatureC = rng.Next(-20, 55),
Summary = Summaries[rng.Next(Summaries.Length)]
})
.ToArray();
}
}
}
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection;
using SocialMinistryDataExchange.Model;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace SocialMinistryDataExchange.Controllers {
[ApiController]
public class apiController : ControllerBase {
private readonly ISMContext _context;
public apiController(ISMContext context) {
_context = context;
}
[HttpGet]
[Route("[controller]/gettestperson")]
public async Task<List<Личность>> GetTestPerson() {
var result = await _context.GetPerson("27373577-4234-43B2-A969-8D95B9384171");
return result;
}
[HttpPost]
[Route("[controller]/getpersonbyid/{PersonID}")]
public async Task<List<Личность>> GetPersonByID(string PersonID) {
var result = await _context.GetPerson(PersonID);
return result;
}
}
}
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Addrobg59new
{
public Guid Aoguid { get; set; }
public int? Aolevel { get; set; }
public string Formalname { get; set; }
public string Regioncode { get; set; }
public string Postalcode { get; set; }
public DateTime? Updatedate { get; set; }
public string Okato { get; set; }
public string Oktmo { get; set; }
public string Shortname { get; set; }
public int? Livestatus { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
public Guid? ParentGuid { get; set; }
public Guid? Поселение { get; set; }
public Guid? Территория { get; set; }
public int FiasVersionId { get; set; }
}
}
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ApplicationLog
{
public Guid PrimaryKey { get; set; }
public string Category { get; set; }
public int? EventId { get; set; }
public int? Priority { get; set; }
public string Severity { get; set; }
public string Title { get; set; }
public DateTime? Timestamp { get; set; }
public string MachineName { get; set; }
public string AppDomainName { get; set; }
public string ProcessId { get; set; }
public string ProcessName { get; set; }
public string ThreadName { get; set; }
public string Win32ThreadId { get; set; }
public string Message { get; set; }
public string FormattedMessage { get; set; }
}
}
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class House59
{
public Guid HouseGuid { get; set; }
public string HouseNum { get; set; }
public string BuildNum { get; set; }
public string StrucNum { get; set; }
public DateTime? UpdateDate { get; set; }
public string Okato { get; set; }
public string Oktmo { get; set; }
public string PostalCode { get; set; }
public DateTime? EndDate { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
public Guid Aoguid { get; set; }
public Guid? Стн { get; set; }
}
}
using Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace SocialMinistryDataExchange.Model {
public interface ISMContext {
DbSet<Личность> Persons { get; set; }
DbSet<ЛичностьПодразделения> PersonsDepartment { get; set; }
Task<List<Личность>> GetPerson(string ID);
}
}
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SocialMinistryDataExchange.Model {
public class SMContext : DbContext, ISMContext {
public DbSet<Личность> Persons { get; set; }
public DbSet<ЛичностьПодразделения> PersonsDepartment { get; set; }
public SMContext(DbContextOptions<SMContext> options) : base(options) {
}
protected override void OnModelCreating(ModelBuilder modelBuilder) {
modelBuilder.Entity<Личность>(entity => {
entity.HasKey(e => e.PrimaryKey)
.HasName("PK__Личность__E05C3ED324E777C3");
entity.ToTable("Личность");
entity.Property(e => e.PrimaryKey)
.ValueGeneratedNever()
.HasColumnName("primaryKey");
entity.Property(e => e.CreateTime).HasColumnType("datetime");
entity.Property(e => e.EditTime).HasColumnType("datetime");
entity.Property(e => e.ВидЛьготникаДоу)
.HasMaxLength(4)
.IsUnicode(false)
.HasColumnName("ВидЛьготникаДОУ");
entity.Property(e => e.ДатаИвремяАктуальностиДанных)
.HasColumnType("datetime")
.HasColumnName("ДатаИВремяАктуальностиДанных");
entity.Property(e => e.ДатаИвремяВыгрузкиДанных)
.HasColumnType("datetime")
.HasColumnName("ДатаИВремяВыгрузкиДанных");
entity.Property(e => e.ДатаОтправкиВфри)
.HasColumnType("datetime")
.HasColumnName("ДатаОтправкиВФРИ");
entity.Property(e => e.ДатаПодтверждения).HasColumnType("datetime");
entity.Property(e => e.ДатаПроверки).HasColumnType("datetime");
entity.Property(e => e.ДатаРождения).HasColumnType("datetime");
entity.Property(e => e.ДомРегПоМестуЖительства)
.HasMaxLength(20)
.IsUnicode(false);
entity.Property(e => e.ДомРегПоМестуЖительстваФиас).HasColumnName("ДомРегПоМестуЖительстваФИАС");
entity.Property(e => e.ДомРегПоМестуПребывания)
.HasMaxLength(20)
.IsUnicode(false);
entity.Property(e => e.ДомРегПоМестуПребыванияФиас).HasColumnName("ДомРегПоМестуПребыванияФИАС");
entity.Property(e => e.ДомФактМестаЖительства)
.HasMaxLength(20)
.IsUnicode(false);
entity.Property(e => e.ДомФактМестаЖительстваФиас).HasColumnName("ДомФактМестаЖительстваФИАС");
entity.Property(e => e.ИндексРегПоМестуЖительства)
.HasMaxLength(6)
.IsUnicode(false);
entity.Property(e => e.ИндексРегПоМестуПребывания)
.HasMaxLength(6)
.IsUnicode(false);
entity.Property(e => e.ИндексФактМестаЖительства)
.HasMaxLength(6)
.IsUnicode(false);
entity.Property(e => e.ИнойСубъектРфрегПоМестуЖительства).HasColumnName("ИнойСубъектРФРегПоМестуЖительства");
entity.Property(e => e.ИнойСубъектРфрегПоМестуПребывания).HasColumnName("ИнойСубъектРФРегПоМестуПребывания");
entity.Property(e => e.ИнойСубъектРффактМестаЖительства).HasColumnName("ИнойСубъектРФФактМестаЖительства");
entity.Property(e => e.КатегорияЛичности)
.HasMaxLength(9)
.IsUnicode(false);
entity.Property(e => e.КодПроверки)
.HasMaxLength(10)
.IsUnicode(false);
entity.Property(e => e.МестоРождения)
.HasMaxLength(255)
.IsUnicode(false);
entity.Property(e => e.Овз).HasColumnName("ОВЗ");
entity.Property(e => e.ОтправленНаСверкуФри).HasColumnName("ОтправленНаСверкуФРИ");
entity.Property(e => e.ОтчетОрезультатахПроверки)
.HasMaxLength(800)
.IsUnicode(false)
.HasColumnName("ОтчетОРезультатахПроверки");
entity.Property(e => e.ОшибкиВдокументах).HasColumnName("ОшибкиВДокументах");
entity.Property(e => e.ОшибкиВфио).HasColumnName("ОшибкиВФИО");
entity.Property(e => e.Подтвердил)
.HasMaxLength(255)
.IsUnicode(false);
entity.Property(e => e.Пол)
.HasMaxLength(7)
.IsUnicode(false);
entity.Property(e => e.ПотребностьВадаптированнойПрограмме).HasColumnName("ПотребностьВАдаптированнойПрограмме");
entity.Property(e => e.ПотребностьВдлительномЛечении).HasColumnName("ПотребностьВДлительномЛечении");
entity.Property(e => e.Примечание)
.HasMaxLength(800)
.IsUnicode(false);
entity.Property(e => e.ПроживаетВобщежитии).HasColumnName("ПроживаетВОбщежитии");
entity.Property(e => e.РезультатСверкиФри)
.HasMaxLength(255)
.IsUnicode(false)
.HasColumnName("РезультатСверкиФРИ");
entity.Property(e => e.СверенСфри).HasColumnName("СверенСФРИ");
entity.Property(e => e.СнтпоМестуЖительства).HasColumnName("СНТПоМестуЖительства");
entity.Property(e => e.СнтпоМестуПребывания).HasColumnName("СНТПоМестуПребывания");
entity.Property(e => e.СнтфактМестаЖительства).HasColumnName("СНТФактМестаЖительства");
entity.Property(e => e.СрокДействияГруппыИнвалидности).HasColumnType("datetime");
entity.Property(e => e.Телефон).HasMaxLength(100);
entity.Property(e => e.ФедеральныйGuid)
.HasMaxLength(100)
.IsUnicode(false)
.HasColumnName("ФедеральныйGUID");
entity.Property(e => e.ХэшФиоиДр)
.IsUnicode(false)
.HasColumnName("ХэшФИОиДР");
});
modelBuilder.Entity<ЛичностьПодразделения>(entity => {
entity.HasKey(e => e.PrimaryKey)
.HasName("PK__Личность__E05C3ED33C1FE2D6");
entity.ToTable("ЛичностьПодразделения");
entity.Property(e => e.PrimaryKey)
.ValueGeneratedNever()
.HasColumnName("primaryKey");
entity.Property(e => e.CreateTime).HasColumnType("datetime");
entity.Property(e => e.EditTime).HasColumnType("datetime");
entity.Property(e => e.ВидПодразделения)
.HasMaxLength(6)
.IsUnicode(false);
entity.Property(e => e.КонечнаяДата).HasColumnType("datetime");
entity.Property(e => e.НаименованиеОрганизации)
.HasMaxLength(255)
.IsUnicode(false);
entity.Property(e => e.НаименованиеПодразделения)
.HasMaxLength(255)
.IsUnicode(false);
entity.Property(e => e.НачальнаяДата).HasColumnType("datetime");
entity.Property(e => e.ПланируемаяДатаВыходаИзОтпуска).HasColumnType("datetime");
entity.Property(e => e.ПланируетУйтиВпервыйКласс).HasColumnName("ПланируетУйтиВПервыйКласс");
entity.Property(e => e.Примечание)
.HasMaxLength(800)
.IsUnicode(false);
entity.Property(e => e.ФедеральныйGuid)
.HasMaxLength(100)
.IsUnicode(false)
.HasColumnName("ФедеральныйGUID");
});
}
public Task<List<Личность>> GetPerson(string ID) {
var persons = Persons.Where(p => p.PrimaryKey == new Guid(ID));
return Task.FromResult(persons.ToList());
}
}
}
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Socrbase
{
public Guid PrimaryKey { get; set; }
public string Scname { get; set; }
public string Socrname { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
public string Scname2 { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class АдаптированностьОп
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Аооп
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid Организация { get; set; }
public Guid Личность { get; set; }
public Guid ТипАооп { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class АрхивОрганизации
{
public Guid PrimaryKey { get; set; }
public string Номер { get; set; }
public string Имя { get; set; }
public string КраткоеНаименование { get; set; }
public string ПолноеНаименование { get; set; }
public string НаименованиеДляСписков { get; set; }
public string ТипОргСтруктуры { get; set; }
public string КоличествоСмен { get; set; }
public string Инн { get; set; }
public string Кпп { get; set; }
public string Огрн { get; set; }
public string ГражданствоИп { get; set; }
public string ЮридическийАдресИндекс { get; set; }
public string ЮридическийАдресДом { get; set; }
public string ЮридическийАдресПрописью { get; set; }
public string КодФиасюридический { get; set; }
public string ФизическийАдресИндекс { get; set; }
public string ФизическийАдресДом { get; set; }
public string ФизическийАдресПрописью { get; set; }
public string КодФиасфизический { get; set; }
public string Телефон { get; set; }
public string Факс { get; set; }
public string Email { get; set; }
public string АдресWebСайта { get; set; }
public string Фиоруководителя { get; set; }
public int? ПредельнаяНаполняемость { get; set; }
public string ИсточникДанных { get; set; }
public string ИсточникДанных2 { get; set; }
public DateTime? ДатаИвремяВыгрузкиДанных { get; set; }
public DateTime? ДатаИвремяАктуальностиДанных { get; set; }
public string ТипОрганизации { get; set; }
public string Окфс { get; set; }
public string Окопф { get; set; }
public string Окогу { get; set; }
public string Оквэд { get; set; }
public string СтатусОрганизации { get; set; }
public string ВидУчредителя { get; set; }
public string Специальность { get; set; }
public string Иерархия { get; set; }
public string Лицензия { get; set; }
public string Аккредитация { get; set; }
public string ТерриторияЮридическогоАдреса { get; set; }
public string УлицаЮридическогоАдреса { get; set; }
public string ТерриторияФизическогоАдреса { get; set; }
public string УлицаФизическогоАдреса { get; set; }
public string Район { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid Организация { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class АссоциацияТерриторий
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Ведомство
{
public Guid PrimaryKey { get; set; }
public string ПолноеНаименование { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВедомствоЭпос
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string ПолноеНаименование { get; set; }
public string КраткоеНаименование { get; set; }
public string КодЭпос { get; set; }
public string КодЭб { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидДокументаЗаявления
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public string ТипЛичности { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидДокументаОбОбразовании
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидЗаключения
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидЗаявления
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public DateTime? НачалоПриема { get; set; }
public DateTime? ОкончаниеПриема { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидМедицинскогоДокумента
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидОбразовательнойУслуги
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидОбученияБольныхДетей
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидОбученияОграниченноЗдоровых
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидПоказателяУслуги
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидПомощиЗамещающегоМеханизма
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string ВидПомощи { get; set; }
public bool? Актуально { get; set; }
public Guid ЗамещающийМеханизм { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидПриказа
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
public Guid? ТипОрганизации { get; set; }
public string Группа { get; set; }
public string ТематикаПриказа { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидСистемыОценивания
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string Наименование { get; set; }
public int? Код { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидСмены
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидСостоянияЗаявления
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public string ШаблонСообщения { get; set; }
public Guid ВидЗаявления { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидУдостоверяющегоДокумента
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидУслуги
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid ТипУслуги { get; set; }
public string КраткоеНаименование { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидУчебногоПериода
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string Наименование { get; set; }
public int? Код { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВидУчредителя
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ВозрастнаяКатегория
{
public Guid PrimaryKey { get; set; }
public decimal? ВозрастС { get; set; }
public decimal? ВозрастПо { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public int? Код { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Вэдорганизации
{
public Guid PrimaryKey { get; set; }
public Guid Оквэд { get; set; }
public Guid Организация { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string ФедеральныйGuid { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ГруппаЗдоровья
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string ПолноеНаименование { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ДостижениеУчащегося
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public DateTime? Дата { get; set; }
public string Результат { get; set; }
public string ПрисвоенныйРазряд { get; set; }
public string ИсточникДанных { get; set; }
public string ФедеральныйGuid { get; set; }
public bool? Актуально { get; set; }
public Guid ТипМероприятия { get; set; }
public Guid ЛичностьПодразделения { get; set; }
public Guid УровеньМероприятия { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ЖурналУчетаПосещенийЗамещающихМеханизмов
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public DateTime? ДатаПосещения { get; set; }
public string ВидОбращения { get; set; }
public string ТипОбращения { get; set; }
public bool? РебенокСовз { get; set; }
public string Примечание { get; set; }
public bool? Актуально { get; set; }
public Guid ЗаконныйПредставитель { get; set; }
public Guid Ребенок { get; set; }
public Guid ВидПомощи { get; set; }
public bool? РебенокВсоп { get; set; }
public bool? РебенокИнвалид { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ЗаконныйПредставительЛичности
{
public Guid PrimaryKey { get; set; }
public DateTime? ДатаУстановленияСвязи { get; set; }
public Guid ТипЗаконногоПредставителя { get; set; }
public Guid ЗаконныйПредставитель { get; set; }
public Guid Ребенок { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string ДокументУдостоверяющийПоложение { get; set; }
public string ФедеральныйGuid { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ЗамещающийМеханизмОрганизации
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public DateTime? НачальнаяДата { get; set; }
public DateTime? КонечнаяДата { get; set; }
public string Форма { get; set; }
public int? КоличествоШтатныхСотрудников { get; set; }
public int? КоличествоВнештатныхСотрудников { get; set; }
public bool? Актуально { get; set; }
public Guid Организация { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Заявление
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Номер { get; set; }
public string НомерГу { get; set; }
public string ЗаявительПол { get; set; }
public DateTime? РебенокДатаРождения { get; set; }
public string РебенокПол { get; set; }
public int? КлассЗачисления { get; set; }
public DateTime? ДатаПодачи { get; set; }
public DateTime? ДатаИспПлан { get; set; }
public DateTime? ДатаИспФакт { get; set; }
public string Примечание { get; set; }
public DateTime? ДатаУдостоверения { get; set; }
public bool? Актуально { get; set; }
public Guid ТипЗаконногоПредставителя { get; set; }
public Guid? РебенокВидДокумента { get; set; }
public Guid СпособПодачи { get; set; }
public Guid? ЗаявительВидДокумента { get; set; }
public Guid ВидЗаявления { get; set; }
public Guid Организация { get; set; }
public Guid? Приказ { get; set; }
public Guid? РебенокЛичность { get; set; }
public Guid? ЗаявительЛичность { get; set; }
public string РебенокМестоРождения { get; set; }
public DateTime? ДатаЗапросаОригиналов { get; set; }
public bool? ЛьготнаяКатегория { get; set; }
public string КодОтветственнойОрганизации { get; set; }
public string НаименованиеОтветственнойОрганизации { get; set; }
public string РебенокДом { get; set; }
public Guid? РебенокНасПункт { get; set; }
public Guid? РебенокУлица { get; set; }
public bool? СохраненоСошибками { get; set; }
public DateTime? СрокУдостоверения { get; set; }
public string НомерЗаключения { get; set; }
public DateTime? ДатаЗаключения { get; set; }
public string РебенокТипАдреса { get; set; }
public Guid? ТипЛьготнойКатегории { get; set; }
public Guid? БратСестраЛичность { get; set; }
public string БратСестраРезультатПоиска { get; set; }
public string РеквизитыРазрешенияНаЗачисление { get; set; }
public bool? ЗаявлениеПоЗакреплению { get; set; }
public DateTime? ДатаОтчисления { get; set; }
public string РебенокХэшФиоиДр { get; set; }
public string ИзучаемыйИностранныйЯзык { get; set; }
public bool? ЕстьДостижения { get; set; }
public bool? НетИсходнойОрганизации { get; set; }
public string ИсходнаяОрганизацияСтрокой { get; set; }
public bool? ПередатьЛичноеДело { get; set; }
public Guid? Профиль { get; set; }
public Guid? ИсходнаяОрганизация { get; set; }
public string РебенокРезультатПоиска { get; set; }
public string РеквизитыМедицинскогоЗаключения { get; set; }
public string ДокументОбОбрОрганизация { get; set; }
public string ДокументОбОбрНомер { get; set; }
public DateTime? ДокументОбОбрДатаВыдачи { get; set; }
public Guid? ПриказЗачисленияВкласс { get; set; }
public DateTime? ДатаПодтвержденияЗаявления { get; set; }
public DateTime? ДатаПрохожденияИспытаний { get; set; }
public Guid? РебенокДомФиас { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ЗаявлениеНаДоу
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
public DateTime? ДатаПодачиЗаявления { get; set; }
public int? НомерЗаявления { get; set; }
public DateTime? ЗатребованоС { get; set; }
public string НомерВконцентраторе { get; set; }
public string НомерРпгу { get; set; }
public DateTime? ДатаНаправленияВдоу { get; set; }
public bool? ЛьготаПодтверждена { get; set; }
public string ПодтверждающиеЛьготуДокументы { get; set; }
public bool? ПредлагатьГкп { get; set; }
public bool? ПредлагатьОг { get; set; }
public bool? ПредлагатьГпиУ { get; set; }
public bool? ТребуетсяГкруглосуточногоПр { get; set; }
public bool? ТребуетсяГкп { get; set; }
public string ДублиГу { get; set; }
public string CaseNumber { get; set; }
public string Примечание { get; set; }
public string ЗаявительПол { get; set; }
public Guid ЗаявительВидДокумента { get; set; }
public DateTime? РебенокДатаРождения { get; set; }
public string РебенокПол { get; set; }
public string РебенокМестоРождения { get; set; }
public Guid РебенокВидДокумента { get; set; }
public Guid? РебенокРайонПермиПрожив { get; set; }
public Guid? РебенокНасПунктПрожив { get; set; }
public Guid? РебенокСнтпрожив { get; set; }
public string РебенокАдресПроживИндекс { get; set; }
public bool? РебенокАдресПроживИнойСубъектРф { get; set; }
public bool? РебенокАдресПроживВручную { get; set; }
public Guid? РебенокУлицаПрожив { get; set; }
public string РебенокДомПрожив { get; set; }
public string БратСестраРезультатПоиска { get; set; }
public Guid? РебенокЛичность { get; set; }
public Guid? ЗаявительЛичность { get; set; }
public Guid? БратСестраЛичность { get; set; }
public Guid? ЖелаемоеДоу1 { get; set; }
public Guid? ЖелаемоеДоу2 { get; set; }
public Guid? ЖелаемоеДоу3 { get; set; }
public Guid? КорпусДоу1 { get; set; }
public Guid? КорпусДоу2 { get; set; }
public Guid? КорпусДоу3 { get; set; }
public Guid? Доунаправления { get; set; }
public Guid СпособПодачи { get; set; }
public Guid Муниципалитет { get; set; }
public Guid? ТекущееСостояние { get; set; }
public Guid? ТерриторияДляРаспределения { get; set; }
public Guid ТипЗаконногоПредставителя { get; set; }
public Guid? НаправленностьГруппы { get; set; }
public Guid? СпециализацияГруппы { get; set; }
public Guid? КорпусНаправления { get; set; }
public Guid? ТипЛьготнойКатегорииДоу { get; set; }
public string РебенокАдресФактМжиндекс { get; set; }
public bool? РебенокАдресФактМжинойСубъектРф { get; set; }
public bool? РебенокАдресФактМжвручную { get; set; }
public string РебенокДомФактМж { get; set; }
public Guid? РебенокНасПунктФактМж { get; set; }
public Guid? РебенокРайонПермиФактМж { get; set; }
public Guid? РебенокУлицаФактМж { get; set; }
public Guid? РебенокСнтфактМж { get; set; }
public string НомерВпдо { get; set; }
public Guid? ПредыдущееЗаявление { get; set; }
public Guid? ПриказЗачисленияВгруппу { get; set; }
public Guid? ПриказЗачисленияВорганизацию { get; set; }
public string РебенокТипАдреса { get; set; }
public Guid? РебенокВдоу { get; set; }
public DateTime? ДатаПодтвержденияЛьготы { get; set; }
public bool? ЛичностьБратаСестрыПодтверждена { get; set; }
public DateTime? ДатаПодтвержденияБратаСестры { get; set; }
public Guid? ПриказОтчисленияИзОрганизации { get; set; }
public bool? ТолькоЧастныеДоу { get; set; }
public string РебенокХэшФиоиДр { get; set; }
public string ВидЗаявления { get; set; }
public string НаправленВгруппу { get; set; }
public Guid? РебенокДомПроживанияФиас { get; set; }
public Guid? РебенокДомФактМжфиас { get; set; }
public string ИмяОчередиСтатусов { get; set; }
public string КодОтветственнойОрганизации { get; set; }
public string НаименованиеОтветственнойОрганизации { get; set; }
public bool? СохраненоСошибками { get; set; }
public Guid? РебенокСтнфактМж { get; set; }
public Guid? РебенокСтнпрожив { get; set; }
public Guid? ЖелаемыйЯзыкОбучения { get; set; }
public DateTime? РебенокДатаАктовойЗаписи { get; set; }
public string РебенокНомерАктовойЗаписи { get; set; }
public DateTime? ЛьготникДатаВыдачиДокумента { get; set; }
public string ЛьготникКемВыданДокумент { get; set; }
public DateTime? ЛьготникСрокДействияДокументаДо { get; set; }
public string ДокументЗаконногоПредставителя { get; set; }
public string СерияДокументаЗаконногоПредставителя { get; set; }
public string НомерДокументаЗаконногоПредставителя { get; set; }
public DateTime? ДатаВыдачиДокументаЗаконногоПредставителя { get; set; }
public string КемВыданДокументЗаконногоПредставителя { get; set; }
public bool? ПредлагатьГпд { get; set; }
public Guid? РежимРаботыГруппы { get; set; }
public bool? СогласенНаДругоеДоу { get; set; }
public DateTime? ЖелаемаяДатаПриема { get; set; }
public string ВторойЗаявительФамилия { get; set; }
public string ВторойЗаявительИмя { get; set; }
public string ВторойЗаявительОтчество { get; set; }
public string ВторойЗаявительEmail { get; set; }
public string ВторойЗаявительТелефон { get; set; }
public bool? ОзнакомленСуставомЛицензией { get; set; }
public bool? ОзнакомленСперечнемДокументовДляЗачисления { get; set; }
public bool? ТребуютсяСпециальныеУсловия { get; set; }
public string ЗаявительДокументКемВыданКод { get; set; }
public string НомерЗаявленияНаИнформирование { get; set; }
public string РебенокДокументНаименование { get; set; }
public Guid? ГруппаНаправления { get; set; }
public bool? СвидетельствоПодтвержденоПоСмэв { get; set; }
public string АдресРегистрацииПоМжсмэв { get; set; }
public string АдресРегистрацииПоМпсмэв { get; set; }
public string НомерВконцентратореСмэв2 { get; set; }
public string ЗаявительТелефонДоп { get; set; }
public string ДанныеСвидетельстваОрожденииСмэв { get; set; }
public string ДанныеРодителейСмэв { get; set; }
public string ПоследнийОтветНаЗапросСвидетельстваСмэв { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ЗаявлениеОприеме
{
public Guid PrimaryKey { get; set; }
public DateTime? ДатаЗаявления { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid Организация { get; set; }
public Guid Личность { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ИзменениеСостоянияЗаявленияНаДоу
{
public Guid PrimaryKey { get; set; }
public DateTime? Дата { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid ЗаявлениеНаДоу { get; set; }
public Guid ВидСостоянияЗаявления { get; set; }
public Guid? ПричинаОтказа { get; set; }
public string Примечание { get; set; }
public Guid? КорпусНаправления { get; set; }
public Guid? Доунаправления { get; set; }
public DateTime? ДатаНаправленияВдоу { get; set; }
public string НаправленВгруппу { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class КатегорияИнвалидности
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class КатегорияПотребителейУслуг
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid ТипУслуги { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class КатегорияРебенка
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public Guid? Иерархия { get; set; }
}
}
This source diff could not be displayed because it is too large. You can view the blob instead.
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class КорпусОрганизации
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public string АдресПрописью { get; set; }
public string Дом { get; set; }
public string ИсточникДанных { get; set; }
public string РеестровыйНомер { get; set; }
public string Примечание { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid? Улица { get; set; }
public Guid Организация { get; set; }
public bool? Актуально { get; set; }
public string Индекс { get; set; }
public Guid? НасПункт { get; set; }
public bool? ГлавныйКорпус { get; set; }
public string ТипМестности { get; set; }
public string Тип { get; set; }
public int? ПроцентИзноса { get; set; }
public bool? ЗданиеФункционирует { get; set; }
public string КабПсихолог { get; set; }
public string КабДефектолог { get; set; }
public string КабЛогопед { get; set; }
public string МедицинскийКаб { get; set; }
public string Спортзал { get; set; }
public string Муззал { get; set; }
public string Бассейн { get; set; }
public string ВходНода { get; set; }
public string ВходГлух { get; set; }
public string ВходСлеп { get; set; }
public string ЗонаГлух { get; set; }
public string ЗонаНода { get; set; }
public string ЗонаСлеп { get; set; }
public string ПутьКздНода { get; set; }
public string ПутьКздГлух { get; set; }
public string ПутьКздСлеп { get; set; }
public string ПутьГлух { get; set; }
public string ПутьСлеп { get; set; }
public string ПутьНода { get; set; }
public string СанПомГлух { get; set; }
public string СанПомСлеп { get; set; }
public string СанПомНода { get; set; }
public string СистИнформГлух { get; set; }
public string СистИнформСлеп { get; set; }
public string СистИнформНода { get; set; }
public string СпецОборГлух { get; set; }
public string СпецОборСлеп { get; set; }
public string СпецОборНода { get; set; }
public string ТеррСлеп { get; set; }
public string ТеррГлух { get; set; }
public string ТеррНода { get; set; }
public bool? ЕстьДошкольныеГруппы { get; set; }
public bool? АдресВручную { get; set; }
public Guid? Район { get; set; }
public Guid? Снт { get; set; }
public Guid? Микрорайон { get; set; }
public string ПричинаОтсутствияКонтингента { get; set; }
public Guid? ДомФиас { get; set; }
public double? GisX { get; set; }
public double? GisY { get; set; }
public string НаименованиеЕпгу { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ЛицензияОрганизации
{
public Guid PrimaryKey { get; set; }
public string ВидЛицензии { get; set; }
public string РегистрационныйНомер { get; set; }
public string СерияИномерБланка { get; set; }
public DateTime? ДатаНачалаДействия { get; set; }
public DateTime? ДатаОкончанияДействия { get; set; }
public string Примечание { get; set; }
public DateTime? ДатаВыдачи { get; set; }
public Guid Организация { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public DateTime? ДатаИвремяАктуальностиДанных { get; set; }
public string ФедеральныйGuid { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Личность
{
public Guid PrimaryKey { get; set; }
public string КатегорияЛичности { get; set; }
public DateTime? ДатаРождения { get; set; }
public string Пол { get; set; }
public string МестоРождения { get; set; }
public bool? Инвалид { get; set; }
public DateTime? СрокДействияГруппыИнвалидности { get; set; }
public DateTime? ДатаИвремяВыгрузкиДанных { get; set; }
public string Примечание { get; set; }
public Guid? ГруппаЗдоровья { get; set; }
public Guid? КатегорияИнвалидности { get; set; }
public Guid? ФизкультурнаяГруппа { get; set; }
public Guid? ГруппаИнвалидности { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public DateTime? ДатаИвремяАктуальностиДанных { get; set; }
public bool? Актуально { get; set; }
public Guid? ВтороеГражданство { get; set; }
public Guid? Гражданство { get; set; }
public bool? ПотребностьВдлительномЛечении { get; set; }
public bool? ПотребностьВадаптированнойПрограмме { get; set; }
public Guid? ОбъединеннаяЛичность { get; set; }
public string ФедеральныйGuid { get; set; }
public bool? НетОтчества { get; set; }
public bool? ОшибкиВфио { get; set; }
public bool? ОшибкиВдокументах { get; set; }
public bool? ОсобыйРебёнок { get; set; }
public Guid? ТерриторияРегистрацииПоМестуПребыванияNew { get; set; }
public Guid? ТерриторияРегистрацииПоМестуЖительстваNew { get; set; }
public Guid? УлицаФактическогоМестаЖительстваNew { get; set; }
public Guid? ТерриторияФактическогоМестаЖительстваNew { get; set; }
public string ВидЛьготникаДоу { get; set; }
public string ДомРегПоМестуЖительства { get; set; }
public string ДомРегПоМестуПребывания { get; set; }
public string ДомФактМестаЖительства { get; set; }
public string ИндексРегПоМестуЖительства { get; set; }
public string ИндексРегПоМестуПребывания { get; set; }
public string ИндексФактМестаЖительства { get; set; }
public Guid? УлицаРегПоМестуЖительства { get; set; }
public Guid? УлицаРегПоМестуПребывания { get; set; }
public Guid? НасПунктРегПоМестуЖительства { get; set; }
public Guid? НасПунктФактМестаЖительства { get; set; }
public Guid? НасПунктРегПоМестуПребывания { get; set; }
public bool? ОтправленНаСверкуФри { get; set; }
public bool? СверенСфри { get; set; }
public Guid? ПоставщикПитания { get; set; }
public Guid? РайонПермиРегПоМестуЖительства { get; set; }
public Guid? РайонПермиФактМестаЖительства { get; set; }
public Guid? РайонПермиРегПоМестуПребывания { get; set; }
public bool? ВручнуюАдресРегПоМестуЖительства { get; set; }
public bool? ВручнуюАдресРегПоМестуПребывания { get; set; }
public bool? ВручнуюАдресФактМестаЖительства { get; set; }
public Guid? СнтпоМестуПребывания { get; set; }
public Guid? СнтфактМестаЖительства { get; set; }
public Guid? СнтпоМестуЖительства { get; set; }
public bool? Овз { get; set; }
public string РезультатСверкиФри { get; set; }
public bool? ИнойСубъектРфрегПоМестуЖительства { get; set; }
public bool? ИнойСубъектРфрегПоМестуПребывания { get; set; }
public bool? ИнойСубъектРффактМестаЖительства { get; set; }
public string КодПроверки { get; set; }
public DateTime? ДатаПроверки { get; set; }
public bool? Подтверждено { get; set; }
public DateTime? ДатаПодтверждения { get; set; }
public string Подтвердил { get; set; }
public string ОтчетОрезультатахПроверки { get; set; }
public string ХэшФиоиДр { get; set; }
public bool? ПроживаетВобщежитии { get; set; }
public DateTime? ДатаОтправкиВфри { get; set; }
public Guid? ДомФактМестаЖительстваФиас { get; set; }
public Guid? ДомРегПоМестуПребыванияФиас { get; set; }
public Guid? ДомРегПоМестуЖительстваФиас { get; set; }
public string Телефон { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ЛичностьПодразделения
{
public Guid PrimaryKey { get; set; }
public DateTime? НачальнаяДата { get; set; }
public DateTime? КонечнаяДата { get; set; }
public string Примечание { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid? ПриказОтчисления { get; set; }
public Guid? ПриказЗачисления { get; set; }
public Guid УчебныйГод { get; set; }
public Guid? ОснованиеОтчисления { get; set; }
public Guid Личность { get; set; }
public Guid? Подразделение { get; set; }
public string НаименованиеПодразделения { get; set; }
public string ВидПодразделения { get; set; }
public Guid? Организация { get; set; }
public string НаименованиеОрганизации { get; set; }
public Guid? ТипПодразделения { get; set; }
public Guid? ТипОрганизации { get; set; }
public string ФедеральныйGuid { get; set; }
public bool? Актуально { get; set; }
public DateTime? ПланируемаяДатаВыходаИзОтпуска { get; set; }
public Guid? ТипФинансирования { get; set; }
public Guid? РеквизитыПодразделенияУчащегося { get; set; }
public bool? ПланируетУйтиВпервыйКласс { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Микрорайон
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
public Guid Район { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class НаправлениеОбучения
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string КодСтрокой { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class НаправленностьЗаболевания
{
public НаправленностьЗаболевания()
{
InverseВидМедицинскогоДокументаNavigation = new HashSet<НаправленностьЗаболевания>();
}
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid ВидМедицинскогоДокумента { get; set; }
public DateTime? CreateTime { get; set; }
public string Creator { get; set; }
public DateTime? EditTime { get; set; }
public string Editor { get; set; }
public virtual НаправленностьЗаболевания ВидМедицинскогоДокументаNavigation { get; set; }
public virtual ICollection<НаправленностьЗаболевания> InverseВидМедицинскогоДокументаNavigation { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class НастройкаБазы
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? РайонNew { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class НастройкаОбработкиЗаявлений
{
public Guid PrimaryKey { get; set; }
public int? ЧислоДнейИсп { get; set; }
public Guid ВидЗаявления { get; set; }
public Guid Организация { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string АдресПриема { get; set; }
public string ЧасыРаботы { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ОбразовательнаяОрганизация
{
public Guid PrimaryKey { get; set; }
public string ТипОргСтруктуры { get; set; }
public string КраткоеНаименование { get; set; }
public string ПолноеНаименование { get; set; }
public string Номер { get; set; }
public string Инн { get; set; }
public string Огрн { get; set; }
public string ЮридическийАдресПрописью { get; set; }
public string КодФиасюридический { get; set; }
public string ФизическийАдресПрописью { get; set; }
public string КодФиасфизический { get; set; }
public string Телефон { get; set; }
public string Факс { get; set; }
public string Email { get; set; }
public string ИсточникДанных { get; set; }
public string Имя { get; set; }
public string КоличествоСмен { get; set; }
public string Кпп { get; set; }
public string ГражданствоИп { get; set; }
public string ЮридическийАдресИндекс { get; set; }
public string ЮридическийАдресДом { get; set; }
public string ФизическийАдресИндекс { get; set; }
public string ФизическийАдресДом { get; set; }
public string АдресWebСайта { get; set; }
public string Фиоруководителя { get; set; }
public int? ПредельнаяНаполняемость { get; set; }
public DateTime? ДатаИвремяВыгрузкиДанных { get; set; }
public Guid ТипОрганизации { get; set; }
public Guid? Окогу { get; set; }
public Guid? Иерархия { get; set; }
public Guid? ВидУчредителя { get; set; }
public Guid СтатусОрганизации { get; set; }
public Guid? Окфс { get; set; }
public Guid? Окопф { get; set; }
public string НаименованиеДляСписков { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public DateTime? ДатаИвремяАктуальностиДанных { get; set; }
public bool? Актуально { get; set; }
public int? МинимальнаяПараллель { get; set; }
public string Учредитель { get; set; }
public string Окпо { get; set; }
public bool? Переведена { get; set; }
public int? МаксимальнаяПараллель { get; set; }
public int? ФактическаяНаполняемость { get; set; }
public string ВидОрганизации { get; set; }
public string ФедеральныйGuid { get; set; }
public Guid? Район { get; set; }
public Guid? УлицаЮридическогоАдресаNew { get; set; }
public Guid? УлицаФизическогоАдресаNew { get; set; }
public Guid? Ведомство { get; set; }
public string РеестровыйНомер { get; set; }
public string Реорганизация { get; set; }
public DateTime? ДатаОкончанияРеорганизации { get; set; }
public string ТипМестности { get; set; }
public DateTime? ДатаНачалаРеорганизации { get; set; }
public string НомерДокументаОреорганизации { get; set; }
public DateTime? ДатаДокументаОреорганизации { get; set; }
public Guid? НасПунктЮрАдреса { get; set; }
public Guid? НасПунктФизАдреса { get; set; }
public bool? НовыйОбразовательныйЦентр { get; set; }
public bool? НаличиеДополнительныхОбразовательныхПрограмм { get; set; }
public Guid? ПоставщикПитания { get; set; }
public bool? ДляОтправкиВэпос { get; set; }
public Guid? ВедомствоЭпос { get; set; }
public Guid? РайонПермиЮрАдреса { get; set; }
public bool? ЮрАдресВручную { get; set; }
public Guid? СнтюрАдреса { get; set; }
public string РежимРаботыДоу { get; set; }
public string ПитаниеДоу { get; set; }
public string ОсобенностиДоу { get; set; }
public string ВидДополнительныхОп { get; set; }
public string РеализуемыеОп { get; set; }
public string АдмРегламент { get; set; }
public string ПостановлениеГлавы { get; set; }
public string ПаспортДоступности { get; set; }
public bool? НетЛицензии { get; set; }
public Guid? ДоговорС { get; set; }
public Guid? СтатусДошкольныхГруппШколы { get; set; }
public Guid? ДомФиас { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ОбразовательнаяПрограммаОрганизации
{
public Guid PrimaryKey { get; set; }
public Guid ТипОп { get; set; }
public Guid Организация { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string ФедеральныйGuid { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Оквэд
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string КодОквэд { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Окогу
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Окопф
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Оксм
{
public Guid PrimaryKey { get; set; }
public string КраткоеНаименование { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Окфс
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ОрганВыдачиДокумента
{
public Guid PrimaryKey { get; set; }
public string ВидОргана { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public string КодОргана { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ОснованиеОтчисления
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid ТипОрганизации { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ОснованиеСостоянияЗаявления
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public string Примечание { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ОтделениеОбразовательнойОрганизации
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid Организация { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ОтсутствиеРебенкаВдоу
{
public Guid PrimaryKey { get; set; }
public DateTime? Дата { get; set; }
public string ПричинаОтсутствия { get; set; }
public string Примечание { get; set; }
public Guid? ТекущаяЛичностьПодразделения { get; set; }
public Guid? ЛичностьПодразделения { get; set; }
public DateTime? CreateTime { get; set; }
public string Creator { get; set; }
public DateTime? EditTime { get; set; }
public string Editor { get; set; }
public Guid? ПодразделениеОбразовательнойОрганизации { get; set; }
public string УточнениеПричиныОтсутствия { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ОшибкиВводаДанных
{
public Guid? PrimaryKey { get; set; }
public string ДатаПроверки { get; set; }
public string Район { get; set; }
public Guid ОрганизацияPk { get; set; }
public string Организация { get; set; }
public int? КоличествоДетей { get; set; }
public int? ОтсутствуетОтчество { get; set; }
public int? ОтсутствуетДр { get; set; }
public int? ОтсутствуетОиДр { get; set; }
public int? ОшибкиВдокументе { get; set; }
public int? ОшибкиВфио { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Параллель
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ПараллельОрганизации
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid Параллель { get; set; }
public Guid СрокПриема { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ПитаниеУчащихся
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid Организация { get; set; }
public Guid Личность { get; set; }
public DateTime Дата { get; set; }
public string Питание { get; set; }
public Guid? ТипПитания { get; set; }
public decimal? Стоимость { get; set; }
public string Комментарий { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ПодразделениеОбразовательнойОрганизации
{
public Guid PrimaryKey { get; set; }
public string ВидПодразделения { get; set; }
public int? МаксимальнаяНаполняемость { get; set; }
public string Примечание { get; set; }
public string ИсточникДанных { get; set; }
public DateTime? ДатаИвремяВыгрузкиДанных { get; set; }
public Guid? РежимРаботыГруппы { get; set; }
public Guid? ФормаОбучения { get; set; }
public Guid? ТипПодразделения { get; set; }
public Guid? ВидСмены { get; set; }
public Guid Организация { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid? СпециализацияГруппы { get; set; }
public Guid? ВозрастнаяКатегория { get; set; }
public DateTime? ДатаИвремяАктуальностиДанных { get; set; }
public bool? Актуально { get; set; }
public Guid? АдаптированностьОп { get; set; }
public Guid? УровеньОбразования { get; set; }
public string Наименование { get; set; }
public string Литера { get; set; }
public int? Номер { get; set; }
public Guid? ТипОп { get; set; }
public string ВозрастУчащихся { get; set; }
public string НаправленностьОп { get; set; }
public int? ГодОбучения { get; set; }
public string БазовоеОбразование { get; set; }
public string СрокОбучения { get; set; }
public Guid? КорпусОрганизации { get; set; }
public Guid? ФормаРеализацииОбучения { get; set; }
public Guid? СрокОбученияСпр { get; set; }
public Guid? ПродолжительностьРаботыГруппы { get; set; }
public Guid? ОтделениеОбразовательнойОрганизации { get; set; }
public Guid? ТипФинансирования { get; set; }
public string УровеньПодготовки { get; set; }
public decimal? ВозрастС { get; set; }
public decimal? ВозрастПо { get; set; }
public int? КоличествоПодгрупп { get; set; }
public Guid? Помещение { get; set; }
public Guid? ДопСпециализацияГруппы { get; set; }
public string ВидОбразовательнойПрограммы { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Помещение
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string ТипПомещения { get; set; }
public double? Площадь { get; set; }
public string Наименование { get; set; }
public string Примечание { get; set; }
public bool? Актуально { get; set; }
public Guid КорпусОрганизации { get; set; }
public bool СовмещенноеПомещение { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ПоселениеТерритории
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public string ТипПоселения { get; set; }
public string КодОктмо { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
public Guid Территория { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Предмет
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string Наименование { get; set; }
public int? Код { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Приказ
{
public Guid PrimaryKey { get; set; }
public string Номер { get; set; }
public DateTime? Дата { get; set; }
public string Примечание { get; set; }
public Guid ОбразовательнаяОрганизация { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid? ВидПриказа { get; set; }
public int СистемныйНомер { get; set; }
public string СостояниеПриказа { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ПричинаНахожденияВтжс
{
public Guid PrimaryKey { get; set; }
public string Примечание { get; set; }
public Guid КатегорияРебенка { get; set; }
public Guid Личность { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string ФедеральныйGuid { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ПричинаОтказаПоЗаявлению
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string ШаблонСообщения { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid ВидЗаявления { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ПродолжительностьРаботыГруппы
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Профиль
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ПрофильОрганизации
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid СрокПриема { get; set; }
public Guid Профиль { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class РазмерРодительскойПлаты
{
public Guid PrimaryKey { get; set; }
public string ВозрастнаяКатегория { get; set; }
public decimal ОбщеразвивающейНаправленности { get; set; }
public decimal КомпенсирующейНаправленности { get; set; }
public decimal КомбинированнойНаправленности { get; set; }
public decimal ОздоровительнойНаправленности { get; set; }
public decimal ГруппыПрисмотраИухода { get; set; }
public decimal СемейныеДошкольныеГруппы { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid РежимРаботыГруппы { get; set; }
public Guid Регламентация { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class РегламентацияРазмераРодительскойПлаты
{
public Guid PrimaryKey { get; set; }
public string Нпасубъекта { get; set; }
public string Нпамуниципалитета { get; set; }
public string ИзменениеРазмераПлаты { get; set; }
public string ПринципУстановленияРазмера { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid Муниципалитет { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class РежимРаботыГруппы
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string ПолноеНаименование { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string НаименованиеЕпгу { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class РезультатАоп
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid УчебныйГод { get; set; }
public Guid Организация { get; set; }
public Guid Личность { get; set; }
public Guid ТипРезультатаАоп { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class РеквизитыПодразделенияУчащегося
{
public Guid PrimaryKey { get; set; }
public string НаименованиеПодразделения { get; set; }
public int? Номер { get; set; }
public string Литера { get; set; }
public string БазовоеОбразование { get; set; }
public string Специальности { get; set; }
public Guid? ФормаОбучения { get; set; }
public Guid ТипПодразделения { get; set; }
public Guid? Подразделение { get; set; }
public Guid? СрокОбучения { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid? ТипФинансирования { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СвязьУслуг
{
public Guid PrimaryKey { get; set; }
public bool? Актуально { get; set; }
public Guid КомплекснаяУслуга { get; set; }
public Guid ПростаяУслуга { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СловарьИмен
{
public Guid PrimaryKey { get; set; }
public string Имя { get; set; }
public string Пол { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СловарьОтчеств
{
public Guid PrimaryKey { get; set; }
public string Отчество { get; set; }
public string Пол { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СопровождениеОвз
{
public Guid PrimaryKey { get; set; }
public float? ЧасовВнеделю { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid Личность { get; set; }
public Guid Организация { get; set; }
public Guid ТипСпециалистаОвз { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СостояниеЗаявления
{
public Guid PrimaryKey { get; set; }
public DateTime? Дата { get; set; }
public bool? Текущее { get; set; }
public string Примечание { get; set; }
public Guid Состояние { get; set; }
public Guid? Основание { get; set; }
public Guid Заявление { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid? Уведомление { get; set; }
public Guid? ПричинаОтказа { get; set; }
public string ДополнительныйКомментарий { get; set; }
public bool ТребуютсяДокументыОбУспеваемости { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СпециализацияГруппы
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public int? Код { get; set; }
public string НаименованиеЕпгу { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Специальность
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string КодСтрокой { get; set; }
public string Затратность { get; set; }
public string ВидОбучения { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СпециальностьОо
{
public Guid? Primarykey { get; set; }
public Guid Специальность { get; set; }
public Guid? ФормаОбучения { get; set; }
public Guid ОбразовательнаяОрганизация { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СпециальностьПодразделения
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
public Guid? Специальность { get; set; }
public Guid Подразделение { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СпециальностьУслуги
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
public Guid Специальность { get; set; }
public Guid Услуга { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СпособПодачиЗаявления
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? ТипОрганизации { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СрокОбучения
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public int? ВыпускнойКурс { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СрокПриемаЗаявлений
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public DateTime? ДатаНачалаПриема { get; set; }
public DateTime? ДатаКонцаПриема { get; set; }
public Guid НастройкаОбработкиЗаявлений { get; set; }
public string Профиль { get; set; }
public string Параллель { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СтатусОбразовательнойОрганизации
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class СтрокаПроектаПриказа
{
public Guid PrimaryKey { get; set; }
public DateTime? ДатаДвижения { get; set; }
public DateTime? ПланируемаяДатаВыходаИзОтпуска { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
public Guid? ТекущаяЛичностьПодразделения { get; set; }
public Guid? Личность { get; set; }
public Guid? НовоеПодразделение { get; set; }
public Guid? ЛичностьПодразделения { get; set; }
public Guid? СтароеПодразделение { get; set; }
public Guid? ТипФинансирования { get; set; }
public Guid Приказ { get; set; }
public Guid? ОснованиеОтчисления { get; set; }
public Guid? СотрудникОрганизации { get; set; }
public Guid? НазначениеКомпенсацииЗаДоу { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТекущаяЛичностьПодразделения
{
public Guid PrimaryKey { get; set; }
public DateTime? НачальнаяДата { get; set; }
public string ИсточникДанных { get; set; }
public DateTime? ДатаИвремяВыгрузкиДанных { get; set; }
public Guid Личность { get; set; }
public Guid? ФормаОбучения { get; set; }
public Guid? ТипФинансирования { get; set; }
public Guid Подразделение { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public DateTime? ДатаИвремяАктуальностиДанных { get; set; }
public Guid? ПриказЗачисления { get; set; }
public bool? Актуально { get; set; }
public bool? Проживающий { get; set; }
public bool? Подвоз { get; set; }
public Guid? ТипГрафикаАттестации { get; set; }
public Guid? ВидОбученияОгрЗдоровых { get; set; }
public Guid? ВидОбученияБольныхДетей { get; set; }
public Guid? ТипУчебногоПлана { get; set; }
public Guid? ФормаРеализацииОбучения { get; set; }
public Guid? УчебныйГод { get; set; }
public bool? ПланируетУйтиВпервыйКласс { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Территория
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
public Guid? АссоциацияТерриторий { get; set; }
public string Окато { get; set; }
public string Октмо { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипАооп
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипБазовойОп
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипГрафикаАттестации
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипЗаконногоПредставителя
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string ПолноеНаименование { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid? Иерархия { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипЛьготнойКатегории
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? ДляСортировки { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипЛьготнойКатегорииДоу
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public string ПолноеНаименование { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипМероприятия
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string Наименование { get; set; }
public int? Код { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипОбразовательнойОрганизации
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипОбразовательнойПрограммы
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипОценки
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string Наименование { get; set; }
public int? Код { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипПитания
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипПодразделения
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string ПолноеНаименование { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public Guid ТипОрганизации { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипРезультатаАоп
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипСпециалистаОвз
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипУслуги
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипУчебногоПлана
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ТипФинансирования
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class УровеньМероприятия
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string Наименование { get; set; }
public int? Код { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class УровеньОбразования
{
public Guid PrimaryKey { get; set; }
public int? Код { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Услуга
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public string КодУслуги { get; set; }
public float? ПродолжительностьОдногоЗанятияЧасов { get; set; }
public bool? КомплекснаяУслуга { get; set; }
public bool? Актуально { get; set; }
public Guid ВидУслуги { get; set; }
public Guid Организация { get; set; }
public string БазовоеОбразование { get; set; }
public Guid КатегорияПотребителейУслуг { get; set; }
public Guid ФормаОбучения { get; set; }
public Guid? Специальность { get; set; }
public int? КцптекГода { get; set; }
public int? КцпследГода { get; set; }
public int? КоличествоОтчислВтекГоду { get; set; }
public int? КоличествоВосстВтекГоду { get; set; }
public int? КоличествоОтчислВследГоду { get; set; }
public int? КоличествоВосстВследГоду { get; set; }
public int? ВыпускВтекГоду { get; set; }
public int? ВыпускВследГоду { get; set; }
public int? КоличествоВтекГоду { get; set; }
public int? КоличествоВследГоду { get; set; }
public int? ГзтекГода { get; set; }
public int? ГзследГода { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class УслугаОбучения
{
public Guid PrimaryKey { get; set; }
public int? КодЭпос { get; set; }
public string Наименование { get; set; }
public bool? КомплекснаяУслуга { get; set; }
public string ТипФинансирования { get; set; }
public string ТипОбучения { get; set; }
public string УровеньСложности { get; set; }
public string СтатусУслуги { get; set; }
public decimal? НачальныйВозраст { get; set; }
public decimal? КонечныйВозраст { get; set; }
public bool? Мальчики { get; set; }
public bool? Девочки { get; set; }
public int? СрокОбучения { get; set; }
public string ИсточникДанных { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public bool? Актуально { get; set; }
public Guid? НаправлениеОбучения { get; set; }
public Guid Организация { get; set; }
public Guid ВидУслуги { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class УчебныйГод
{
public Guid PrimaryKey { get; set; }
public bool Текущий { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? Конец { get; set; }
public DateTime? Начало { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class УчетПосещенияДетьмиДоу
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public DateTime? Дата { get; set; }
public int? КоличествоПрисутствующих { get; set; }
public Guid Подразделение { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ФактОказанияУслуг
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Месяц { get; set; }
public int? КоличествоЗанятий { get; set; }
public int? ПропущеноЗанятий { get; set; }
public int? ПропущеноПоУважительнойПричине { get; set; }
public int? ЛьготноеПитаниеВстоловой { get; set; }
public int? КоличествоКнигВзятыхВбиблиотеке { get; set; }
public Guid Услуга { get; set; }
public Guid Личность { get; set; }
public Guid УчебныйГод { get; set; }
public string НаименованиеПодразделения { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ФактическоеЗначениеПоказателяУслуги
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public DateTime? ДатаВычисления { get; set; }
public DateTime? ОтчетнаяДата { get; set; }
public double? ФактическоеЗначение { get; set; }
public Guid? Услуга { get; set; }
public Guid? ВидПоказателяУслуги { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ФизкультурнаяГруппа
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ФормаОбучения
{
public Guid PrimaryKey { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
public Guid? Иерархия { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ФормаРеализацииОбучения
{
public Guid PrimaryKey { get; set; }
public DateTime? CreateTime { get; set; }
public DateTime? EditTime { get; set; }
public int? Код { get; set; }
public string Наименование { get; set; }
public bool? Актуально { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class ЭбвидДеятельности
{
public Guid PrimaryKey { get; set; }
public string ActivityCode { get; set; }
public string ActivityName { get; set; }
public string ActivityKind { get; set; }
public Guid Эборганизация { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Эборганизация
{
public Guid PrimaryKey { get; set; }
public string Id { get; set; }
public string Ogrn { get; set; }
public string FullName { get; set; }
public string ShortName { get; set; }
public string Inn { get; set; }
public DateTime? RegDate { get; set; }
public string OkopfName { get; set; }
public string OkopfCode { get; set; }
public string OkfsName { get; set; }
public string OkfsCode { get; set; }
public string SubjectName { get; set; }
public string PostIndex { get; set; }
public string OktmoCode { get; set; }
public string OktmoName { get; set; }
public string FounderKindName { get; set; }
public string FounderKindCode { get; set; }
public string FounderPlaceName { get; set; }
public string FounderPlaceCode { get; set; }
public string OkoguCode { get; set; }
public string OkpoCode { get; set; }
public string IsReorg { get; set; }
public string ReformationName { get; set; }
public string ReformationDocumentNum { get; set; }
public DateTime? ReformationDocumentDate { get; set; }
public string ReformationCode { get; set; }
public DateTime? ReformationStartDate { get; set; }
public DateTime? ReformationEndDate { get; set; }
public DateTime? DateUpdate { get; set; }
public string RegionName { get; set; }
public string RegionType { get; set; }
public string AreaName { get; set; }
public string CityName { get; set; }
public string LocalType { get; set; }
public string LocalName { get; set; }
public string StreetType { get; set; }
public string StreetName { get; set; }
public string House { get; set; }
public string Building { get; set; }
public string OrfkName { get; set; }
public string OrfkCode { get; set; }
public string Status { get; set; }
public string Kpp { get; set; }
public string RecordNum { get; set; }
public string Guid { get; set; }
public string Mail { get; set; }
public string Phone { get; set; }
public string Site { get; set; }
public string Lastname { get; set; }
public string Firstname { get; set; }
public string Patronymic { get; set; }
public string Post { get; set; }
public string YurAddress { get; set; }
public string HeadFio { get; set; }
public Guid? ContOkopf { get; set; }
public Guid? ContStatus { get; set; }
public Guid? ContOkfs { get; set; }
}
}
using System;
using System;
using System.Collections.Generic;
#nullable disable
namespace SocialMinistryDataExchange.Model
{
public partial class Эбправопреемство
{
public Guid PrimaryKey { get; set; }
public string ParentName { get; set; }
public string Ogrn { get; set; }
public string ParentCode { get; set; }
public Guid Эборганизация { get; set; }
}
}
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SocialMinistryDataExchange {
public class Program {
public static void Main(string[] args) {
CreateHostBuilder(args).Build().Run();
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder => {
webBuilder.UseStartup<Startup>();
});
}
}
{
"$schema": "http://json.schemastore.org/launchsettings.json",
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:22221",
"sslPort": 44332
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "swagger",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"SocialMinistryDataExchange": {
"commandName": "Project",
"dotnetRunMessages": "true",
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "https://localhost:5001;http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.6.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.9" />
</ItemGroup>
<ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
</Project>
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.HttpsPolicy;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.OpenApi.Models;
using SocialMinistryDataExchange.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SocialMinistryDataExchange {
public class Startup {
public Startup(IConfiguration configuration) {
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services) {
var ConnectionString = Configuration.GetConnectionString("DefaultDB");
services.AddControllers();
services.AddSwaggerGen(c => {
c.SwaggerDoc("v1", new OpenApiInfo { Title = "SocialMinistryDataExchange", Version = "v1" });
});
services.AddDbContext<SMContext>(options =>
options.UseSqlServer(ConnectionString));
services.AddTransient<ISMContext, SMContext>();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env) {
if (env.IsDevelopment()) {
app.UseDeveloperExceptionPage();
app.UseSwagger();
app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "SocialMinistryDataExchange v1"));
}
app.UseHttpsRedirection();
app.UseRouting();
app.UseAuthorization();
app.UseEndpoints(endpoints => {
endpoints.MapControllers();
});
}
}
}
using System;
namespace SocialMinistryDataExchange {
public class WeatherForecast {
public DateTime Date { get; set; }
public int TemperatureC { get; set; }
public int TemperatureF => 32 + (int)(TemperatureC / 0.5556);
public string Summary { get; set; }
}
}
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
}
}
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultDB": "Data Source=\"176.124.136.11\\edubase, 1433\";Initial Catalog=Конт_Объединенный_defaced;Integrated Security=False;User ID=contingent_user;Password=@yn!dpkjv;Pooling=True;Max Pool Size=500;MultipleActiveResultSets=False;Connect Timeout=60;Packet Size=4096;Trust Server Certificate=true"
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment