Rework registry elements
This commit is contained in:
@ -1,6 +1,4 @@
|
||||
using Hcs.Service.Async.HouseManagement;
|
||||
|
||||
namespace Hcs.Client.Api.Registry
|
||||
namespace Hcs.Client.Api.Registry
|
||||
{
|
||||
/// <summary>
|
||||
/// НСИ "Основание заключения договора" (реестровый номер 58).
|
||||
@ -11,91 +9,71 @@ namespace Hcs.Client.Api.Registry
|
||||
/// <summary>
|
||||
/// Решение собрания собственников
|
||||
/// </summary>
|
||||
public static nsiRef Element1 => new()
|
||||
{
|
||||
Code = "1",
|
||||
GUID = "110d48b2-32a9-4a44-939c-b784d9794621"
|
||||
};
|
||||
public static RegistryElement Element1 => new(
|
||||
"1",
|
||||
"110d48b2-32a9-4a44-939c-b784d9794621");
|
||||
|
||||
/// <summary>
|
||||
/// Открытый конкурс
|
||||
/// </summary>
|
||||
public static nsiRef Element2 => new()
|
||||
{
|
||||
Code = "2",
|
||||
GUID = "a9dc59c3-d53f-42eb-ba98-cf8c74d88d36"
|
||||
};
|
||||
public static RegistryElement Element2 => new(
|
||||
"2",
|
||||
"a9dc59c3-d53f-42eb-ba98-cf8c74d88d36");
|
||||
|
||||
/// <summary>
|
||||
/// Договор управления
|
||||
/// </summary>
|
||||
public static nsiRef Element3 => new()
|
||||
{
|
||||
Code = "3",
|
||||
GUID = "11efe618-79f8-4f53-bfd6-11620e8e9e1e"
|
||||
};
|
||||
public static RegistryElement Element3 => new(
|
||||
"3",
|
||||
"11efe618-79f8-4f53-bfd6-11620e8e9e1e");
|
||||
|
||||
/// <summary>
|
||||
/// Устав
|
||||
/// </summary>
|
||||
public static nsiRef Element4 => new()
|
||||
{
|
||||
Code = "4",
|
||||
GUID = "a2eb920c-8163-4958-812a-ad153a5dfde6"
|
||||
};
|
||||
public static RegistryElement Element4 => new(
|
||||
"4",
|
||||
"a2eb920c-8163-4958-812a-ad153a5dfde6");
|
||||
|
||||
/// <summary>
|
||||
/// Решение правления
|
||||
/// </summary>
|
||||
public static nsiRef Element5 => new()
|
||||
{
|
||||
Code = "5",
|
||||
GUID = "58639715-2708-4b8e-a5e6-7cae4ddbf03b"
|
||||
};
|
||||
public static RegistryElement Element5 => new(
|
||||
"5",
|
||||
"58639715-2708-4b8e-a5e6-7cae4ddbf03b");
|
||||
|
||||
/// <summary>
|
||||
/// Решение органа управления застройщика
|
||||
/// </summary>
|
||||
public static nsiRef Element6 => new()
|
||||
{
|
||||
Code = "6",
|
||||
GUID = "9b606ef5-7701-4a12-a837-d81b50939160"
|
||||
};
|
||||
public static RegistryElement Element6 => new(
|
||||
"6",
|
||||
"9b606ef5-7701-4a12-a837-d81b50939160");
|
||||
|
||||
/// <summary>
|
||||
/// Заявление потребителя
|
||||
/// </summary>
|
||||
public static nsiRef Element7 => new()
|
||||
{
|
||||
Code = "7",
|
||||
GUID = "93cd9d85-91b8-4bf9-ae48-c5f1e691949f"
|
||||
};
|
||||
public static RegistryElement Element7 => new(
|
||||
"7",
|
||||
"93cd9d85-91b8-4bf9-ae48-c5f1e691949f");
|
||||
|
||||
/// <summary>
|
||||
/// Нормативный правовой акт
|
||||
/// </summary>
|
||||
public static nsiRef Element8 => new()
|
||||
{
|
||||
Code = "8",
|
||||
GUID = "8b8ee37b-fa79-40cc-b98d-0e51f0c38d03"
|
||||
};
|
||||
public static RegistryElement Element8 => new(
|
||||
"8",
|
||||
"8b8ee37b-fa79-40cc-b98d-0e51f0c38d03");
|
||||
|
||||
/// <summary>
|
||||
/// Разрешение на ввод в эксплуатацию
|
||||
/// </summary>
|
||||
public static nsiRef Element9 => new()
|
||||
{
|
||||
Code = "9",
|
||||
GUID = "16331000-d96e-4a33-a6c7-3cb9eacf4927"
|
||||
};
|
||||
public static RegistryElement Element9 => new(
|
||||
"9",
|
||||
"16331000-d96e-4a33-a6c7-3cb9eacf4927");
|
||||
|
||||
/// <summary>
|
||||
/// Устав
|
||||
/// </summary>
|
||||
public static nsiRef Element10 => new()
|
||||
{
|
||||
Code = "10",
|
||||
GUID = "555638ae-a207-46fa-99bd-88bdb297c45a"
|
||||
};
|
||||
public static RegistryElement Element10 => new(
|
||||
"10",
|
||||
"555638ae-a207-46fa-99bd-88bdb297c45a");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user