Commit a6167d6f by AlexNasyr

person naming update realized

parent 1dfc487a
...@@ -43,7 +43,7 @@ namespace SocialMinistryDataExchange.Controllers { ...@@ -43,7 +43,7 @@ namespace SocialMinistryDataExchange.Controllers {
PersonName = "Василий", PersonName = "Василий",
PersonSurname = "Алибабаевич", PersonSurname = "Алибабаевич",
PersonBirthday = DateTime.Parse("2015-01-01"), PersonBirthday = DateTime.Parse("2015-01-01"),
PersonSnils = "12345678", PersonSnils = "12345678901",
Territory = "Пермский ГО (г. Пермь)", Territory = "Пермский ГО (г. Пермь)",
}, },
PersonOccupation = new SMPersonOccupationStatus() PersonOccupation = new SMPersonOccupationStatus()
......
using Microsoft.EntityFrameworkCore; using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata;
#nullable disable #nullable disable
namespace SocialMinistryDataExchange.Model.Contingent.Center namespace SocialMinistryDataExchange.Model.Contingent.Center
{ {
public partial class Contingent_center_Context : DbContext, IContingentContext { public partial class Contingent_center_Context : DbContext, IContingentContext {
public Contingent_center_Context() public Contingent_center_Context()
{ {
} }
public Contingent_center_Context(DbContextOptions<Contingent_center_Context> options) public Contingent_center_Context(DbContextOptions<Contingent_center_Context> options)
: base(options) : base(options)
{ {
......
...@@ -20,6 +20,7 @@ namespace SocialMinistryDataExchange.Model { ...@@ -20,6 +20,7 @@ namespace SocialMinistryDataExchange.Model {
DbSet<ТипОбразовательнойПрограммы> ТипОбразовательнойПрограммыs { get; set; } DbSet<ТипОбразовательнойПрограммы> ТипОбразовательнойПрограммыs { get; set; }
DbSet<ФормаОбучения> ФормаОбученияs { get; set; } DbSet<ФормаОбучения> ФормаОбученияs { get; set; }
DbSet<ТипОбразовательнойОрганизации> ТипОбразовательнойОрганизацииs { get; set; } DbSet<ТипОбразовательнойОрганизации> ТипОбразовательнойОрганизацииs { get; set; }
DbSet<ПодразделениеОбразовательнойОрганизации> ПодразделениеОбразовательнойОрганизацииs { get; set; }
} }
} }
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