Add refactored new supply contract import

This commit is contained in:
2025-08-26 18:55:03 +09:00
parent 0677cdb42e
commit a59ec723fd
10 changed files with 723 additions and 1 deletions

View File

@ -0,0 +1,29 @@
using Hcs.Service.Async.HouseManagement;
namespace Hcs.Client.Api.Registry
{
/// <summary>
/// НСИ "Показатели качества коммунальных ресурсов" (реестровый номер 276)
/// Взято из https://dom.gosuslugi.ru/opendataapi/nsi-276/v1.
/// </summary>
public static class Registry276
{
/// <summary>
/// Величина тепловой нагрузки
/// </summary>
public static nsiRef Element4 => new()
{
Code = "4",
GUID = "f5624700-3c3f-460f-8313-8fcae00d261c"
};
/// <summary>
/// Диапазон давления теплоносителя в подающем трубопроводе
/// </summary>
public static nsiRef Element10 => new()
{
Code = "10",
GUID = "88443e22-867c-4420-9945-f8c8bc6e7f08"
};
}
}