Add project
Basic formatting applied. Unnecessary comments have been removed. Suspicious code is covered by TODO.
This commit is contained in:
37
Hcs.Client/ClientApi/HcsFileStoreContext.cs
Normal file
37
Hcs.Client/ClientApi/HcsFileStoreContext.cs
Normal file
@ -0,0 +1,37 @@
|
||||
namespace Hcs.ClientApi
|
||||
{
|
||||
/// <summary>
|
||||
/// Раздел хранилища файлов (Attachment) из документации: "ГИС ЖКХ. Альбом ТФФ 14.5.0.1.docx"
|
||||
/// 2.6 Перечень контекстов хранилищ функциональных подсистем
|
||||
/// </summary>
|
||||
public enum HcsFileStoreContext
|
||||
{
|
||||
/// <summary>
|
||||
/// Управление домами. Лицевые счета.
|
||||
/// </summary>
|
||||
homemanagement,
|
||||
|
||||
/// <summary>
|
||||
/// Управление контентом
|
||||
/// </summary>
|
||||
contentmanagement,
|
||||
|
||||
/// <summary>
|
||||
/// Электронные счета
|
||||
/// </summary>
|
||||
bills,
|
||||
|
||||
/// <summary>
|
||||
/// Запросов о наличии задолженности по оплате ЖКУ
|
||||
/// </summary>
|
||||
debtreq
|
||||
}
|
||||
|
||||
public static class HcsFileStoreContextExtensions
|
||||
{
|
||||
public static string GetName(this HcsFileStoreContext context)
|
||||
{
|
||||
return context.ToString();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user