Rework registry elements

This commit is contained in:
2025-09-08 19:48:57 +09:00
parent 80901cc1f9
commit 30235c3d7e
16 changed files with 158 additions and 178 deletions

View File

@ -1,6 +1,4 @@
using Hcs.Service.Async.HouseManagement;
namespace Hcs.Client.Api.Registry
namespace Hcs.Client.Api.Registry
{
/// <summary>
/// НСИ "Стадия жизненного цикла" (реестровый номер 338).
@ -11,64 +9,50 @@ namespace Hcs.Client.Api.Registry
/// <summary>
/// Эксплуатация
/// </summary>
public static nsiRef Element1 => new()
{
Code = "1",
GUID = "29b18683-5195-4ef4-83fc-71bf45597d46"
};
public static RegistryElement Element1 => new(
"1",
"29b18683-5195-4ef4-83fc-71bf45597d46");
/// <summary>
/// Реконструкция
/// </summary>
public static nsiRef Element2 => new()
{
Code = "2",
GUID = "75764145-f181-47e5-bff1-1306a46eb20e"
};
public static RegistryElement Element2 => new(
"2",
"75764145-f181-47e5-bff1-1306a46eb20e");
/// <summary>
/// Капитальный ремонт с отселением
/// </summary>
public static nsiRef Element3 => new()
{
Code = "3",
GUID = "dee170df-db42-4cd6-9e5e-b62be91b3663"
};
public static RegistryElement Element3 => new(
"3",
"dee170df-db42-4cd6-9e5e-b62be91b3663");
/// <summary>
/// Капитальный ремонт без отселения
/// </summary>
public static nsiRef Element4 => new()
{
Code = "4",
GUID = "91dc91e2-6883-4c84-b711-53f57f28dbe2"
};
public static RegistryElement Element4 => new(
"4",
"91dc91e2-6883-4c84-b711-53f57f28dbe2");
/// <summary>
/// Снос
/// </summary>
public static nsiRef Element5 => new()
{
Code = "5",
GUID = "cc358aa9-10b3-4d6a-bbec-c5f6b14950f6"
};
public static RegistryElement Element5 => new(
"5",
"cc358aa9-10b3-4d6a-bbec-c5f6b14950f6");
/// <summary>
/// Не эксплуатируется, расселен
/// </summary>
public static nsiRef Element6 => new()
{
Code = "6",
GUID = "4bed3d7e-6015-428e-b4b4-7b7aec171c0d"
};
public static RegistryElement Element6 => new(
"6",
"4bed3d7e-6015-428e-b4b4-7b7aec171c0d");
/// <summary>
/// Выведен из эксплуатации
/// </summary>
public static nsiRef Element7 => new()
{
Code = "7",
GUID = "f3edc065-c1a1-4110-96fa-03313ae7a039"
};
public static RegistryElement Element7 => new(
"7",
"f3edc065-c1a1-4110-96fa-03313ae7a039");
}
}