diff --git a/Hcs.Client/Client/Api/HouseManagementApi.cs b/Hcs.Client/Client/Api/HouseManagementApi.cs new file mode 100644 index 0000000..1109e02 --- /dev/null +++ b/Hcs.Client/Client/Api/HouseManagementApi.cs @@ -0,0 +1,24 @@ +using Hcs.Client.Api.Request.HouseManagement; +using Hcs.Service.Async.HouseManagement; +using System; +using System.Threading; +using System.Threading.Tasks; + +namespace Hcs.Client.Api +{ + // http://open-gkh.ru/HouseManagementServiceAsync/ + public class HouseManagementApi(ClientBase client) : ApiBase(client) + { + /// + /// Возвращает договор ресурсоснабжения по его идентификатору в ГИС ЖКХ + /// + /// Идентификатор договора ресурсоснабжения в ГИС ЖКХ + /// Токен отмены + /// Договор ресурсоснабжения + public async Task ExportSupplyResourceContractDataAsync(Guid contractRootGuid, CancellationToken token = default) + { + var request = new ExportSupplyResourceContractDataRequest(client); + return await request.ExecuteAsync(contractRootGuid, token); + } + } +} diff --git a/Hcs.Client/Client/Api/NsiApi.cs b/Hcs.Client/Client/Api/NsiApi.cs index a3332f6..324634c 100644 --- a/Hcs.Client/Client/Api/NsiApi.cs +++ b/Hcs.Client/Client/Api/NsiApi.cs @@ -16,7 +16,7 @@ namespace Hcs.Client.Api /// Реестровый номер справочника /// Токен отмены /// Данные справочника - public async Task> ExportDataProviderNsiItem(exportDataProviderNsiItemRequestRegistryNumber registryNumber, CancellationToken token = default) + public async Task> ExportDataProviderNsiItemAsync(exportDataProviderNsiItemRequestRegistryNumber registryNumber, CancellationToken token = default) { try { diff --git a/Hcs.Client/Client/Api/NsiCommonApi.cs b/Hcs.Client/Client/Api/NsiCommonApi.cs index 33e541c..317e57a 100644 --- a/Hcs.Client/Client/Api/NsiCommonApi.cs +++ b/Hcs.Client/Client/Api/NsiCommonApi.cs @@ -16,7 +16,7 @@ namespace Hcs.Client.Api /// Группа справочников, где NSI - общесистемный, а NSIRAO - ОЖФ /// Токен отмены /// Данные общесистемного справочника - public async Task ExportNsiItem(int registryNumber, ListGroup listGroup, CancellationToken token = default) + public async Task ExportNsiItemAsync(int registryNumber, ListGroup listGroup, CancellationToken token = default) { try { diff --git a/Hcs.Client/Client/Api/Request/HouseManagement/ExportSupplyResourceContractDataRequest.cs b/Hcs.Client/Client/Api/Request/HouseManagement/ExportSupplyResourceContractDataRequest.cs new file mode 100644 index 0000000..24eb256 --- /dev/null +++ b/Hcs.Client/Client/Api/Request/HouseManagement/ExportSupplyResourceContractDataRequest.cs @@ -0,0 +1,77 @@ +using Hcs.Client.Internal; +using Hcs.Service.Async.HouseManagement; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; + +namespace Hcs.Client.Api.Request.HouseManagement +{ + internal class ExportSupplyResourceContractDataRequest(ClientBase client) : HouseManagementRequestBase(client) + { + protected override bool EnableMinimalResponseWaitDelay => false; + + internal async Task ExecuteAsync(Guid contractRootGuid, CancellationToken token) + { + exportSupplyResourceContractResultType result = null; + + void OnResultReceived(exportSupplyResourceContractResultType[] contracts) + { + result = contracts.Length > 0 ? contracts[0] : null; + } + + await QueryBatchAsync(contractRootGuid, null, null, OnResultReceived, token); + + return result; + } + + private async Task QueryBatchAsync( + Guid? contractRootGuid, string contractNumber, Guid? exportContractRootGuid, + Action onResultReceived, + CancellationToken token) + { + var itemsElementName = new List(); + var items = new List(); + + if (contractRootGuid.HasValue) + { + itemsElementName.Add(ItemsChoiceType32.ContractRootGUID); + items.Add(contractRootGuid.ToString()); + } + + if (!string.IsNullOrEmpty(contractNumber)) + { + itemsElementName.Add(ItemsChoiceType32.ContractNumber); + items.Add(contractNumber); + } + + if (exportContractRootGuid.HasValue) + { + itemsElementName.Add(ItemsChoiceType32.ExportContractRootGUID); + items.Add(exportContractRootGuid.ToString()); + } + + // http://open-gkh.ru/HouseManagement/exportSupplyResourceContractRequest.html + var request = new exportSupplyResourceContractRequest + { + Id = Constants.SIGNED_XML_ELEMENT_ID, + version = "13.1.1.1", + ItemsElementName = [.. itemsElementName], + Items = [.. items] + }; + + var result = await SendAndWaitResultAsync(request, async asyncClient => + { + var ackResponse = await asyncClient.exportSupplyResourceContractDataAsync( + CreateRequestHeader(), request); + return ackResponse.AckRequest.Ack; + }, token); + + var contractResult = result.Items.OfType().First(); + onResultReceived?.Invoke(contractResult.Contract); + + return new PaginationData(contractResult.Item); + } + } +} diff --git a/Hcs.Client/Client/Api/Request/HouseManagement/HouseManagementRequestBase.cs b/Hcs.Client/Client/Api/Request/HouseManagement/HouseManagementRequestBase.cs new file mode 100644 index 0000000..d08ce31 --- /dev/null +++ b/Hcs.Client/Client/Api/Request/HouseManagement/HouseManagementRequestBase.cs @@ -0,0 +1,55 @@ +using Hcs.Client.Api.Request; +using Hcs.Client.Api.Request.Adapter; +using Hcs.Service.Async.HouseManagement; +using System.Threading.Tasks; + +namespace Hcs.Service.Async.HouseManagement +{ +#pragma warning disable IDE1006 + public partial class getStateResult : IGetStateResultMany { } +#pragma warning restore IDE1006 + + public partial class HouseManagementPortsTypeAsyncClient : IAsyncClient + { + public async Task GetStateAsync(RequestHeader header, IGetStateRequest request) + { + return await getStateAsync(header, (getStateRequest)request); + } + } + +#pragma warning disable IDE1006 + public partial class getStateResponse : IGetStateResponse +#pragma warning restore IDE1006 + { + public IGetStateResult GetStateResult => getStateResult; + } + + public partial class AckRequestAck : IAck { } + + public partial class ErrorMessageType : IErrorMessage { } + +#pragma warning disable IDE1006 + public partial class getStateRequest : IGetStateRequest { } +#pragma warning restore IDE1006 +} + +namespace Hcs.Client.Api.Request.HouseManagement +{ + internal class HouseManagementRequestBase(ClientBase client) : + RequestBase(client) + { + protected override EndPoint EndPoint => EndPoint.HomeManagementAsync; + + protected override bool EnableMinimalResponseWaitDelay => true; + + protected override bool CanBeRestarted => true; + + protected override int RestartTimeoutMinutes => 20; + } +} diff --git a/Hcs.Client/Client/Api/Request/Nsi/ExportDataProviderNsiItemRequest.cs b/Hcs.Client/Client/Api/Request/Nsi/ExportDataProviderNsiItemRequest.cs index b31f4a1..add169c 100644 --- a/Hcs.Client/Client/Api/Request/Nsi/ExportDataProviderNsiItemRequest.cs +++ b/Hcs.Client/Client/Api/Request/Nsi/ExportDataProviderNsiItemRequest.cs @@ -19,7 +19,7 @@ namespace Hcs.Client.Api.Request.Nsi RegistryNumber = registryNumber }; - var result = await SendAndWaitResultAsync(request, async(asyncClient) => + var result = await SendAndWaitResultAsync(request, async asyncClient => { var response = await asyncClient.exportDataProviderNsiItemAsync(CreateRequestHeader(), request); return response.AckRequest.Ack; diff --git a/Hcs.Client/Client/Api/Request/Nsi/NsiRequestBase.cs b/Hcs.Client/Client/Api/Request/Nsi/NsiRequestBase.cs index 45c2ba5..1a006df 100644 --- a/Hcs.Client/Client/Api/Request/Nsi/NsiRequestBase.cs +++ b/Hcs.Client/Client/Api/Request/Nsi/NsiRequestBase.cs @@ -5,7 +5,9 @@ using System.Threading.Tasks; namespace Hcs.Service.Async.Nsi { +#pragma warning disable IDE1006 public partial class getStateResult : IGetStateResultMany { } +#pragma warning restore IDE1006 public partial class NsiPortsTypeAsyncClient : IAsyncClient { @@ -15,7 +17,9 @@ namespace Hcs.Service.Async.Nsi } } +#pragma warning disable IDE1006 public partial class getStateResponse : IGetStateResponse +#pragma warning restore IDE1006 { public IGetStateResult GetStateResult => getStateResult; } @@ -24,7 +28,9 @@ namespace Hcs.Service.Async.Nsi public partial class ErrorMessageType : IErrorMessage { } +#pragma warning disable IDE1006 public partial class getStateRequest : IGetStateRequest { } +#pragma warning restore IDE1006 } namespace Hcs.Client.Api.Request.Nsi diff --git a/Hcs.Client/Client/Api/Request/NsiCommon/ExportNsiItemRequest.cs b/Hcs.Client/Client/Api/Request/NsiCommon/ExportNsiItemRequest.cs index 451d415..8b5aa8b 100644 --- a/Hcs.Client/Client/Api/Request/NsiCommon/ExportNsiItemRequest.cs +++ b/Hcs.Client/Client/Api/Request/NsiCommon/ExportNsiItemRequest.cs @@ -18,7 +18,7 @@ namespace Hcs.Client.Api.Request.NsiCommon ListGroup = listGroup }; - var result = await SendAndWaitResultAsync(request, async (asyncClient) => + var result = await SendAndWaitResultAsync(request, async asyncClient => { var response = await asyncClient.exportNsiItemAsync(CreateRequestHeader(), request); return response.AckRequest.Ack; diff --git a/Hcs.Client/Client/Api/Request/PaginationData.cs b/Hcs.Client/Client/Api/Request/PaginationData.cs new file mode 100644 index 0000000..a22eb5f --- /dev/null +++ b/Hcs.Client/Client/Api/Request/PaginationData.cs @@ -0,0 +1,54 @@ +using System; + +namespace Hcs.Client.Api.Request +{ + internal class PaginationData + { + /// + /// Состояние, указывающее на то, что это последняя страница + /// + internal bool IsLastPage { get; private set; } + + /// + /// Идентификатор следующей страницы + /// + internal Guid NextGuid { get; private set; } + + public PaginationData(object item) + { + if (item == null) + { + throw new System.Exception($"[{nameof(PaginationData)}] item is null"); + } + else if (item is bool boolItem) + { + if (boolItem == false) + { + throw new System.Exception($"[{nameof(PaginationData)}] item is false"); + } + + IsLastPage = true; + } + else if (item is string stringItem) + { + IsLastPage = false; + NextGuid = Guid.Parse(stringItem); + } + else + { + throw new System.Exception($"[{nameof(PaginationData)}] failed to handle item of {item.GetType().FullName} type"); + } + } + + internal static PaginationData CreateLastPageData() + { + return new PaginationData(true); + } + + public override string ToString() + { + return $"[{nameof(PaginationData)}] {nameof(IsLastPage)} = {IsLastPage}" + + (IsLastPage ? "" : $", {nameof(NextGuid)} = {NextGuid}"); + } + } +} diff --git a/Hcs.Client/Client/Api/Request/RequestBase.cs b/Hcs.Client/Client/Api/Request/RequestBase.cs index c127128..4ab00e2 100644 --- a/Hcs.Client/Client/Api/Request/RequestBase.cs +++ b/Hcs.Client/Client/Api/Request/RequestBase.cs @@ -130,38 +130,15 @@ namespace Hcs.Client.Api.Request { try { - if (request == null) + if (CanBeRestarted) { - throw new ArgumentNullException(nameof(request)); + return await RunRepeatableTaskInsistentlyAsync( + async () => await ExecuteSendAndWaitResultAsync(request, sender, token), token); } - - var version = RequestHelper.GetRequestVersionString(request); - client.TryLog($"Executing request {RemoteAddress.Uri}/{request.GetType().Name} of version {version}..."); - - TAck ack; - - var stopWatch = System.Diagnostics.Stopwatch.StartNew(); - using (var asyncClient = CreateAsyncClient()) + else { - ack = await sender(asyncClient); + return await ExecuteSendAndWaitResultAsync(request, sender, token); } - stopWatch.Stop(); - - client.TryLog($"Request executed in {stopWatch.ElapsedMilliseconds} ms, result GUID is {ack.MessageGUID}"); - - var result = await WaitForResultAsync(ack, true, token); - if (result is IQueryable queryableResult) - { - queryableResult.OfType().ToList().ForEach(x => - { - throw RemoteException.CreateNew(x.ErrorCode, x.Description); - }); - } - else if (result is TErrorMessage x) - { - throw RemoteException.CreateNew(x.ErrorCode, x.Description); - } - return result; } catch (RestartTimeoutException e) { @@ -175,6 +152,108 @@ namespace Hcs.Client.Api.Request } } + /// + /// Для запросов к серверу которые можно направлять несколько раз, разрешаем + /// серверу аномально отказаться. Предполагается, что здесь мы игнорируем + /// только жесткие отказы серверной инфраструктуры, которые указывают + /// что запрос даже не был принят в обработку. Также все запросы на + /// чтение можно повторять в случае их серверных системных ошибок. + /// + protected async Task RunRepeatableTaskInsistentlyAsync( + Func> func, CancellationToken token) + { + var afterErrorDelaySec = 120; + for (var attempt = 1; ; attempt++) + { + try + { + return await func(); + } + catch (System.Exception e) + { + if (CanIgnoreSuchException(e, out string marker)) + { + client.TryLog($"Ignoring error of attempt #{attempt} with type [{marker}]"); + client.TryLog($"Waiting {afterErrorDelaySec} sec until next attempt..."); + + await Task.Delay(afterErrorDelaySec * 1000, token); + + continue; + } + + if (e is RestartTimeoutException) + { + throw e; + } + + if (e is RemoteException) + { + throw RemoteException.CreateNew(e as RemoteException); + } + + throw new System.Exception("Cannot ignore this exception", e); + } + } + } + + private bool CanIgnoreSuchException(System.Exception e, out string resultMarker) + { + foreach (var marker in ignorableSystemErrorMarkers) + { + var found = Util.EnumerateInnerExceptions(e).Find( + x => x.Message != null && x.Message.Contains(marker)); + if (found != null) + { + resultMarker = marker; + + return true; + } + } + + resultMarker = null; + + return false; + } + + private async Task ExecuteSendAndWaitResultAsync( + object request, + Func> sender, + CancellationToken token) + { + if (request == null) + { + throw new ArgumentNullException(nameof(request)); + } + + var version = RequestHelper.GetRequestVersionString(request); + client.TryLog($"Executing request {RemoteAddress.Uri}/{request.GetType().Name} of version {version}..."); + + TAck ack; + + var stopWatch = System.Diagnostics.Stopwatch.StartNew(); + using (var asyncClient = CreateAsyncClient()) + { + ack = await sender(asyncClient); + } + stopWatch.Stop(); + + client.TryLog($"Request executed in {stopWatch.ElapsedMilliseconds} ms, result GUID is {ack.MessageGUID}"); + + var result = await WaitForResultAsync(ack, true, token); + if (result is IQueryable queryableResult) + { + queryableResult.OfType().ToList().ForEach(x => + { + throw RemoteException.CreateNew(x.ErrorCode, x.Description); + }); + } + else if (result is TErrorMessage x) + { + throw RemoteException.CreateNew(x.ErrorCode, x.Description); + } + return result; + } + private TAsyncClient CreateAsyncClient() { var asyncClient = (TAsyncClient)Activator.CreateInstance(typeof(TAsyncClient), binding, RemoteAddress); @@ -340,68 +419,5 @@ namespace Hcs.Client.Api.Request } } } - - /// - /// Для запросов к серверу которые можно направлять несколько раз, разрешаем - /// серверу аномально отказаться. Предполагается, что здесь мы игнорируем - /// только жесткие отказы серверной инфраструктуры, которые указывают - /// что запрос даже не был принят в обработку. Также все запросы на - /// чтение можно повторять в случае их серверных системных ошибок. - /// - protected async Task RunRepeatableTaskInsistentlyAsync( - Func> func, CancellationToken token) - { - var afterErrorDelaySec = 120; - for (var attempt = 1; ; attempt++) - { - try - { - return await func(); - } - catch (System.Exception e) - { - if (CanIgnoreSuchException(e, out string marker)) - { - client.TryLog($"Ignoring error of attempt #{attempt} with type [{marker}]"); - client.TryLog($"Waiting {afterErrorDelaySec} sec until next attempt..."); - - await Task.Delay(afterErrorDelaySec * 1000, token); - - continue; - } - - if (e is RestartTimeoutException) - { - throw e; - } - - if (e is RemoteException) - { - throw RemoteException.CreateNew(e as RemoteException); - } - - throw new System.Exception("Cannot ignore this exception", e); - } - } - } - - private bool CanIgnoreSuchException(System.Exception e, out string resultMarker) - { - foreach (var marker in ignorableSystemErrorMarkers) - { - var found = Util.EnumerateInnerExceptions(e).Find( - x => x.Message != null && x.Message.Contains(marker)); - if (found != null) - { - resultMarker = marker; - - return true; - } - } - - resultMarker = null; - - return false; - } } } diff --git a/Hcs.Client/Client/UniClient.cs b/Hcs.Client/Client/UniClient.cs index add8a19..4802882 100644 --- a/Hcs.Client/Client/UniClient.cs +++ b/Hcs.Client/Client/UniClient.cs @@ -11,6 +11,8 @@ namespace Hcs.Client /// public class UniClient : ClientBase { + public HouseManagementApi HouseManagement => new(this); + public NsiApi Nsi => new(this); public NsiCommonApi NsiCommon => new(this); diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.AckRequest.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.AckRequest.datasource new file mode 100644 index 0000000..c453785 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.AckRequest.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.AckRequest, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.ResultHeader.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.ResultHeader.datasource new file mode 100644 index 0000000..135bc49 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.ResultHeader.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.ResultHeader, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.demolishHouseResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.demolishHouseResponse.datasource new file mode 100644 index 0000000..01fe740 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.demolishHouseResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.demolishHouseResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportAccountDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportAccountDataResponse.datasource new file mode 100644 index 0000000..18f4b93 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportAccountDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportAccountDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesResponse.datasource new file mode 100644 index 0000000..3fcd330 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseResponse.datasource new file mode 100644 index 0000000..4b259c1 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefBasicHouseResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefBasicHouseResponse.datasource new file mode 100644 index 0000000..50b8486 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefBasicHouseResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportBriefBasicHouseResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefLivingHouseResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefLivingHouseResponse.datasource new file mode 100644 index 0000000..a409fa8 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefLivingHouseResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportBriefLivingHouseResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractResponse.datasource new file mode 100644 index 0000000..d5bc587 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractResponse.datasource new file mode 100644 index 0000000..aca1dcb --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportCAChDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportCAChDataResponse.datasource new file mode 100644 index 0000000..531c92b --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportCAChDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportCAChDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportHouseDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportHouseDataResponse.datasource new file mode 100644 index 0000000..8bdcfc8 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportHouseDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportHouseDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataResponse.datasource new file mode 100644 index 0000000..d60bbdb --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataResponse.datasource new file mode 100644 index 0000000..2f136c5 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportOwnerDecisionResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportOwnerDecisionResponse.datasource new file mode 100644 index 0000000..d5ba8df --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportOwnerDecisionResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportOwnerDecisionResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportOwnerRefusalResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportOwnerRefusalResponse.datasource new file mode 100644 index 0000000..e3fc224 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportOwnerRefusalResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportOwnerRefusalResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChResponse.datasource new file mode 100644 index 0000000..7ed89dc --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportStatusCAChDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportStatusCAChDataResponse.datasource new file mode 100644 index 0000000..227c1c3 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportStatusCAChDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportStatusCAChDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractResponse.datasource new file mode 100644 index 0000000..3fe8853 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataResponse.datasource new file mode 100644 index 0000000..09f3c8e --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataResponse.datasource new file mode 100644 index 0000000..35ae597 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportVotingMessageResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportVotingMessageResponse.datasource new file mode 100644 index 0000000..908f65c --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportVotingMessageResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportVotingMessageResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportVotingProtocolResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportVotingProtocolResponse.datasource new file mode 100644 index 0000000..954cbe4 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.exportVotingProtocolResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.exportVotingProtocolResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.getStateResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.getStateResponse.datasource new file mode 100644 index 0000000..95c1471 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.getStateResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.getStateResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.getStateResult.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.getStateResult.datasource new file mode 100644 index 0000000..f3633ea --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.getStateResult.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.getStateResult, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importAccountDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importAccountDataResponse.datasource new file mode 100644 index 0000000..5462d91 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importAccountDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importAccountDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importAccountIndividualServicesResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importAccountIndividualServicesResponse.datasource new file mode 100644 index 0000000..ae49ee7 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importAccountIndividualServicesResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importAccountIndividualServicesResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importCharterDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importCharterDataResponse.datasource new file mode 100644 index 0000000..af38a65 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importCharterDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importCharterDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importContractDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importContractDataResponse.datasource new file mode 100644 index 0000000..bd19a9b --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importContractDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importContractDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importExternalVotingProtocolResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importExternalVotingProtocolResponse.datasource new file mode 100644 index 0000000..fd064d9 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importExternalVotingProtocolResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importExternalVotingProtocolResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importHouseESPDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importHouseESPDataResponse.datasource new file mode 100644 index 0000000..f9e003f --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importHouseESPDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importHouseESPDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importHouseOMSDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importHouseOMSDataResponse.datasource new file mode 100644 index 0000000..61abbc2 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importHouseOMSDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importHouseOMSDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importHouseUODataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importHouseUODataResponse.datasource new file mode 100644 index 0000000..37cfc3c --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importHouseUODataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importHouseUODataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importMeteringDeviceDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importMeteringDeviceDataResponse.datasource new file mode 100644 index 0000000..658b547 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importMeteringDeviceDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importMeteringDeviceDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importNotificationDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importNotificationDataResponse.datasource new file mode 100644 index 0000000..e9d1b59 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importNotificationDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importNotificationDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importOwnerDecisionResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importOwnerDecisionResponse.datasource new file mode 100644 index 0000000..0dbdf92 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importOwnerDecisionResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importOwnerDecisionResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importOwnerRefusalResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importOwnerRefusalResponse.datasource new file mode 100644 index 0000000..414dc18 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importOwnerRefusalResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importOwnerRefusalResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importPublicPropertyContractResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importPublicPropertyContractResponse.datasource new file mode 100644 index 0000000..a77565f --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importPublicPropertyContractResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importPublicPropertyContractResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataResponse.datasource new file mode 100644 index 0000000..9070d25 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataResponse.datasource new file mode 100644 index 0000000..cec6313 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataResponse.datasource new file mode 100644 index 0000000..f9645fa --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importVotingMessageResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importVotingMessageResponse.datasource new file mode 100644 index 0000000..aabaad9 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importVotingMessageResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importVotingMessageResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importVotingProtocolResponse.datasource b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importVotingProtocolResponse.datasource new file mode 100644 index 0000000..887eecb --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Hcs.Service.Async.HouseManagement.importVotingProtocolResponse.datasource @@ -0,0 +1,10 @@ + + + + Hcs.Service.Async.HouseManagement.importVotingProtocolResponse, Connected Services.Service.Async.HouseManagement.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Reference.cs b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Reference.cs new file mode 100644 index 0000000..0383180 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Reference.cs @@ -0,0 +1,62330 @@ +//------------------------------------------------------------------------------ +// +// Этот код создан программой. +// Исполняемая версия:4.0.30319.42000 +// +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. +// +//------------------------------------------------------------------------------ + +namespace Hcs.Service.Async.HouseManagement { + + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class Fault : object, System.ComponentModel.INotifyPropertyChanged { + + private string errorCodeField; + + private string errorMessageField; + + private string stackTraceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ErrorCode { + get { + return this.errorCodeField; + } + set { + this.errorCodeField = value; + this.RaisePropertyChanged("ErrorCode"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ErrorMessage { + get { + return this.errorMessageField; + } + set { + this.errorMessageField = value; + this.RaisePropertyChanged("ErrorMessage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string StackTrace { + get { + return this.stackTraceField; + } + set { + this.stackTraceField = value; + this.RaisePropertyChanged("StackTrace"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NsiElementAttachmentFieldType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NsiElementFiasAddressRefFieldType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NsiElementOkeiRefFieldType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NsiElementNsiRefFieldType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NsiElementNsiFieldType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NsiElementEnumFieldType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NsiElementIntegerFieldType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NsiElementDateFieldType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NsiElementFloatFieldType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NsiElementBooleanFieldType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NsiElementStringFieldType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public abstract partial class NsiElementFieldType : object, System.ComponentModel.INotifyPropertyChanged { + + private string nameField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Name { + get { + return this.nameField; + } + set { + this.nameField = value; + this.RaisePropertyChanged("Name"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementAttachmentFieldType : NsiElementFieldType { + + private AttachmentType documentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttachmentType Document { + get { + return this.documentField; + } + set { + this.documentField = value; + this.RaisePropertyChanged("Document"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class AttachmentType : object, System.ComponentModel.INotifyPropertyChanged { + + private string nameField; + + private string descriptionField; + + private Attachment attachmentField; + + private string attachmentHASHField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Name { + get { + return this.nameField; + } + set { + this.nameField = value; + this.RaisePropertyChanged("Name"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Description { + get { + return this.descriptionField; + } + set { + this.descriptionField = value; + this.RaisePropertyChanged("Description"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public Attachment Attachment { + get { + return this.attachmentField; + } + set { + this.attachmentField = value; + this.RaisePropertyChanged("Attachment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AttachmentHASH { + get { + return this.attachmentHASHField; + } + set { + this.attachmentHASHField = value; + this.RaisePropertyChanged("AttachmentHASH"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class Attachment : object, System.ComponentModel.INotifyPropertyChanged { + + private string attachmentGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string AttachmentGUID { + get { + return this.attachmentGUIDField; + } + set { + this.attachmentGUIDField = value; + this.RaisePropertyChanged("AttachmentGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementFiasAddressRefFieldType : NsiElementFieldType { + + private NsiElementFiasAddressRefFieldTypeNsiRef nsiRefField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public NsiElementFiasAddressRefFieldTypeNsiRef NsiRef { + get { + return this.nsiRefField; + } + set { + this.nsiRefField = value; + this.RaisePropertyChanged("NsiRef"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementFiasAddressRefFieldTypeNsiRef : object, System.ComponentModel.INotifyPropertyChanged { + + private string guidField; + + private string aoGuidField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Guid { + get { + return this.guidField; + } + set { + this.guidField = value; + this.RaisePropertyChanged("Guid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string aoGuid { + get { + return this.aoGuidField; + } + set { + this.aoGuidField = value; + this.RaisePropertyChanged("aoGuid"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementOkeiRefFieldType : NsiElementFieldType { + + private string codeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Code { + get { + return this.codeField; + } + set { + this.codeField = value; + this.RaisePropertyChanged("Code"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementNsiRefFieldType : NsiElementFieldType { + + private NsiElementNsiRefFieldTypeNsiRef nsiRefField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public NsiElementNsiRefFieldTypeNsiRef NsiRef { + get { + return this.nsiRefField; + } + set { + this.nsiRefField = value; + this.RaisePropertyChanged("NsiRef"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementNsiRefFieldTypeNsiRef : object, System.ComponentModel.INotifyPropertyChanged { + + private string nsiItemRegistryNumberField; + + private nsiRef refField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="positiveInteger", Order=0)] + public string NsiItemRegistryNumber { + get { + return this.nsiItemRegistryNumberField; + } + set { + this.nsiItemRegistryNumberField = value; + this.RaisePropertyChanged("NsiItemRegistryNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef Ref { + get { + return this.refField; + } + set { + this.refField = value; + this.RaisePropertyChanged("Ref"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class nsiRef : object, System.ComponentModel.INotifyPropertyChanged { + + private string codeField; + + private string gUIDField; + + private string nameField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Code { + get { + return this.codeField; + } + set { + this.codeField = value; + this.RaisePropertyChanged("Code"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string GUID { + get { + return this.gUIDField; + } + set { + this.gUIDField = value; + this.RaisePropertyChanged("GUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Name { + get { + return this.nameField; + } + set { + this.nameField = value; + this.RaisePropertyChanged("Name"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementNsiFieldType : NsiElementFieldType { + + private NsiElementNsiFieldTypeNsiRef nsiRefField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public NsiElementNsiFieldTypeNsiRef NsiRef { + get { + return this.nsiRefField; + } + set { + this.nsiRefField = value; + this.RaisePropertyChanged("NsiRef"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementNsiFieldTypeNsiRef : object, System.ComponentModel.INotifyPropertyChanged { + + private string nsiItemRegistryNumberField; + + private ListGroup listGroupField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="positiveInteger", Order=0)] + public string NsiItemRegistryNumber { + get { + return this.nsiItemRegistryNumberField; + } + set { + this.nsiItemRegistryNumberField = value; + this.RaisePropertyChanged("NsiItemRegistryNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public ListGroup ListGroup { + get { + return this.listGroupField; + } + set { + this.listGroupField = value; + this.RaisePropertyChanged("ListGroup"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public enum ListGroup { + + /// + NSI, + + /// + NSIRAO, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementEnumFieldType : NsiElementFieldType { + + private NsiElementEnumFieldTypePosition[] positionField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Position", Order=0)] + public NsiElementEnumFieldTypePosition[] Position { + get { + return this.positionField; + } + set { + this.positionField = value; + this.RaisePropertyChanged("Position"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementEnumFieldTypePosition : object, System.ComponentModel.INotifyPropertyChanged { + + private object gUIDField; + + private string valueField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public object GUID { + get { + return this.gUIDField; + } + set { + this.gUIDField = value; + this.RaisePropertyChanged("GUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Value { + get { + return this.valueField; + } + set { + this.valueField = value; + this.RaisePropertyChanged("Value"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementIntegerFieldType : NsiElementFieldType { + + private string valueField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)] + public string Value { + get { + return this.valueField; + } + set { + this.valueField = value; + this.RaisePropertyChanged("Value"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementDateFieldType : NsiElementFieldType { + + private System.DateTime valueField; + + private bool valueFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime Value { + get { + return this.valueField; + } + set { + this.valueField = value; + this.RaisePropertyChanged("Value"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ValueSpecified { + get { + return this.valueFieldSpecified; + } + set { + this.valueFieldSpecified = value; + this.RaisePropertyChanged("ValueSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementFloatFieldType : NsiElementFieldType { + + private float valueField; + + private bool valueFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public float Value { + get { + return this.valueField; + } + set { + this.valueField = value; + this.RaisePropertyChanged("Value"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ValueSpecified { + get { + return this.valueFieldSpecified; + } + set { + this.valueFieldSpecified = value; + this.RaisePropertyChanged("ValueSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementBooleanFieldType : NsiElementFieldType { + + private bool valueField; + + private bool valueFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool Value { + get { + return this.valueField; + } + set { + this.valueField = value; + this.RaisePropertyChanged("Value"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ValueSpecified { + get { + return this.valueFieldSpecified; + } + set { + this.valueFieldSpecified = value; + this.RaisePropertyChanged("ValueSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementStringFieldType : NsiElementFieldType { + + private string valueField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Value { + get { + return this.valueField; + } + set { + this.valueField = value; + this.RaisePropertyChanged("Value"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiElementType : object, System.ComponentModel.INotifyPropertyChanged { + + private string codeField; + + private string gUIDField; + + private System.DateTime[] itemsField; + + private ItemsChoiceType22[] itemsElementNameField; + + private bool isActualField; + + private NsiElementFieldType[] nsiElementFieldField; + + private NsiElementType[] childElementField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Code { + get { + return this.codeField; + } + set { + this.codeField = value; + this.RaisePropertyChanged("Code"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string GUID { + get { + return this.gUIDField; + } + set { + this.gUIDField = value; + this.RaisePropertyChanged("GUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("EndDate", typeof(System.DateTime), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Modified", typeof(System.DateTime), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(System.DateTime), Order=2)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public System.DateTime[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=3)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType22[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool IsActual { + get { + return this.isActualField; + } + set { + this.isActualField = value; + this.RaisePropertyChanged("IsActual"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("NsiElementField", Order=5)] + public NsiElementFieldType[] NsiElementField { + get { + return this.nsiElementFieldField; + } + set { + this.nsiElementFieldField = value; + this.RaisePropertyChanged("NsiElementField"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ChildElement", Order=6)] + public NsiElementType[] ChildElement { + get { + return this.childElementField; + } + set { + this.childElementField = value; + this.RaisePropertyChanged("ChildElement"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/", IncludeInSchema=false)] + public enum ItemsChoiceType22 { + + /// + EndDate, + + /// + Modified, + + /// + StartDate, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiItemType : object, System.ComponentModel.INotifyPropertyChanged { + + private string nsiItemRegistryNumberField; + + private System.DateTime createdField; + + private NsiElementType[] nsiElementField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="positiveInteger", Order=0)] + public string NsiItemRegistryNumber { + get { + return this.nsiItemRegistryNumberField; + } + set { + this.nsiItemRegistryNumberField = value; + this.RaisePropertyChanged("NsiItemRegistryNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime Created { + get { + return this.createdField; + } + set { + this.createdField = value; + this.RaisePropertyChanged("Created"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("NsiElement", Order=2)] + public NsiElementType[] NsiElement { + get { + return this.nsiElementField; + } + set { + this.nsiElementField = value; + this.RaisePropertyChanged("NsiElement"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiListType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime createdField; + + private NsiItemInfoType[] nsiItemInfoField; + + private ListGroup listGroupField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime Created { + get { + return this.createdField; + } + set { + this.createdField = value; + this.RaisePropertyChanged("Created"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("NsiItemInfo", Order=1)] + public NsiItemInfoType[] NsiItemInfo { + get { + return this.nsiItemInfoField; + } + set { + this.nsiItemInfoField = value; + this.RaisePropertyChanged("NsiItemInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public ListGroup ListGroup { + get { + return this.listGroupField; + } + set { + this.listGroupField = value; + this.RaisePropertyChanged("ListGroup"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/nsi-base/")] + public partial class NsiItemInfoType : object, System.ComponentModel.INotifyPropertyChanged { + + private string registryNumberField; + + private string nameField; + + private System.DateTime modifiedField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="positiveInteger", Order=0)] + public string RegistryNumber { + get { + return this.registryNumberField; + } + set { + this.registryNumberField = value; + this.RaisePropertyChanged("RegistryNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Name { + get { + return this.nameField; + } + set { + this.nameField = value; + this.RaisePropertyChanged("Name"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public System.DateTime Modified { + get { + return this.modifiedField; + } + set { + this.modifiedField = value; + this.RaisePropertyChanged("Modified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class SignaturePropertyType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.Xml.XmlElement[] itemsField; + + private string[] textField; + + private string targetField; + + private string idField; + + /// + [System.Xml.Serialization.XmlAnyElementAttribute(Order=0)] + public System.Xml.XmlElement[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlTextAttribute()] + public string[] Text { + get { + return this.textField; + } + set { + this.textField = value; + this.RaisePropertyChanged("Text"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="anyURI")] + public string Target { + get { + return this.targetField; + } + set { + this.targetField = value; + this.RaisePropertyChanged("Target"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="ID")] + public string Id { + get { + return this.idField; + } + set { + this.idField = value; + this.RaisePropertyChanged("Id"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class SignaturePropertiesType : object, System.ComponentModel.INotifyPropertyChanged { + + private SignaturePropertyType[] signaturePropertyField; + + private string idField; + + /// + [System.Xml.Serialization.XmlElementAttribute("SignatureProperty", Order=0)] + public SignaturePropertyType[] SignatureProperty { + get { + return this.signaturePropertyField; + } + set { + this.signaturePropertyField = value; + this.RaisePropertyChanged("SignatureProperty"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="ID")] + public string Id { + get { + return this.idField; + } + set { + this.idField = value; + this.RaisePropertyChanged("Id"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class ManifestType : object, System.ComponentModel.INotifyPropertyChanged { + + private ReferenceType[] referenceField; + + private string idField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Reference", Order=0)] + public ReferenceType[] Reference { + get { + return this.referenceField; + } + set { + this.referenceField = value; + this.RaisePropertyChanged("Reference"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="ID")] + public string Id { + get { + return this.idField; + } + set { + this.idField = value; + this.RaisePropertyChanged("Id"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class ReferenceType : object, System.ComponentModel.INotifyPropertyChanged { + + private TransformType[] transformsField; + + private DigestMethodType digestMethodField; + + private byte[] digestValueField; + + private string idField; + + private string uRIField; + + private string typeField; + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=0)] + [System.Xml.Serialization.XmlArrayItemAttribute("Transform", IsNullable=false)] + public TransformType[] Transforms { + get { + return this.transformsField; + } + set { + this.transformsField = value; + this.RaisePropertyChanged("Transforms"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public DigestMethodType DigestMethod { + get { + return this.digestMethodField; + } + set { + this.digestMethodField = value; + this.RaisePropertyChanged("DigestMethod"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", Order=2)] + public byte[] DigestValue { + get { + return this.digestValueField; + } + set { + this.digestValueField = value; + this.RaisePropertyChanged("DigestValue"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="ID")] + public string Id { + get { + return this.idField; + } + set { + this.idField = value; + this.RaisePropertyChanged("Id"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="anyURI")] + public string URI { + get { + return this.uRIField; + } + set { + this.uRIField = value; + this.RaisePropertyChanged("URI"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="anyURI")] + public string Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class TransformType : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private string[] textField; + + private string algorithmField; + + /// + [System.Xml.Serialization.XmlAnyElementAttribute(Order=0)] + [System.Xml.Serialization.XmlElementAttribute("XPath", typeof(string), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlTextAttribute()] + public string[] Text { + get { + return this.textField; + } + set { + this.textField = value; + this.RaisePropertyChanged("Text"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="anyURI")] + public string Algorithm { + get { + return this.algorithmField; + } + set { + this.algorithmField = value; + this.RaisePropertyChanged("Algorithm"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class DigestMethodType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.Xml.XmlNode[] anyField; + + private string algorithmField; + + /// + [System.Xml.Serialization.XmlTextAttribute()] + [System.Xml.Serialization.XmlAnyElementAttribute(Order=0)] + public System.Xml.XmlNode[] Any { + get { + return this.anyField; + } + set { + this.anyField = value; + this.RaisePropertyChanged("Any"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="anyURI")] + public string Algorithm { + get { + return this.algorithmField; + } + set { + this.algorithmField = value; + this.RaisePropertyChanged("Algorithm"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-registry-base/")] + public partial class EntpsType : object, System.ComponentModel.INotifyPropertyChanged { + + private string surnameField; + + private string firstNameField; + + private string patronymicField; + + private EntpsTypeSex sexField; + + private bool sexFieldSpecified; + + private string oGRNIPField; + + private System.DateTime stateRegistrationDateField; + + private bool stateRegistrationDateFieldSpecified; + + private string iNNField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Surname { + get { + return this.surnameField; + } + set { + this.surnameField = value; + this.RaisePropertyChanged("Surname"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FirstName { + get { + return this.firstNameField; + } + set { + this.firstNameField = value; + this.RaisePropertyChanged("FirstName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Patronymic { + get { + return this.patronymicField; + } + set { + this.patronymicField = value; + this.RaisePropertyChanged("Patronymic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public EntpsTypeSex Sex { + get { + return this.sexField; + } + set { + this.sexField = value; + this.RaisePropertyChanged("Sex"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SexSpecified { + get { + return this.sexFieldSpecified; + } + set { + this.sexFieldSpecified = value; + this.RaisePropertyChanged("SexSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=4)] + public string OGRNIP { + get { + return this.oGRNIPField; + } + set { + this.oGRNIPField = value; + this.RaisePropertyChanged("OGRNIP"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=5)] + public System.DateTime StateRegistrationDate { + get { + return this.stateRegistrationDateField; + } + set { + this.stateRegistrationDateField = value; + this.RaisePropertyChanged("StateRegistrationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StateRegistrationDateSpecified { + get { + return this.stateRegistrationDateFieldSpecified; + } + set { + this.stateRegistrationDateFieldSpecified = value; + this.RaisePropertyChanged("StateRegistrationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=6)] + public string INN { + get { + return this.iNNField; + } + set { + this.iNNField = value; + this.RaisePropertyChanged("INN"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-registry-base/")] + public enum EntpsTypeSex { + + /// + M, + + /// + F, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-registry-base/")] + public partial class ForeignBranchType : object, System.ComponentModel.INotifyPropertyChanged { + + private string fullNameField; + + private string shortNameField; + + private string nZAField; + + private string iNNField; + + private string kPPField; + + private string addressField; + + private string fIASHouseGuidField; + + private System.DateTime accreditationStartDateField; + + private System.DateTime accreditationEndDateField; + + private bool accreditationEndDateFieldSpecified; + + private string registrationCountryField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FullName { + get { + return this.fullNameField; + } + set { + this.fullNameField = value; + this.RaisePropertyChanged("FullName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ShortName { + get { + return this.shortNameField; + } + set { + this.shortNameField = value; + this.RaisePropertyChanged("ShortName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=2)] + public string NZA { + get { + return this.nZAField; + } + set { + this.nZAField = value; + this.RaisePropertyChanged("NZA"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=3)] + public string INN { + get { + return this.iNNField; + } + set { + this.iNNField = value; + this.RaisePropertyChanged("INN"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=4)] + public string KPP { + get { + return this.kPPField; + } + set { + this.kPPField = value; + this.RaisePropertyChanged("KPP"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string Address { + get { + return this.addressField; + } + set { + this.addressField = value; + this.RaisePropertyChanged("Address"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=7)] + public System.DateTime AccreditationStartDate { + get { + return this.accreditationStartDateField; + } + set { + this.accreditationStartDateField = value; + this.RaisePropertyChanged("AccreditationStartDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=8)] + public System.DateTime AccreditationEndDate { + get { + return this.accreditationEndDateField; + } + set { + this.accreditationEndDateField = value; + this.RaisePropertyChanged("AccreditationEndDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AccreditationEndDateSpecified { + get { + return this.accreditationEndDateFieldSpecified; + } + set { + this.accreditationEndDateFieldSpecified = value; + this.RaisePropertyChanged("AccreditationEndDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public string RegistrationCountry { + get { + return this.registrationCountryField; + } + set { + this.registrationCountryField = value; + this.RaisePropertyChanged("RegistrationCountry"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-registry-base/")] + public partial class SubsidiaryType : object, System.ComponentModel.INotifyPropertyChanged { + + private string fullNameField; + + private string shortNameField; + + private string oGRNField; + + private string iNNField; + + private string kPPField; + + private string oKOPFField; + + private string addressField; + + private string fIASHouseGuidField; + + private System.DateTime activityEndDateField; + + private bool activityEndDateFieldSpecified; + + private SubsidiaryTypeSourceName sourceNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FullName { + get { + return this.fullNameField; + } + set { + this.fullNameField = value; + this.RaisePropertyChanged("FullName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ShortName { + get { + return this.shortNameField; + } + set { + this.shortNameField = value; + this.RaisePropertyChanged("ShortName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=2)] + public string OGRN { + get { + return this.oGRNField; + } + set { + this.oGRNField = value; + this.RaisePropertyChanged("OGRN"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=3)] + public string INN { + get { + return this.iNNField; + } + set { + this.iNNField = value; + this.RaisePropertyChanged("INN"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=4)] + public string KPP { + get { + return this.kPPField; + } + set { + this.kPPField = value; + this.RaisePropertyChanged("KPP"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=5)] + public string OKOPF { + get { + return this.oKOPFField; + } + set { + this.oKOPFField = value; + this.RaisePropertyChanged("OKOPF"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string Address { + get { + return this.addressField; + } + set { + this.addressField = value; + this.RaisePropertyChanged("Address"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=8)] + public System.DateTime ActivityEndDate { + get { + return this.activityEndDateField; + } + set { + this.activityEndDateField = value; + this.RaisePropertyChanged("ActivityEndDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ActivityEndDateSpecified { + get { + return this.activityEndDateFieldSpecified; + } + set { + this.activityEndDateFieldSpecified = value; + this.RaisePropertyChanged("ActivityEndDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public SubsidiaryTypeSourceName SourceName { + get { + return this.sourceNameField; + } + set { + this.sourceNameField = value; + this.RaisePropertyChanged("SourceName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-registry-base/")] + public partial class SubsidiaryTypeSourceName : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime dateField; + + private string valueField; + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="date")] + public System.DateTime Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlTextAttribute()] + public string Value { + get { + return this.valueField; + } + set { + this.valueField = value; + this.RaisePropertyChanged("Value"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-registry-base/")] + public partial class LegalType : object, System.ComponentModel.INotifyPropertyChanged { + + private string shortNameField; + + private string fullNameField; + + private string commercialNameField; + + private string oGRNField; + + private System.DateTime stateRegistrationDateField; + + private bool stateRegistrationDateFieldSpecified; + + private string iNNField; + + private string kPPField; + + private string oKOPFField; + + private string addressField; + + private string fIASHouseGuidField; + + private System.DateTime activityEndDateField; + + private bool activityEndDateFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ShortName { + get { + return this.shortNameField; + } + set { + this.shortNameField = value; + this.RaisePropertyChanged("ShortName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FullName { + get { + return this.fullNameField; + } + set { + this.fullNameField = value; + this.RaisePropertyChanged("FullName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string CommercialName { + get { + return this.commercialNameField; + } + set { + this.commercialNameField = value; + this.RaisePropertyChanged("CommercialName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=3)] + public string OGRN { + get { + return this.oGRNField; + } + set { + this.oGRNField = value; + this.RaisePropertyChanged("OGRN"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=4)] + public System.DateTime StateRegistrationDate { + get { + return this.stateRegistrationDateField; + } + set { + this.stateRegistrationDateField = value; + this.RaisePropertyChanged("StateRegistrationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StateRegistrationDateSpecified { + get { + return this.stateRegistrationDateFieldSpecified; + } + set { + this.stateRegistrationDateFieldSpecified = value; + this.RaisePropertyChanged("StateRegistrationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=5)] + public string INN { + get { + return this.iNNField; + } + set { + this.iNNField = value; + this.RaisePropertyChanged("INN"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=6)] + public string KPP { + get { + return this.kPPField; + } + set { + this.kPPField = value; + this.RaisePropertyChanged("KPP"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-base/", Order=7)] + public string OKOPF { + get { + return this.oKOPFField; + } + set { + this.oKOPFField = value; + this.RaisePropertyChanged("OKOPF"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public string Address { + get { + return this.addressField; + } + set { + this.addressField = value; + this.RaisePropertyChanged("Address"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=10)] + public System.DateTime ActivityEndDate { + get { + return this.activityEndDateField; + } + set { + this.activityEndDateField = value; + this.RaisePropertyChanged("ActivityEndDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ActivityEndDateSpecified { + get { + return this.activityEndDateFieldSpecified; + } + set { + this.activityEndDateFieldSpecified = value; + this.RaisePropertyChanged("ActivityEndDateSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/metering-device-base/")] + public partial class VolumeMeteringValueBaseType : object, System.ComponentModel.INotifyPropertyChanged { + + private nsiRef municipalResourceField; + + private string meteringValueT1Field; + + private string meteringValueT2Field; + + private string meteringValueT3Field; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef MunicipalResource { + get { + return this.municipalResourceField; + } + set { + this.municipalResourceField = value; + this.RaisePropertyChanged("MunicipalResource"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string MeteringValueT1 { + get { + return this.meteringValueT1Field; + } + set { + this.meteringValueT1Field = value; + this.RaisePropertyChanged("MeteringValueT1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string MeteringValueT2 { + get { + return this.meteringValueT2Field; + } + set { + this.meteringValueT2Field = value; + this.RaisePropertyChanged("MeteringValueT2"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string MeteringValueT3 { + get { + return this.meteringValueT3Field; + } + set { + this.meteringValueT3Field = value; + this.RaisePropertyChanged("MeteringValueT3"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/account-base/")] + public partial class PaymentReasonType : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractNumberField; + + private System.DateTime contractDateField; + + private System.DateTime contractEndDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractNumber { + get { + return this.contractNumberField; + } + set { + this.contractNumberField = value; + this.RaisePropertyChanged("ContractNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime ContractDate { + get { + return this.contractDateField; + } + set { + this.contractDateField = value; + this.RaisePropertyChanged("ContractDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime ContractEndDate { + get { + return this.contractEndDateField; + } + set { + this.contractEndDateField = value; + this.RaisePropertyChanged("ContractEndDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class DocumentPortalType : object, System.ComponentModel.INotifyPropertyChanged { + + private string nameField; + + private string docNumberField; + + private System.DateTime approveDateField; + + private AttachmentType attachmentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Name { + get { + return this.nameField; + } + set { + this.nameField = value; + this.RaisePropertyChanged("Name"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string DocNumber { + get { + return this.docNumberField; + } + set { + this.docNumberField = value; + this.RaisePropertyChanged("DocNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime ApproveDate { + get { + return this.approveDateField; + } + set { + this.approveDateField = value; + this.RaisePropertyChanged("ApproveDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public AttachmentType Attachment { + get { + return this.attachmentField; + } + set { + this.attachmentField = value; + this.RaisePropertyChanged("Attachment"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class PeriodOpen : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime startDateField; + + private bool startDateFieldSpecified; + + private System.DateTime endDateField; + + private bool endDateFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime startDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("startDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool startDateSpecified { + get { + return this.startDateFieldSpecified; + } + set { + this.startDateFieldSpecified = value; + this.RaisePropertyChanged("startDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime endDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("endDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool endDateSpecified { + get { + return this.endDateFieldSpecified; + } + set { + this.endDateFieldSpecified = value; + this.RaisePropertyChanged("endDateSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class Period : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime startDateField; + + private System.DateTime endDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime startDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("startDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime endDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("endDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class YearMonth : object, System.ComponentModel.INotifyPropertyChanged { + + private short yearField; + + private int monthField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public short Year { + get { + return this.yearField; + } + set { + this.yearField = value; + this.RaisePropertyChanged("Year"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public int Month { + get { + return this.monthField; + } + set { + this.monthField = value; + this.RaisePropertyChanged("Month"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class CommonResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private string gUIDField; + + private string transportGUIDField; + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string GUID { + get { + return this.gUIDField; + } + set { + this.gUIDField = value; + this.RaisePropertyChanged("GUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Error", typeof(CommonResultTypeError), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("UniqueNumber", typeof(string), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("UpdateDate", typeof(System.DateTime), Order=2)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class CommonResultTypeError : ErrorMessageType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class ErrorMessageType : object, System.ComponentModel.INotifyPropertyChanged { + + private string errorCodeField; + + private string descriptionField; + + private string stackTraceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ErrorCode { + get { + return this.errorCodeField; + } + set { + this.errorCodeField = value; + this.RaisePropertyChanged("ErrorCode"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Description { + get { + return this.descriptionField; + } + set { + this.descriptionField = value; + this.RaisePropertyChanged("Description"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string StackTrace { + get { + return this.stackTraceField; + } + set { + this.stackTraceField = value; + this.RaisePropertyChanged("StackTrace"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class SignedAttachmentType : object, System.ComponentModel.INotifyPropertyChanged { + + private AttachmentType attachmentField; + + private AttachmentWODescriptionType[] signatureField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttachmentType Attachment { + get { + return this.attachmentField; + } + set { + this.attachmentField = value; + this.RaisePropertyChanged("Attachment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Signature", Order=1)] + public AttachmentWODescriptionType[] Signature { + get { + return this.signatureField; + } + set { + this.signatureField = value; + this.RaisePropertyChanged("Signature"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class AttachmentWODescriptionType : object, System.ComponentModel.INotifyPropertyChanged { + + private string nameField; + + private string descriptionField; + + private Attachment attachmentField; + + private string attachmentHASHField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Name { + get { + return this.nameField; + } + set { + this.nameField = value; + this.RaisePropertyChanged("Name"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Description { + get { + return this.descriptionField; + } + set { + this.descriptionField = value; + this.RaisePropertyChanged("Description"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public Attachment Attachment { + get { + return this.attachmentField; + } + set { + this.attachmentField = value; + this.RaisePropertyChanged("Attachment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AttachmentHASH { + get { + return this.attachmentHASHField; + } + set { + this.attachmentHASHField = value; + this.RaisePropertyChanged("AttachmentHASH"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class HeaderType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime dateField; + + private string messageGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string MessageGUID { + get { + return this.messageGUIDField; + } + set { + this.messageGUIDField = value; + this.RaisePropertyChanged("MessageGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class ResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private string itemField; + + private ItemChoiceType24 itemElementNameField; + + private object[] itemsField; + + private ItemsChoiceType21[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("TransportGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("UpdateGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType24 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CreateOrUpdateError", typeof(ErrorMessageType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("GUID", typeof(string), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("UniqueNumber", typeof(string), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("UpdateDate", typeof(System.DateTime), Order=2)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=3)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType21[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", IncludeInSchema=false)] + public enum ItemChoiceType24 { + + /// + TransportGUID, + + /// + UpdateGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", IncludeInSchema=false)] + public enum ItemsChoiceType21 { + + /// + CreateOrUpdateError, + + /// + GUID, + + /// + UniqueNumber, + + /// + UpdateDate, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceToUpdateAfterDevicesValuesType : object, System.ComponentModel.INotifyPropertyChanged { + + private string meteringDeviceNumberField; + + private string meteringDeviceStampField; + + private string meteringDeviceModelField; + + private System.DateTime installationDateField; + + private bool installationDateFieldSpecified; + + private System.DateTime commissioningDateField; + + private bool commissioningDateFieldSpecified; + + private bool remoteMeteringModeField; + + private bool remoteMeteringModeFieldSpecified; + + private string remoteMeteringInfoField; + + private bool temperatureSensorField; + + private bool temperatureSensorFieldSpecified; + + private bool pressureSensorField; + + private bool pressureSensorFieldSpecified; + + private MeteringDeviceToUpdateAfterDevicesValuesTypeCollectiveDevice collectiveDeviceField; + + private string[] accountGUIDField; + + private AttachmentType[] certificateField; + + private object[] itemsField; + + private System.DateTime firstVerificationDateField; + + private bool firstVerificationDateFieldSpecified; + + private System.DateTime factorySealDateField; + + private bool factorySealDateFieldSpecified; + + private bool consumedVolumeField; + + private bool consumedVolumeFieldSpecified; + + private object itemField; + + private MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristicts addressChatacteristictsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MeteringDeviceNumber { + get { + return this.meteringDeviceNumberField; + } + set { + this.meteringDeviceNumberField = value; + this.RaisePropertyChanged("MeteringDeviceNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string MeteringDeviceStamp { + get { + return this.meteringDeviceStampField; + } + set { + this.meteringDeviceStampField = value; + this.RaisePropertyChanged("MeteringDeviceStamp"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string MeteringDeviceModel { + get { + return this.meteringDeviceModelField; + } + set { + this.meteringDeviceModelField = value; + this.RaisePropertyChanged("MeteringDeviceModel"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime InstallationDate { + get { + return this.installationDateField; + } + set { + this.installationDateField = value; + this.RaisePropertyChanged("InstallationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InstallationDateSpecified { + get { + return this.installationDateFieldSpecified; + } + set { + this.installationDateFieldSpecified = value; + this.RaisePropertyChanged("InstallationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=4)] + public System.DateTime CommissioningDate { + get { + return this.commissioningDateField; + } + set { + this.commissioningDateField = value; + this.RaisePropertyChanged("CommissioningDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CommissioningDateSpecified { + get { + return this.commissioningDateFieldSpecified; + } + set { + this.commissioningDateFieldSpecified = value; + this.RaisePropertyChanged("CommissioningDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool RemoteMeteringMode { + get { + return this.remoteMeteringModeField; + } + set { + this.remoteMeteringModeField = value; + this.RaisePropertyChanged("RemoteMeteringMode"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool RemoteMeteringModeSpecified { + get { + return this.remoteMeteringModeFieldSpecified; + } + set { + this.remoteMeteringModeFieldSpecified = value; + this.RaisePropertyChanged("RemoteMeteringModeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string RemoteMeteringInfo { + get { + return this.remoteMeteringInfoField; + } + set { + this.remoteMeteringInfoField = value; + this.RaisePropertyChanged("RemoteMeteringInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public bool TemperatureSensor { + get { + return this.temperatureSensorField; + } + set { + this.temperatureSensorField = value; + this.RaisePropertyChanged("TemperatureSensor"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TemperatureSensorSpecified { + get { + return this.temperatureSensorFieldSpecified; + } + set { + this.temperatureSensorFieldSpecified = value; + this.RaisePropertyChanged("TemperatureSensorSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool PressureSensor { + get { + return this.pressureSensorField; + } + set { + this.pressureSensorField = value; + this.RaisePropertyChanged("PressureSensor"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool PressureSensorSpecified { + get { + return this.pressureSensorFieldSpecified; + } + set { + this.pressureSensorFieldSpecified = value; + this.RaisePropertyChanged("PressureSensorSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public MeteringDeviceToUpdateAfterDevicesValuesTypeCollectiveDevice CollectiveDevice { + get { + return this.collectiveDeviceField; + } + set { + this.collectiveDeviceField = value; + this.RaisePropertyChanged("CollectiveDevice"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AccountGUID", Order=10)] + public string[] AccountGUID { + get { + return this.accountGUIDField; + } + set { + this.accountGUIDField = value; + this.RaisePropertyChanged("AccountGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Certificate", Order=11)] + public AttachmentType[] Certificate { + get { + return this.certificateField; + } + set { + this.certificateField = value; + this.RaisePropertyChanged("Certificate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("MunicipalResourceEnergy", typeof(MunicipalResourceElectricUpdateType), Order=12)] + [System.Xml.Serialization.XmlElementAttribute("MunicipalResourceNotEnergy", typeof(OneRateMeteringValueBaseType), Order=12)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=13)] + public System.DateTime FirstVerificationDate { + get { + return this.firstVerificationDateField; + } + set { + this.firstVerificationDateField = value; + this.RaisePropertyChanged("FirstVerificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool FirstVerificationDateSpecified { + get { + return this.firstVerificationDateFieldSpecified; + } + set { + this.firstVerificationDateFieldSpecified = value; + this.RaisePropertyChanged("FirstVerificationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=14)] + public System.DateTime FactorySealDate { + get { + return this.factorySealDateField; + } + set { + this.factorySealDateField = value; + this.RaisePropertyChanged("FactorySealDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool FactorySealDateSpecified { + get { + return this.factorySealDateFieldSpecified; + } + set { + this.factorySealDateFieldSpecified = value; + this.RaisePropertyChanged("FactorySealDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=15)] + public bool ConsumedVolume { + get { + return this.consumedVolumeField; + } + set { + this.consumedVolumeField = value; + this.RaisePropertyChanged("ConsumedVolume"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ConsumedVolumeSpecified { + get { + return this.consumedVolumeFieldSpecified; + } + set { + this.consumedVolumeFieldSpecified = value; + this.RaisePropertyChanged("ConsumedVolumeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LinkedWithMetering", typeof(MeteringDeviceToUpdateAfterDevicesValuesTypeLinkedWithMetering), Order=16)] + [System.Xml.Serialization.XmlElementAttribute("NotLinkedWithMetering", typeof(bool), Order=16)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=17)] + public MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristicts AddressChatacteristicts { + get { + return this.addressChatacteristictsField; + } + set { + this.addressChatacteristictsField = value; + this.RaisePropertyChanged("AddressChatacteristicts"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceToUpdateAfterDevicesValuesTypeCollectiveDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string temperatureSensorInformationField; + + private string pressureSensorInformationField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string TemperatureSensorInformation { + get { + return this.temperatureSensorInformationField; + } + set { + this.temperatureSensorInformationField = value; + this.RaisePropertyChanged("TemperatureSensorInformation"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PressureSensorInformation { + get { + return this.pressureSensorInformationField; + } + set { + this.pressureSensorInformationField = value; + this.RaisePropertyChanged("PressureSensorInformation"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MunicipalResourceElectricUpdateType : ElectricMeteringValueBaseType { + + private decimal transformationRatioField; + + private bool transformationRatioFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public decimal TransformationRatio { + get { + return this.transformationRatioField; + } + set { + this.transformationRatioField = value; + this.RaisePropertyChanged("TransformationRatio"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TransformationRatioSpecified { + get { + return this.transformationRatioFieldSpecified; + } + set { + this.transformationRatioFieldSpecified = value; + this.RaisePropertyChanged("TransformationRatioSpecified"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ElectricMeteringValueExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ElectricMeteringValueExportWithTSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MunicipalResourceElectricExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MunicipalResourceElectricUpdateType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MunicipalResourceElectricBaseType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MunicipalResourceElectricExportType2))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/metering-device-base/")] + public partial class ElectricMeteringValueBaseType : object, System.ComponentModel.INotifyPropertyChanged { + + private string meteringValueT1Field; + + private string meteringValueT2Field; + + private string meteringValueT3Field; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MeteringValueT1 { + get { + return this.meteringValueT1Field; + } + set { + this.meteringValueT1Field = value; + this.RaisePropertyChanged("MeteringValueT1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string MeteringValueT2 { + get { + return this.meteringValueT2Field; + } + set { + this.meteringValueT2Field = value; + this.RaisePropertyChanged("MeteringValueT2"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string MeteringValueT3 { + get { + return this.meteringValueT3Field; + } + set { + this.meteringValueT3Field = value; + this.RaisePropertyChanged("MeteringValueT3"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ElectricMeteringValueExportWithTSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MunicipalResourceElectricExportType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/metering-device-base/")] + public partial class ElectricMeteringValueExportType : ElectricMeteringValueBaseType { + + private string readingsSourceField; + + private string orgPPAGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ReadingsSource { + get { + return this.readingsSourceField; + } + set { + this.readingsSourceField = value; + this.RaisePropertyChanged("ReadingsSource"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string orgPPAGUID { + get { + return this.orgPPAGUIDField; + } + set { + this.orgPPAGUIDField = value; + this.RaisePropertyChanged("orgPPAGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/metering-device-base/")] + public partial class ElectricMeteringValueExportWithTSType : ElectricMeteringValueExportType { + + private System.DateTime enterIntoSystemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime EnterIntoSystem { + get { + return this.enterIntoSystemField; + } + set { + this.enterIntoSystemField = value; + this.RaisePropertyChanged("EnterIntoSystem"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MunicipalResourceElectricExportType : ElectricMeteringValueExportType { + + private decimal transformationRatioField; + + private bool transformationRatioFieldSpecified; + + private MunicipalResourceElectricExportTypeUnit unitField; + + private bool unitFieldSpecified; + + private MunicipalResourceElectricExportTypeMeteringValueInDefaultUnit meteringValueInDefaultUnitField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public decimal TransformationRatio { + get { + return this.transformationRatioField; + } + set { + this.transformationRatioField = value; + this.RaisePropertyChanged("TransformationRatio"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TransformationRatioSpecified { + get { + return this.transformationRatioFieldSpecified; + } + set { + this.transformationRatioFieldSpecified = value; + this.RaisePropertyChanged("TransformationRatioSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public MunicipalResourceElectricExportTypeUnit Unit { + get { + return this.unitField; + } + set { + this.unitField = value; + this.RaisePropertyChanged("Unit"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UnitSpecified { + get { + return this.unitFieldSpecified; + } + set { + this.unitFieldSpecified = value; + this.RaisePropertyChanged("UnitSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public MunicipalResourceElectricExportTypeMeteringValueInDefaultUnit MeteringValueInDefaultUnit { + get { + return this.meteringValueInDefaultUnitField; + } + set { + this.meteringValueInDefaultUnitField = value; + this.RaisePropertyChanged("MeteringValueInDefaultUnit"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum MunicipalResourceElectricExportTypeUnit { + + /// + [System.Xml.Serialization.XmlEnumAttribute("245")] + Item245, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MunicipalResourceElectricExportTypeMeteringValueInDefaultUnit : object, System.ComponentModel.INotifyPropertyChanged { + + private string meteringValueT1Field; + + private string meteringValueT2Field; + + private string meteringValueT3Field; + + private string defaultUnitField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MeteringValueT1 { + get { + return this.meteringValueT1Field; + } + set { + this.meteringValueT1Field = value; + this.RaisePropertyChanged("MeteringValueT1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string MeteringValueT2 { + get { + return this.meteringValueT2Field; + } + set { + this.meteringValueT2Field = value; + this.RaisePropertyChanged("MeteringValueT2"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string MeteringValueT3 { + get { + return this.meteringValueT3Field; + } + set { + this.meteringValueT3Field = value; + this.RaisePropertyChanged("MeteringValueT3"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string DefaultUnit { + get { + return this.defaultUnitField; + } + set { + this.defaultUnitField = value; + this.RaisePropertyChanged("DefaultUnit"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MunicipalResourceElectricExportType2))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MunicipalResourceElectricBaseType : ElectricMeteringValueBaseType { + + private decimal transformationRatioField; + + private bool transformationRatioFieldSpecified; + + private MunicipalResourceElectricBaseTypeUnit unitField; + + private bool unitFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public decimal TransformationRatio { + get { + return this.transformationRatioField; + } + set { + this.transformationRatioField = value; + this.RaisePropertyChanged("TransformationRatio"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TransformationRatioSpecified { + get { + return this.transformationRatioFieldSpecified; + } + set { + this.transformationRatioFieldSpecified = value; + this.RaisePropertyChanged("TransformationRatioSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public MunicipalResourceElectricBaseTypeUnit Unit { + get { + return this.unitField; + } + set { + this.unitField = value; + this.RaisePropertyChanged("Unit"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UnitSpecified { + get { + return this.unitFieldSpecified; + } + set { + this.unitFieldSpecified = value; + this.RaisePropertyChanged("UnitSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum MunicipalResourceElectricBaseTypeUnit { + + /// + [System.Xml.Serialization.XmlEnumAttribute("245")] + Item245, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MunicipalResourceElectricExportType2 : MunicipalResourceElectricBaseType { + + private MunicipalResourceElectricExportType2MeteringValueInDefaultUnit meteringValueInDefaultUnitField; + + private string readingsSourceField; + + private string orgPPAGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public MunicipalResourceElectricExportType2MeteringValueInDefaultUnit MeteringValueInDefaultUnit { + get { + return this.meteringValueInDefaultUnitField; + } + set { + this.meteringValueInDefaultUnitField = value; + this.RaisePropertyChanged("MeteringValueInDefaultUnit"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ReadingsSource { + get { + return this.readingsSourceField; + } + set { + this.readingsSourceField = value; + this.RaisePropertyChanged("ReadingsSource"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string orgPPAGUID { + get { + return this.orgPPAGUIDField; + } + set { + this.orgPPAGUIDField = value; + this.RaisePropertyChanged("orgPPAGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MunicipalResourceElectricExportType2MeteringValueInDefaultUnit : object, System.ComponentModel.INotifyPropertyChanged { + + private string meteringValueT1Field; + + private string meteringValueT2Field; + + private string meteringValueT3Field; + + private string defaultUnitField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MeteringValueT1 { + get { + return this.meteringValueT1Field; + } + set { + this.meteringValueT1Field = value; + this.RaisePropertyChanged("MeteringValueT1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string MeteringValueT2 { + get { + return this.meteringValueT2Field; + } + set { + this.meteringValueT2Field = value; + this.RaisePropertyChanged("MeteringValueT2"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string MeteringValueT3 { + get { + return this.meteringValueT3Field; + } + set { + this.meteringValueT3Field = value; + this.RaisePropertyChanged("MeteringValueT3"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string DefaultUnit { + get { + return this.defaultUnitField; + } + set { + this.defaultUnitField = value; + this.RaisePropertyChanged("DefaultUnit"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OneRateMeteringValueExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OneRateMeteringValueExportWithTSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MunicipalResourceNotElectricExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MunicipalResourceNotElectricBaseType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MunicipalResourceNotElectricExportType2))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/metering-device-base/")] + public partial class OneRateMeteringValueBaseType : object, System.ComponentModel.INotifyPropertyChanged { + + private nsiRef municipalResourceField; + + private string meteringValueField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef MunicipalResource { + get { + return this.municipalResourceField; + } + set { + this.municipalResourceField = value; + this.RaisePropertyChanged("MunicipalResource"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string MeteringValue { + get { + return this.meteringValueField; + } + set { + this.meteringValueField = value; + this.RaisePropertyChanged("MeteringValue"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OneRateMeteringValueExportWithTSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MunicipalResourceNotElectricExportType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/metering-device-base/")] + public partial class OneRateMeteringValueExportType : OneRateMeteringValueBaseType { + + private string readingsSourceField; + + private string orgPPAGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ReadingsSource { + get { + return this.readingsSourceField; + } + set { + this.readingsSourceField = value; + this.RaisePropertyChanged("ReadingsSource"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string orgPPAGUID { + get { + return this.orgPPAGUIDField; + } + set { + this.orgPPAGUIDField = value; + this.RaisePropertyChanged("orgPPAGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/metering-device-base/")] + public partial class OneRateMeteringValueExportWithTSType : OneRateMeteringValueExportType { + + private System.DateTime enterIntoSystemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime EnterIntoSystem { + get { + return this.enterIntoSystemField; + } + set { + this.enterIntoSystemField = value; + this.RaisePropertyChanged("EnterIntoSystem"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MunicipalResourceNotElectricExportType : OneRateMeteringValueExportType { + + private MunicipalResourceNotElectricExportTypeUnit unitField; + + private bool unitFieldSpecified; + + private MunicipalResourceNotElectricExportTypeMeteringValueInDefaultUnit meteringValueInDefaultUnitField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public MunicipalResourceNotElectricExportTypeUnit Unit { + get { + return this.unitField; + } + set { + this.unitField = value; + this.RaisePropertyChanged("Unit"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UnitSpecified { + get { + return this.unitFieldSpecified; + } + set { + this.unitFieldSpecified = value; + this.RaisePropertyChanged("UnitSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public MunicipalResourceNotElectricExportTypeMeteringValueInDefaultUnit MeteringValueInDefaultUnit { + get { + return this.meteringValueInDefaultUnitField; + } + set { + this.meteringValueInDefaultUnitField = value; + this.RaisePropertyChanged("MeteringValueInDefaultUnit"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum MunicipalResourceNotElectricExportTypeUnit { + + /// + [System.Xml.Serialization.XmlEnumAttribute("112")] + Item112, + + /// + [System.Xml.Serialization.XmlEnumAttribute("113")] + Item113, + + /// + [System.Xml.Serialization.XmlEnumAttribute("233")] + Item233, + + /// + [System.Xml.Serialization.XmlEnumAttribute("245")] + Item245, + + /// + [System.Xml.Serialization.XmlEnumAttribute("246")] + Item246, + + /// + [System.Xml.Serialization.XmlEnumAttribute("271")] + Item271, + + /// + A056, + + /// + A058, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MunicipalResourceNotElectricExportTypeMeteringValueInDefaultUnit : object, System.ComponentModel.INotifyPropertyChanged { + + private string meteringValueField; + + private string defaultUnitField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MeteringValue { + get { + return this.meteringValueField; + } + set { + this.meteringValueField = value; + this.RaisePropertyChanged("MeteringValue"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string DefaultUnit { + get { + return this.defaultUnitField; + } + set { + this.defaultUnitField = value; + this.RaisePropertyChanged("DefaultUnit"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MunicipalResourceNotElectricExportType2))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MunicipalResourceNotElectricBaseType : OneRateMeteringValueBaseType { + + private MunicipalResourceNotElectricBaseTypeUnit unitField; + + private bool unitFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public MunicipalResourceNotElectricBaseTypeUnit Unit { + get { + return this.unitField; + } + set { + this.unitField = value; + this.RaisePropertyChanged("Unit"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UnitSpecified { + get { + return this.unitFieldSpecified; + } + set { + this.unitFieldSpecified = value; + this.RaisePropertyChanged("UnitSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum MunicipalResourceNotElectricBaseTypeUnit { + + /// + [System.Xml.Serialization.XmlEnumAttribute("112")] + Item112, + + /// + [System.Xml.Serialization.XmlEnumAttribute("113")] + Item113, + + /// + [System.Xml.Serialization.XmlEnumAttribute("233")] + Item233, + + /// + [System.Xml.Serialization.XmlEnumAttribute("245")] + Item245, + + /// + [System.Xml.Serialization.XmlEnumAttribute("246")] + Item246, + + /// + [System.Xml.Serialization.XmlEnumAttribute("271")] + Item271, + + /// + A056, + + /// + A058, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MunicipalResourceNotElectricExportType2 : MunicipalResourceNotElectricBaseType { + + private MunicipalResourceNotElectricExportType2MeteringValueInDefaultUnit meteringValueInDefaultUnitField; + + private string readingsSourceField; + + private string orgPPAGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public MunicipalResourceNotElectricExportType2MeteringValueInDefaultUnit MeteringValueInDefaultUnit { + get { + return this.meteringValueInDefaultUnitField; + } + set { + this.meteringValueInDefaultUnitField = value; + this.RaisePropertyChanged("MeteringValueInDefaultUnit"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ReadingsSource { + get { + return this.readingsSourceField; + } + set { + this.readingsSourceField = value; + this.RaisePropertyChanged("ReadingsSource"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string orgPPAGUID { + get { + return this.orgPPAGUIDField; + } + set { + this.orgPPAGUIDField = value; + this.RaisePropertyChanged("orgPPAGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MunicipalResourceNotElectricExportType2MeteringValueInDefaultUnit : object, System.ComponentModel.INotifyPropertyChanged { + + private string meteringValueField; + + private string defaultUnitField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MeteringValue { + get { + return this.meteringValueField; + } + set { + this.meteringValueField = value; + this.RaisePropertyChanged("MeteringValue"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string DefaultUnit { + get { + return this.defaultUnitField; + } + set { + this.defaultUnitField = value; + this.RaisePropertyChanged("DefaultUnit"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceToUpdateAfterDevicesValuesTypeLinkedWithMetering : object, System.ComponentModel.INotifyPropertyChanged { + + private MeteringDeviceToUpdateAfterDevicesValuesTypeLinkedWithMeteringInstallationPlace installationPlaceField; + + private string[] linkedMeteringDeviceVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public MeteringDeviceToUpdateAfterDevicesValuesTypeLinkedWithMeteringInstallationPlace InstallationPlace { + get { + return this.installationPlaceField; + } + set { + this.installationPlaceField = value; + this.RaisePropertyChanged("InstallationPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LinkedMeteringDeviceVersionGUID", Order=1)] + public string[] LinkedMeteringDeviceVersionGUID { + get { + return this.linkedMeteringDeviceVersionGUIDField; + } + set { + this.linkedMeteringDeviceVersionGUIDField = value; + this.RaisePropertyChanged("LinkedMeteringDeviceVersionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum MeteringDeviceToUpdateAfterDevicesValuesTypeLinkedWithMeteringInstallationPlace { + + /// + @in, + + /// + @out, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristicts : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private ItemChoiceType23 itemElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ApartmentHouseDevice", typeof(MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristictsApartmentHouseDevice), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CollectiveApartmentDevice", typeof(MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristictsCollectiveApartmentDevice), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CollectiveDevice", typeof(MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristictsCollectiveDevice), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LivingRoomDevice", typeof(MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristictsLivingRoomDevice), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NonResidentialPremiseDevice", typeof(MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristictsNonResidentialPremiseDevice), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremiseDevice", typeof(MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristictsResidentialPremiseDevice), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType23 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristictsApartmentHouseDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("isChangeToFIASHouseGuid", typeof(bool), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristictsCollectiveApartmentDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] premiseGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute("PremiseGUID", Order=0)] + public string[] PremiseGUID { + get { + return this.premiseGUIDField; + } + set { + this.premiseGUIDField = value; + this.RaisePropertyChanged("PremiseGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristictsCollectiveDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("isChangeToFIASHouseGuid", typeof(bool), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristictsLivingRoomDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] livingRoomGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomGUID", Order=0)] + public string[] LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristictsNonResidentialPremiseDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] premiseGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute("PremiseGUID", Order=0)] + public string[] PremiseGUID { + get { + return this.premiseGUIDField; + } + set { + this.premiseGUIDField = value; + this.RaisePropertyChanged("PremiseGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceToUpdateAfterDevicesValuesTypeAddressChatacteristictsResidentialPremiseDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] premiseGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute("PremiseGUID", Order=0)] + public string[] PremiseGUID { + get { + return this.premiseGUIDField; + } + set { + this.premiseGUIDField = value; + this.RaisePropertyChanged("PremiseGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType23 { + + /// + ApartmentHouseDevice, + + /// + CollectiveApartmentDevice, + + /// + CollectiveDevice, + + /// + LivingRoomDevice, + + /// + NonResidentialPremiseDevice, + + /// + ResidentialPremiseDevice, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DeviceMunicipalResourceType : object, System.ComponentModel.INotifyPropertyChanged { + + private nsiRef municipalResourceField; + + private DeviceMunicipalResourceTypeUnit unitField; + + private bool unitFieldSpecified; + + private string tariffCountField; + + private decimal transformationRatioField; + + private bool transformationRatioFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef MunicipalResource { + get { + return this.municipalResourceField; + } + set { + this.municipalResourceField = value; + this.RaisePropertyChanged("MunicipalResource"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public DeviceMunicipalResourceTypeUnit Unit { + get { + return this.unitField; + } + set { + this.unitField = value; + this.RaisePropertyChanged("Unit"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UnitSpecified { + get { + return this.unitFieldSpecified; + } + set { + this.unitFieldSpecified = value; + this.RaisePropertyChanged("UnitSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=2)] + public string TariffCount { + get { + return this.tariffCountField; + } + set { + this.tariffCountField = value; + this.RaisePropertyChanged("TariffCount"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal TransformationRatio { + get { + return this.transformationRatioField; + } + set { + this.transformationRatioField = value; + this.RaisePropertyChanged("TransformationRatio"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TransformationRatioSpecified { + get { + return this.transformationRatioFieldSpecified; + } + set { + this.transformationRatioFieldSpecified = value; + this.RaisePropertyChanged("TransformationRatioSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum DeviceMunicipalResourceTypeUnit { + + /// + [System.Xml.Serialization.XmlEnumAttribute("112")] + Item112, + + /// + [System.Xml.Serialization.XmlEnumAttribute("113")] + Item113, + + /// + [System.Xml.Serialization.XmlEnumAttribute("233")] + Item233, + + /// + [System.Xml.Serialization.XmlEnumAttribute("245")] + Item245, + + /// + [System.Xml.Serialization.XmlEnumAttribute("246")] + Item246, + + /// + [System.Xml.Serialization.XmlEnumAttribute("271")] + Item271, + + /// + A056, + + /// + A058, + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(exportMeteringDeviceDataResultType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceFullInformationExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private MeteringDeviceBasicCharacteristicsType basicChatacteristictsField; + + private object itemField; + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public MeteringDeviceBasicCharacteristicsType BasicChatacteristicts { + get { + return this.basicChatacteristictsField; + } + set { + this.basicChatacteristictsField = value; + this.RaisePropertyChanged("BasicChatacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LinkedWithMetering", typeof(MeteringDeviceFullInformationExportTypeLinkedWithMetering), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NotLinkedWithMetering", typeof(bool), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("MunicipalResourceEnergy", typeof(MunicipalResourceElectricExportType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("MunicipalResourceNotEnergy", typeof(MunicipalResourceNotElectricExportType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("MunicipalResources", typeof(DeviceMunicipalResourceType), Order=2)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceBasicCharacteristicsType : object, System.ComponentModel.INotifyPropertyChanged { + + private string meteringDeviceNumberField; + + private string meteringDeviceStampField; + + private string meteringDeviceModelField; + + private System.DateTime installationDateField; + + private bool installationDateFieldSpecified; + + private System.DateTime commissioningDateField; + + private bool commissioningDateFieldSpecified; + + private bool remoteMeteringModeField; + + private string remoteMeteringInfoField; + + private System.DateTime firstVerificationDateField; + + private bool firstVerificationDateFieldSpecified; + + private nsiRef verificationIntervalField; + + private System.DateTime factorySealDateField; + + private bool factorySealDateFieldSpecified; + + private bool temperatureSensorField; + + private bool pressureSensorField; + + private bool consumedVolumeField; + + private bool consumedVolumeFieldSpecified; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MeteringDeviceNumber { + get { + return this.meteringDeviceNumberField; + } + set { + this.meteringDeviceNumberField = value; + this.RaisePropertyChanged("MeteringDeviceNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string MeteringDeviceStamp { + get { + return this.meteringDeviceStampField; + } + set { + this.meteringDeviceStampField = value; + this.RaisePropertyChanged("MeteringDeviceStamp"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string MeteringDeviceModel { + get { + return this.meteringDeviceModelField; + } + set { + this.meteringDeviceModelField = value; + this.RaisePropertyChanged("MeteringDeviceModel"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime InstallationDate { + get { + return this.installationDateField; + } + set { + this.installationDateField = value; + this.RaisePropertyChanged("InstallationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InstallationDateSpecified { + get { + return this.installationDateFieldSpecified; + } + set { + this.installationDateFieldSpecified = value; + this.RaisePropertyChanged("InstallationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=4)] + public System.DateTime CommissioningDate { + get { + return this.commissioningDateField; + } + set { + this.commissioningDateField = value; + this.RaisePropertyChanged("CommissioningDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CommissioningDateSpecified { + get { + return this.commissioningDateFieldSpecified; + } + set { + this.commissioningDateFieldSpecified = value; + this.RaisePropertyChanged("CommissioningDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool RemoteMeteringMode { + get { + return this.remoteMeteringModeField; + } + set { + this.remoteMeteringModeField = value; + this.RaisePropertyChanged("RemoteMeteringMode"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string RemoteMeteringInfo { + get { + return this.remoteMeteringInfoField; + } + set { + this.remoteMeteringInfoField = value; + this.RaisePropertyChanged("RemoteMeteringInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=7)] + public System.DateTime FirstVerificationDate { + get { + return this.firstVerificationDateField; + } + set { + this.firstVerificationDateField = value; + this.RaisePropertyChanged("FirstVerificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool FirstVerificationDateSpecified { + get { + return this.firstVerificationDateFieldSpecified; + } + set { + this.firstVerificationDateFieldSpecified = value; + this.RaisePropertyChanged("FirstVerificationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public nsiRef VerificationInterval { + get { + return this.verificationIntervalField; + } + set { + this.verificationIntervalField = value; + this.RaisePropertyChanged("VerificationInterval"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=9)] + public System.DateTime FactorySealDate { + get { + return this.factorySealDateField; + } + set { + this.factorySealDateField = value; + this.RaisePropertyChanged("FactorySealDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool FactorySealDateSpecified { + get { + return this.factorySealDateFieldSpecified; + } + set { + this.factorySealDateFieldSpecified = value; + this.RaisePropertyChanged("FactorySealDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public bool TemperatureSensor { + get { + return this.temperatureSensorField; + } + set { + this.temperatureSensorField = value; + this.RaisePropertyChanged("TemperatureSensor"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public bool PressureSensor { + get { + return this.pressureSensorField; + } + set { + this.pressureSensorField = value; + this.RaisePropertyChanged("PressureSensor"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=12)] + public bool ConsumedVolume { + get { + return this.consumedVolumeField; + } + set { + this.consumedVolumeField = value; + this.RaisePropertyChanged("ConsumedVolume"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ConsumedVolumeSpecified { + get { + return this.consumedVolumeFieldSpecified; + } + set { + this.consumedVolumeFieldSpecified = value; + this.RaisePropertyChanged("ConsumedVolumeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ApartmentHouseDevice", typeof(MeteringDeviceBasicCharacteristicsTypeApartmentHouseDevice), Order=13)] + [System.Xml.Serialization.XmlElementAttribute("CollectiveApartmentDevice", typeof(MeteringDeviceBasicCharacteristicsTypeCollectiveApartmentDevice), Order=13)] + [System.Xml.Serialization.XmlElementAttribute("CollectiveDevice", typeof(MeteringDeviceBasicCharacteristicsTypeCollectiveDevice), Order=13)] + [System.Xml.Serialization.XmlElementAttribute("LivingRoomDevice", typeof(MeteringDeviceBasicCharacteristicsTypeLivingRoomDevice), Order=13)] + [System.Xml.Serialization.XmlElementAttribute("NonResidentialPremiseDevice", typeof(MeteringDeviceBasicCharacteristicsTypeNonResidentialPremiseDevice), Order=13)] + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremiseDevice", typeof(MeteringDeviceBasicCharacteristicsTypeResidentialPremiseDevice), Order=13)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceBasicCharacteristicsTypeApartmentHouseDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] fIASHouseGuidField; + + private string[] accountGUIDField; + + private AttachmentType[] certificateField; + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", Order=0)] + public string[] FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AccountGUID", Order=1)] + public string[] AccountGUID { + get { + return this.accountGUIDField; + } + set { + this.accountGUIDField = value; + this.RaisePropertyChanged("AccountGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Certificate", Order=2)] + public AttachmentType[] Certificate { + get { + return this.certificateField; + } + set { + this.certificateField = value; + this.RaisePropertyChanged("Certificate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceBasicCharacteristicsTypeCollectiveApartmentDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] premiseGUIDField; + + private string[] accountGUIDField; + + private AttachmentType[] certificateField; + + private MeteringDeviceBasicCharacteristicsTypeCollectiveApartmentDevicePremiseInfo[] premiseInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute("PremiseGUID", Order=0)] + public string[] PremiseGUID { + get { + return this.premiseGUIDField; + } + set { + this.premiseGUIDField = value; + this.RaisePropertyChanged("PremiseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AccountGUID", Order=1)] + public string[] AccountGUID { + get { + return this.accountGUIDField; + } + set { + this.accountGUIDField = value; + this.RaisePropertyChanged("AccountGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Certificate", Order=2)] + public AttachmentType[] Certificate { + get { + return this.certificateField; + } + set { + this.certificateField = value; + this.RaisePropertyChanged("Certificate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("PremiseInfo", Order=3)] + public MeteringDeviceBasicCharacteristicsTypeCollectiveApartmentDevicePremiseInfo[] PremiseInfo { + get { + return this.premiseInfoField; + } + set { + this.premiseInfoField = value; + this.RaisePropertyChanged("PremiseInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceBasicCharacteristicsTypeCollectiveApartmentDevicePremiseInfo : object, System.ComponentModel.INotifyPropertyChanged { + + private string premiseGUIDField; + + private object premiseNoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremiseGUID { + get { + return this.premiseGUIDField; + } + set { + this.premiseGUIDField = value; + this.RaisePropertyChanged("PremiseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public object PremiseNo { + get { + return this.premiseNoField; + } + set { + this.premiseNoField = value; + this.RaisePropertyChanged("PremiseNo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceBasicCharacteristicsTypeCollectiveDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] fIASHouseGuidField; + + private string temperatureSensingElementInfoField; + + private string pressureSensingElementInfoField; + + private AttachmentType[] projectRegistrationNodeField; + + private AttachmentType[] certificateField; + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", Order=0)] + public string[] FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string TemperatureSensingElementInfo { + get { + return this.temperatureSensingElementInfoField; + } + set { + this.temperatureSensingElementInfoField = value; + this.RaisePropertyChanged("TemperatureSensingElementInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string PressureSensingElementInfo { + get { + return this.pressureSensingElementInfoField; + } + set { + this.pressureSensingElementInfoField = value; + this.RaisePropertyChanged("PressureSensingElementInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ProjectRegistrationNode", Order=3)] + public AttachmentType[] ProjectRegistrationNode { + get { + return this.projectRegistrationNodeField; + } + set { + this.projectRegistrationNodeField = value; + this.RaisePropertyChanged("ProjectRegistrationNode"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Certificate", Order=4)] + public AttachmentType[] Certificate { + get { + return this.certificateField; + } + set { + this.certificateField = value; + this.RaisePropertyChanged("Certificate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceBasicCharacteristicsTypeLivingRoomDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] livingRoomGUIDField; + + private string[] accountGUIDField; + + private AttachmentType[] certificateField; + + private MeteringDeviceBasicCharacteristicsTypeLivingRoomDeviceLivingRoomInfo[] livingRoomInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomGUID", Order=0)] + public string[] LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AccountGUID", Order=1)] + public string[] AccountGUID { + get { + return this.accountGUIDField; + } + set { + this.accountGUIDField = value; + this.RaisePropertyChanged("AccountGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Certificate", Order=2)] + public AttachmentType[] Certificate { + get { + return this.certificateField; + } + set { + this.certificateField = value; + this.RaisePropertyChanged("Certificate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomInfo", Order=3)] + public MeteringDeviceBasicCharacteristicsTypeLivingRoomDeviceLivingRoomInfo[] LivingRoomInfo { + get { + return this.livingRoomInfoField; + } + set { + this.livingRoomInfoField = value; + this.RaisePropertyChanged("LivingRoomInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceBasicCharacteristicsTypeLivingRoomDeviceLivingRoomInfo : object, System.ComponentModel.INotifyPropertyChanged { + + private string livingRoomGUIDField; + + private object livingRoomNoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public object LivingRoomNo { + get { + return this.livingRoomNoField; + } + set { + this.livingRoomNoField = value; + this.RaisePropertyChanged("LivingRoomNo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceBasicCharacteristicsTypeNonResidentialPremiseDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] premiseGUIDField; + + private string[] accountGUIDField; + + private AttachmentType[] certificateField; + + private MeteringDeviceBasicCharacteristicsTypeNonResidentialPremiseDevicePremiseInfo[] premiseInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute("PremiseGUID", Order=0)] + public string[] PremiseGUID { + get { + return this.premiseGUIDField; + } + set { + this.premiseGUIDField = value; + this.RaisePropertyChanged("PremiseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AccountGUID", Order=1)] + public string[] AccountGUID { + get { + return this.accountGUIDField; + } + set { + this.accountGUIDField = value; + this.RaisePropertyChanged("AccountGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Certificate", Order=2)] + public AttachmentType[] Certificate { + get { + return this.certificateField; + } + set { + this.certificateField = value; + this.RaisePropertyChanged("Certificate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("PremiseInfo", Order=3)] + public MeteringDeviceBasicCharacteristicsTypeNonResidentialPremiseDevicePremiseInfo[] PremiseInfo { + get { + return this.premiseInfoField; + } + set { + this.premiseInfoField = value; + this.RaisePropertyChanged("PremiseInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceBasicCharacteristicsTypeNonResidentialPremiseDevicePremiseInfo : object, System.ComponentModel.INotifyPropertyChanged { + + private string premiseGUIDField; + + private object premiseNoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremiseGUID { + get { + return this.premiseGUIDField; + } + set { + this.premiseGUIDField = value; + this.RaisePropertyChanged("PremiseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public object PremiseNo { + get { + return this.premiseNoField; + } + set { + this.premiseNoField = value; + this.RaisePropertyChanged("PremiseNo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceBasicCharacteristicsTypeResidentialPremiseDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] premiseGUIDField; + + private string[] accountGUIDField; + + private AttachmentType[] certificateField; + + private MeteringDeviceBasicCharacteristicsTypeResidentialPremiseDevicePremiseInfo[] premiseInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute("PremiseGUID", Order=0)] + public string[] PremiseGUID { + get { + return this.premiseGUIDField; + } + set { + this.premiseGUIDField = value; + this.RaisePropertyChanged("PremiseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AccountGUID", Order=1)] + public string[] AccountGUID { + get { + return this.accountGUIDField; + } + set { + this.accountGUIDField = value; + this.RaisePropertyChanged("AccountGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Certificate", Order=2)] + public AttachmentType[] Certificate { + get { + return this.certificateField; + } + set { + this.certificateField = value; + this.RaisePropertyChanged("Certificate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("PremiseInfo", Order=3)] + public MeteringDeviceBasicCharacteristicsTypeResidentialPremiseDevicePremiseInfo[] PremiseInfo { + get { + return this.premiseInfoField; + } + set { + this.premiseInfoField = value; + this.RaisePropertyChanged("PremiseInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceBasicCharacteristicsTypeResidentialPremiseDevicePremiseInfo : object, System.ComponentModel.INotifyPropertyChanged { + + private string premiseGUIDField; + + private object premiseNoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremiseGUID { + get { + return this.premiseGUIDField; + } + set { + this.premiseGUIDField = value; + this.RaisePropertyChanged("PremiseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public object PremiseNo { + get { + return this.premiseNoField; + } + set { + this.premiseNoField = value; + this.RaisePropertyChanged("PremiseNo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceFullInformationExportTypeLinkedWithMetering : object, System.ComponentModel.INotifyPropertyChanged { + + private MeteringDeviceFullInformationExportTypeLinkedWithMeteringInstallationPlace installationPlaceField; + + private string[] linkedMeteringDeviceVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public MeteringDeviceFullInformationExportTypeLinkedWithMeteringInstallationPlace InstallationPlace { + get { + return this.installationPlaceField; + } + set { + this.installationPlaceField = value; + this.RaisePropertyChanged("InstallationPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LinkedMeteringDeviceVersionGUID", Order=1)] + public string[] LinkedMeteringDeviceVersionGUID { + get { + return this.linkedMeteringDeviceVersionGUIDField; + } + set { + this.linkedMeteringDeviceVersionGUIDField = value; + this.RaisePropertyChanged("LinkedMeteringDeviceVersionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum MeteringDeviceFullInformationExportTypeLinkedWithMeteringInstallationPlace { + + /// + @in, + + /// + @out, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportMeteringDeviceDataResultType : MeteringDeviceFullInformationExportType { + + private string meteringDeviceRootGUIDField; + + private exportMeteringDeviceDataResultTypeStatusRootDoc statusRootDocField; + + private string meteringDeviceVersionGUIDField; + + private string versionNumberField; + + private string statusVersionField; + + private System.DateTime updateDateTimeField; + + private string[] meteringOwnerField; + + private string meteringDeviceGISGKHNumberField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MeteringDeviceRootGUID { + get { + return this.meteringDeviceRootGUIDField; + } + set { + this.meteringDeviceRootGUIDField = value; + this.RaisePropertyChanged("MeteringDeviceRootGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public exportMeteringDeviceDataResultTypeStatusRootDoc StatusRootDoc { + get { + return this.statusRootDocField; + } + set { + this.statusRootDocField = value; + this.RaisePropertyChanged("StatusRootDoc"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string MeteringDeviceVersionGUID { + get { + return this.meteringDeviceVersionGUIDField; + } + set { + this.meteringDeviceVersionGUIDField = value; + this.RaisePropertyChanged("MeteringDeviceVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=3)] + public string VersionNumber { + get { + return this.versionNumberField; + } + set { + this.versionNumberField = value; + this.RaisePropertyChanged("VersionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string StatusVersion { + get { + return this.statusVersionField; + } + set { + this.statusVersionField = value; + this.RaisePropertyChanged("StatusVersion"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public System.DateTime UpdateDateTime { + get { + return this.updateDateTimeField; + } + set { + this.updateDateTimeField = value; + this.RaisePropertyChanged("UpdateDateTime"); + } + } + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=6)] + [System.Xml.Serialization.XmlArrayItemAttribute("orgRootEntityGUID", Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-registry-base/", IsNullable=false)] + public string[] MeteringOwner { + get { + return this.meteringOwnerField; + } + set { + this.meteringOwnerField = value; + this.RaisePropertyChanged("MeteringOwner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public string MeteringDeviceGISGKHNumber { + get { + return this.meteringDeviceGISGKHNumberField; + } + set { + this.meteringDeviceGISGKHNumberField = value; + this.RaisePropertyChanged("MeteringDeviceGISGKHNumber"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportMeteringDeviceDataResultTypeStatusRootDoc { + + /// + Active, + + /// + Archival, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportObjectAddressType : object, System.ComponentModel.INotifyPropertyChanged { + + private ExportObjectAddressTypeHouseType houseTypeField; + + private bool houseTypeFieldSpecified; + + private string fIASHouseGuidField; + + private string apartmentNumberField; + + private string roomNumberField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ExportObjectAddressTypeHouseType HouseType { + get { + return this.houseTypeField; + } + set { + this.houseTypeField = value; + this.RaisePropertyChanged("HouseType"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HouseTypeSpecified { + get { + return this.houseTypeFieldSpecified; + } + set { + this.houseTypeFieldSpecified = value; + this.RaisePropertyChanged("HouseTypeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ApartmentNumber { + get { + return this.apartmentNumberField; + } + set { + this.apartmentNumberField = value; + this.RaisePropertyChanged("ApartmentNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ExportObjectAddressTypeHouseType { + + /// + MKD, + + /// + ZHD, + + /// + ZHDBlockZastroyki, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class OwnerRefusalExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private string messageGUIDField; + + private string refusalGUIDField; + + private Owner ownerField; + + private exportPropertyDetails[] exportPropertyDetailsField; + + private Representative representativeField; + + private AttachmentType[] refusalAttachmentsField; + + private OwnerRefusalStatusType refusalStatusField; + + private System.DateTime publishDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MessageGUID { + get { + return this.messageGUIDField; + } + set { + this.messageGUIDField = value; + this.RaisePropertyChanged("MessageGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string RefusalGUID { + get { + return this.refusalGUIDField; + } + set { + this.refusalGUIDField = value; + this.RaisePropertyChanged("RefusalGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public Owner Owner { + get { + return this.ownerField; + } + set { + this.ownerField = value; + this.RaisePropertyChanged("Owner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("exportPropertyDetails", Order=3)] + public exportPropertyDetails[] exportPropertyDetails { + get { + return this.exportPropertyDetailsField; + } + set { + this.exportPropertyDetailsField = value; + this.RaisePropertyChanged("exportPropertyDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public Representative Representative { + get { + return this.representativeField; + } + set { + this.representativeField = value; + this.RaisePropertyChanged("Representative"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("RefusalAttachments", Order=5)] + public AttachmentType[] RefusalAttachments { + get { + return this.refusalAttachmentsField; + } + set { + this.refusalAttachmentsField = value; + this.RaisePropertyChanged("RefusalAttachments"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public OwnerRefusalStatusType RefusalStatus { + get { + return this.refusalStatusField; + } + set { + this.refusalStatusField = value; + this.RaisePropertyChanged("RefusalStatus"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public System.DateTime PublishDate { + get { + return this.publishDateField; + } + set { + this.publishDateField = value; + this.RaisePropertyChanged("PublishDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class Owner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("OwnerInd", typeof(OwnerOwnerInd), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("OwnerOrg", typeof(RegOrgRootAndVersionType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class OwnerOwnerInd : DecisionIndType { + + private string sNILSField; + + private DecisionIndID decisionIndIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/", Order=0)] + public string SNILS { + get { + return this.sNILSField; + } + set { + this.sNILSField = value; + this.RaisePropertyChanged("SNILS"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public DecisionIndID DecisionIndID { + get { + return this.decisionIndIDField; + } + set { + this.decisionIndIDField = value; + this.RaisePropertyChanged("DecisionIndID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DecisionIndID : object, System.ComponentModel.INotifyPropertyChanged { + + private nsiRef typeField; + + private string seriesField; + + private string numberField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Series { + get { + return this.seriesField; + } + set { + this.seriesField = value; + this.RaisePropertyChanged("Series"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Number { + get { + return this.numberField; + } + set { + this.numberField = value; + this.RaisePropertyChanged("Number"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DecisionIndType : FIOType { + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(IndType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(DecisionIndType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(VotingInitiatorIndType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(AccountIndType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/")] + public partial class FIOType : object, System.ComponentModel.INotifyPropertyChanged { + + private string surnameField; + + private string firstNameField; + + private string patronymicField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Surname { + get { + return this.surnameField; + } + set { + this.surnameField = value; + this.RaisePropertyChanged("Surname"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FirstName { + get { + return this.firstNameField; + } + set { + this.firstNameField = value; + this.RaisePropertyChanged("FirstName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Patronymic { + get { + return this.patronymicField; + } + set { + this.patronymicField = value; + this.RaisePropertyChanged("Patronymic"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/")] + public partial class IndType : FIOType { + + private Sex sexField; + + private bool sexFieldSpecified; + + private System.DateTime dateOfBirthField; + + private bool dateOfBirthFieldSpecified; + + private object itemField; + + private string placeBirthField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public Sex Sex { + get { + return this.sexField; + } + set { + this.sexField = value; + this.RaisePropertyChanged("Sex"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SexSpecified { + get { + return this.sexFieldSpecified; + } + set { + this.sexFieldSpecified = value; + this.RaisePropertyChanged("SexSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime DateOfBirth { + get { + return this.dateOfBirthField; + } + set { + this.dateOfBirthField = value; + this.RaisePropertyChanged("DateOfBirth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool DateOfBirthSpecified { + get { + return this.dateOfBirthFieldSpecified; + } + set { + this.dateOfBirthFieldSpecified = value; + this.RaisePropertyChanged("DateOfBirthSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ID", typeof(ID), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("SNILS", typeof(string), Order=2)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string PlaceBirth { + get { + return this.placeBirthField; + } + set { + this.placeBirthField = value; + this.RaisePropertyChanged("PlaceBirth"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/")] + public enum Sex { + + /// + M, + + /// + F, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/")] + public partial class ID : object, System.ComponentModel.INotifyPropertyChanged { + + private nsiRef typeField; + + private string seriesField; + + private string numberField; + + private System.DateTime issueDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Series { + get { + return this.seriesField; + } + set { + this.seriesField = value; + this.RaisePropertyChanged("Series"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Number { + get { + return this.numberField; + } + set { + this.numberField = value; + this.RaisePropertyChanged("Number"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime IssueDate { + get { + return this.issueDateField; + } + set { + this.issueDateField = value; + this.RaisePropertyChanged("IssueDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class VotingInitiatorIndType : FIOType { + + private VotingInitiatorIndTypeSex sexField; + + private bool sexFieldSpecified; + + private System.DateTime dateOfBirthField; + + private bool dateOfBirthFieldSpecified; + + private string sNILSField; + + private VotingInitiatorIndID votingInitiatorIndIDField; + + private string placeBirthField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public VotingInitiatorIndTypeSex Sex { + get { + return this.sexField; + } + set { + this.sexField = value; + this.RaisePropertyChanged("Sex"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SexSpecified { + get { + return this.sexFieldSpecified; + } + set { + this.sexFieldSpecified = value; + this.RaisePropertyChanged("SexSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime DateOfBirth { + get { + return this.dateOfBirthField; + } + set { + this.dateOfBirthField = value; + this.RaisePropertyChanged("DateOfBirth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool DateOfBirthSpecified { + get { + return this.dateOfBirthFieldSpecified; + } + set { + this.dateOfBirthFieldSpecified = value; + this.RaisePropertyChanged("DateOfBirthSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/", Order=2)] + public string SNILS { + get { + return this.sNILSField; + } + set { + this.sNILSField = value; + this.RaisePropertyChanged("SNILS"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public VotingInitiatorIndID VotingInitiatorIndID { + get { + return this.votingInitiatorIndIDField; + } + set { + this.votingInitiatorIndIDField = value; + this.RaisePropertyChanged("VotingInitiatorIndID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string PlaceBirth { + get { + return this.placeBirthField; + } + set { + this.placeBirthField = value; + this.RaisePropertyChanged("PlaceBirth"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum VotingInitiatorIndTypeSex { + + /// + M, + + /// + F, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class VotingInitiatorIndID : object, System.ComponentModel.INotifyPropertyChanged { + + private nsiRef typeField; + + private string seriesField; + + private string numberField; + + private System.DateTime issueDateField; + + private bool issueDateFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Series { + get { + return this.seriesField; + } + set { + this.seriesField = value; + this.RaisePropertyChanged("Series"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Number { + get { + return this.numberField; + } + set { + this.numberField = value; + this.RaisePropertyChanged("Number"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime IssueDate { + get { + return this.issueDateField; + } + set { + this.issueDateField = value; + this.RaisePropertyChanged("IssueDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IssueDateSpecified { + get { + return this.issueDateFieldSpecified; + } + set { + this.issueDateFieldSpecified = value; + this.RaisePropertyChanged("IssueDateSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountIndType : FIOType { + + private AccountIndTypeSex sexField; + + private bool sexFieldSpecified; + + private System.DateTime dateOfBirthField; + + private bool dateOfBirthFieldSpecified; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AccountIndTypeSex Sex { + get { + return this.sexField; + } + set { + this.sexField = value; + this.RaisePropertyChanged("Sex"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SexSpecified { + get { + return this.sexFieldSpecified; + } + set { + this.sexFieldSpecified = value; + this.RaisePropertyChanged("SexSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime DateOfBirth { + get { + return this.dateOfBirthField; + } + set { + this.dateOfBirthField = value; + this.RaisePropertyChanged("DateOfBirth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool DateOfBirthSpecified { + get { + return this.dateOfBirthFieldSpecified; + } + set { + this.dateOfBirthFieldSpecified = value; + this.RaisePropertyChanged("DateOfBirthSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ID", typeof(ID), Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/", Order=2)] + [System.Xml.Serialization.XmlElementAttribute("SNILS", typeof(string), Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/", Order=2)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum AccountIndTypeSex { + + /// + M, + + /// + F, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-registry-base/")] + public partial class RegOrgRootAndVersionType : object, System.ComponentModel.INotifyPropertyChanged { + + private string itemField; + + private ItemChoiceType5 itemElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("orgRootEntityGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("orgVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType5 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-registry-base/", IncludeInSchema=false)] + public enum ItemChoiceType5 { + + /// + orgRootEntityGUID, + + /// + orgVersionGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportPropertyDetails : object, System.ComponentModel.INotifyPropertyChanged { + + private string registrationNumberField; + + private System.DateTime registrationDateField; + + private string premisesNumField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private exportPropertyDetailsPropertyType propertyTypeField; + + private exportPropertyDetailsShareSize shareSizeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RegistrationNumber { + get { + return this.registrationNumberField; + } + set { + this.registrationNumberField = value; + this.RaisePropertyChanged("RegistrationNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime RegistrationDate { + get { + return this.registrationDateField; + } + set { + this.registrationDateField = value; + this.RaisePropertyChanged("RegistrationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public exportPropertyDetailsPropertyType PropertyType { + get { + return this.propertyTypeField; + } + set { + this.propertyTypeField = value; + this.RaisePropertyChanged("PropertyType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public exportPropertyDetailsShareSize ShareSize { + get { + return this.shareSizeField; + } + set { + this.shareSizeField = value; + this.RaisePropertyChanged("ShareSize"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportPropertyDetailsPropertyType : object, System.ComponentModel.INotifyPropertyChanged { + + private bool itemField; + + private ItemChoiceType6 itemElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("IndividualProperty", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("JointProperty", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ShareProperty", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public bool Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType6 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType6 { + + /// + IndividualProperty, + + /// + JointProperty, + + /// + ShareProperty, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportPropertyDetailsShareSize : object, System.ComponentModel.INotifyPropertyChanged { + + private string numeratorField; + + private string denumeratorField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)] + public string Numerator { + get { + return this.numeratorField; + } + set { + this.numeratorField = value; + this.RaisePropertyChanged("Numerator"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=1)] + public string Denumerator { + get { + return this.denumeratorField; + } + set { + this.denumeratorField = value; + this.RaisePropertyChanged("Denumerator"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class Representative : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private bool notarizedField; + + private AttachmentType[] representativeAttachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute("RepresentativeInd", typeof(RepresentativeRepresentativeInd), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RepresentativeOrg", typeof(RegOrgRootAndVersionType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool Notarized { + get { + return this.notarizedField; + } + set { + this.notarizedField = value; + this.RaisePropertyChanged("Notarized"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("RepresentativeAttachments", Order=2)] + public AttachmentType[] RepresentativeAttachments { + get { + return this.representativeAttachmentsField; + } + set { + this.representativeAttachmentsField = value; + this.RaisePropertyChanged("RepresentativeAttachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class RepresentativeRepresentativeInd : DecisionIndType { + + private string sNILSField; + + private DecisionIndID decisionIndIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/", Order=0)] + public string SNILS { + get { + return this.sNILSField; + } + set { + this.sNILSField = value; + this.RaisePropertyChanged("SNILS"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public DecisionIndID DecisionIndID { + get { + return this.decisionIndIDField; + } + set { + this.decisionIndIDField = value; + this.RaisePropertyChanged("DecisionIndID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum OwnerRefusalStatusType { + + /// + Published, + + /// + Canceled, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class OwnerRefusalType : object, System.ComponentModel.INotifyPropertyChanged { + + private Owner ownerField; + + private PropertyDetails[] propertyDetailsField; + + private Representative representativeField; + + private AttachmentType[] refusalAttachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public Owner Owner { + get { + return this.ownerField; + } + set { + this.ownerField = value; + this.RaisePropertyChanged("Owner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("PropertyDetails", Order=1)] + public PropertyDetails[] PropertyDetails { + get { + return this.propertyDetailsField; + } + set { + this.propertyDetailsField = value; + this.RaisePropertyChanged("PropertyDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public Representative Representative { + get { + return this.representativeField; + } + set { + this.representativeField = value; + this.RaisePropertyChanged("Representative"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("RefusalAttachments", Order=3)] + public AttachmentType[] RefusalAttachments { + get { + return this.refusalAttachmentsField; + } + set { + this.refusalAttachmentsField = value; + this.RaisePropertyChanged("RefusalAttachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PropertyDetails : object, System.ComponentModel.INotifyPropertyChanged { + + private string registrationNumberField; + + private System.DateTime registrationDateField; + + private string premisesNumField; + + private decimal totalAreaField; + + private PropertyDetailsPropertyType propertyTypeField; + + private PropertyDetailsShareSize shareSizeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RegistrationNumber { + get { + return this.registrationNumberField; + } + set { + this.registrationNumberField = value; + this.RaisePropertyChanged("RegistrationNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime RegistrationDate { + get { + return this.registrationDateField; + } + set { + this.registrationDateField = value; + this.RaisePropertyChanged("RegistrationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public PropertyDetailsPropertyType PropertyType { + get { + return this.propertyTypeField; + } + set { + this.propertyTypeField = value; + this.RaisePropertyChanged("PropertyType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public PropertyDetailsShareSize ShareSize { + get { + return this.shareSizeField; + } + set { + this.shareSizeField = value; + this.RaisePropertyChanged("ShareSize"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PropertyDetailsPropertyType : object, System.ComponentModel.INotifyPropertyChanged { + + private bool itemField; + + private ItemChoiceType21 itemElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("IndividualProperty", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("JointProperty", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ShareProperty", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public bool Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType21 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType21 { + + /// + IndividualProperty, + + /// + JointProperty, + + /// + ShareProperty, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PropertyDetailsShareSize : object, System.ComponentModel.INotifyPropertyChanged { + + private string numeratorField; + + private string denumeratorField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)] + public string Numerator { + get { + return this.numeratorField; + } + set { + this.numeratorField = value; + this.RaisePropertyChanged("Numerator"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=1)] + public string Denumerator { + get { + return this.denumeratorField; + } + set { + this.denumeratorField = value; + this.RaisePropertyChanged("Denumerator"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportQuestionOnDecisionType : object, System.ComponentModel.INotifyPropertyChanged { + + private string questionNumberField; + + private string questionNameField; + + private decimal itemField; + + private ItemChoiceType22 itemElementNameField; + + private bool isDigitalDecisionField; + + private bool isDigitalDecisionFieldSpecified; + + public exportQuestionOnDecisionType() { + this.isDigitalDecisionField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="nonNegativeInteger", Order=0)] + public string QuestionNumber { + get { + return this.questionNumberField; + } + set { + this.questionNumberField = value; + this.RaisePropertyChanged("QuestionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string QuestionName { + get { + return this.questionNameField; + } + set { + this.questionNameField = value; + this.RaisePropertyChanged("QuestionName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OwnerAbstent", typeof(decimal), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("OwnerAgainst", typeof(decimal), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("OwnerAgree", typeof(decimal), Order=2)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public decimal Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType22 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool IsDigitalDecision { + get { + return this.isDigitalDecisionField; + } + set { + this.isDigitalDecisionField = value; + this.RaisePropertyChanged("IsDigitalDecision"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsDigitalDecisionSpecified { + get { + return this.isDigitalDecisionFieldSpecified; + } + set { + this.isDigitalDecisionFieldSpecified = value; + this.RaisePropertyChanged("IsDigitalDecisionSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType22 { + + /// + OwnerAbstent, + + /// + OwnerAgainst, + + /// + OwnerAgree, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class OwnerDecisionType : object, System.ComponentModel.INotifyPropertyChanged { + + private Owner ownerField; + + private PropertyDetails[] propertyDetailsField; + + private Representative representativeField; + + private QuestionOnDecisionType questionOnDecisionField; + + private AttachmentType[] decisionAttachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public Owner Owner { + get { + return this.ownerField; + } + set { + this.ownerField = value; + this.RaisePropertyChanged("Owner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("PropertyDetails", Order=1)] + public PropertyDetails[] PropertyDetails { + get { + return this.propertyDetailsField; + } + set { + this.propertyDetailsField = value; + this.RaisePropertyChanged("PropertyDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public Representative Representative { + get { + return this.representativeField; + } + set { + this.representativeField = value; + this.RaisePropertyChanged("Representative"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public QuestionOnDecisionType QuestionOnDecision { + get { + return this.questionOnDecisionField; + } + set { + this.questionOnDecisionField = value; + this.RaisePropertyChanged("QuestionOnDecision"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("DecisionAttachments", Order=4)] + public AttachmentType[] DecisionAttachments { + get { + return this.decisionAttachmentsField; + } + set { + this.decisionAttachmentsField = value; + this.RaisePropertyChanged("DecisionAttachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class QuestionOnDecisionType : object, System.ComponentModel.INotifyPropertyChanged { + + private string questionNumberField; + + private bool itemField; + + private ItemChoiceType7 itemElementNameField; + + private bool isDigitalDecisionField; + + private bool isDigitalDecisionFieldSpecified; + + public QuestionOnDecisionType() { + this.isDigitalDecisionField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="nonNegativeInteger", Order=0)] + public string QuestionNumber { + get { + return this.questionNumberField; + } + set { + this.questionNumberField = value; + this.RaisePropertyChanged("QuestionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OwnerAbstent", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("OwnerAgainst", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("OwnerAgree", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public bool Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType7 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public bool IsDigitalDecision { + get { + return this.isDigitalDecisionField; + } + set { + this.isDigitalDecisionField = value; + this.RaisePropertyChanged("IsDigitalDecision"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsDigitalDecisionSpecified { + get { + return this.isDigitalDecisionFieldSpecified; + } + set { + this.isDigitalDecisionFieldSpecified = value; + this.RaisePropertyChanged("IsDigitalDecisionSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType7 { + + /// + OwnerAbstent, + + /// + OwnerAgainst, + + /// + OwnerAgree, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PublicPropertyContractType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private string fIASHouseGuidField; + + private string contractNumberField; + + private System.DateTime dateField; + + private System.DateTime startDateField; + + private System.DateTime endDateField; + + private string contractObjectField; + + private string commentsField; + + private decimal paymentField; + + private bool paymentFieldSpecified; + + private string moneySpentDirectionField; + + private AttachmentType[] contractAttachmentField; + + private PublicPropertyContractTypeRentAgrConfirmationDocument[] rentAgrConfirmationDocumentField; + + private bool isGratuitousBasisField; + + private bool isGratuitousBasisFieldSpecified; + + public PublicPropertyContractType() { + this.isGratuitousBasisField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Entrepreneur", typeof(IndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Organization", typeof(RegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ContractNumber { + get { + return this.contractNumberField; + } + set { + this.contractNumberField = value; + this.RaisePropertyChanged("ContractNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=4)] + public System.DateTime StartDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("StartDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=5)] + public System.DateTime EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string ContractObject { + get { + return this.contractObjectField; + } + set { + this.contractObjectField = value; + this.RaisePropertyChanged("ContractObject"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public string Comments { + get { + return this.commentsField; + } + set { + this.commentsField = value; + this.RaisePropertyChanged("Comments"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public decimal Payment { + get { + return this.paymentField; + } + set { + this.paymentField = value; + this.RaisePropertyChanged("Payment"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool PaymentSpecified { + get { + return this.paymentFieldSpecified; + } + set { + this.paymentFieldSpecified = value; + this.RaisePropertyChanged("PaymentSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public string MoneySpentDirection { + get { + return this.moneySpentDirectionField; + } + set { + this.moneySpentDirectionField = value; + this.RaisePropertyChanged("MoneySpentDirection"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractAttachment", Order=10)] + public AttachmentType[] ContractAttachment { + get { + return this.contractAttachmentField; + } + set { + this.contractAttachmentField = value; + this.RaisePropertyChanged("ContractAttachment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("RentAgrConfirmationDocument", Order=11)] + public PublicPropertyContractTypeRentAgrConfirmationDocument[] RentAgrConfirmationDocument { + get { + return this.rentAgrConfirmationDocumentField; + } + set { + this.rentAgrConfirmationDocumentField = value; + this.RaisePropertyChanged("RentAgrConfirmationDocument"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=12)] + public bool IsGratuitousBasis { + get { + return this.isGratuitousBasisField; + } + set { + this.isGratuitousBasisField = value; + this.RaisePropertyChanged("IsGratuitousBasis"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsGratuitousBasisSpecified { + get { + return this.isGratuitousBasisFieldSpecified; + } + set { + this.isGratuitousBasisFieldSpecified = value; + this.RaisePropertyChanged("IsGratuitousBasisSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-registry-base/")] + public partial class RegOrgType : object, System.ComponentModel.INotifyPropertyChanged { + + private string orgRootEntityGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string orgRootEntityGUID { + get { + return this.orgRootEntityGUIDField; + } + set { + this.orgRootEntityGUIDField = value; + this.RaisePropertyChanged("orgRootEntityGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PublicPropertyContractTypeRentAgrConfirmationDocument : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ProtocolGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ProtocolMeetingOwners", typeof(PublicPropertyContractTypeRentAgrConfirmationDocumentProtocolMeetingOwners), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PublicPropertyContractTypeRentAgrConfirmationDocumentProtocolMeetingOwners : object, System.ComponentModel.INotifyPropertyChanged { + + private string protocolNumField; + + private System.DateTime protocolDateField; + + private AttachmentType[] trustDocAttachmentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ProtocolNum { + get { + return this.protocolNumField; + } + set { + this.protocolNumField = value; + this.RaisePropertyChanged("ProtocolNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime ProtocolDate { + get { + return this.protocolDateField; + } + set { + this.protocolDateField = value; + this.RaisePropertyChanged("ProtocolDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TrustDocAttachment", Order=2)] + public AttachmentType[] TrustDocAttachment { + get { + return this.trustDocAttachmentField; + } + set { + this.trustDocAttachmentField = value; + this.RaisePropertyChanged("TrustDocAttachment"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(exportVotingProtocolResultType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] fIASHouseGuidField; + + private RegOrgType organizationGuidField; + + private string protocolNumField; + + private System.DateTime protocolDateField; + + private object itemField; + + private MeetingTypeType meetingTypeField; + + private bool meetingTypeFieldSpecified; + + private bool item1Field; + + private Item1ChoiceType9 item1ElementNameField; + + private ProtocolExportTypeVoteInitiators[] voteInitiatorsField; + + private ProtocolExportTypeMeetingEligibility meetingEligibilityField; + + private ProtocolExportTypeDecisionList[] decisionListField; + + private string modificationField; + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", Order=0)] + public string[] FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public RegOrgType OrganizationGuid { + get { + return this.organizationGuidField; + } + set { + this.organizationGuidField = value; + this.RaisePropertyChanged("OrganizationGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ProtocolNum { + get { + return this.protocolNumField; + } + set { + this.protocolNumField = value; + this.RaisePropertyChanged("ProtocolNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime ProtocolDate { + get { + return this.protocolDateField; + } + set { + this.protocolDateField = value; + this.RaisePropertyChanged("ProtocolDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AVoting", typeof(ProtocolExportTypeAVoting), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("EVoting", typeof(ProtocolExportTypeEVoting), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("Meeting", typeof(ProtocolExportTypeMeeting), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("MeetingAVoting", typeof(ProtocolExportTypeMeetingAVoting), Order=4)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public MeetingTypeType MeetingType { + get { + return this.meetingTypeField; + } + set { + this.meetingTypeField = value; + this.RaisePropertyChanged("MeetingType"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MeetingTypeSpecified { + get { + return this.meetingTypeFieldSpecified; + } + set { + this.meetingTypeFieldSpecified = value; + this.RaisePropertyChanged("MeetingTypeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AnnualVoting", typeof(bool), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("ExtraVoting", typeof(bool), Order=6)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("Item1ElementName")] + public bool Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public Item1ChoiceType9 Item1ElementName { + get { + return this.item1ElementNameField; + } + set { + this.item1ElementNameField = value; + this.RaisePropertyChanged("Item1ElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("VoteInitiators", Order=8)] + public ProtocolExportTypeVoteInitiators[] VoteInitiators { + get { + return this.voteInitiatorsField; + } + set { + this.voteInitiatorsField = value; + this.RaisePropertyChanged("VoteInitiators"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public ProtocolExportTypeMeetingEligibility MeetingEligibility { + get { + return this.meetingEligibilityField; + } + set { + this.meetingEligibilityField = value; + this.RaisePropertyChanged("MeetingEligibility"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("DecisionList", Order=10)] + public ProtocolExportTypeDecisionList[] DecisionList { + get { + return this.decisionListField; + } + set { + this.decisionListField = value; + this.RaisePropertyChanged("DecisionList"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public string Modification { + get { + return this.modificationField; + } + set { + this.modificationField = value; + this.RaisePropertyChanged("Modification"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolExportTypeAVoting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime startMakingDecisionDateField; + + private bool startMakingDecisionDateFieldSpecified; + + private System.DateTime endMakingDecisionDateField; + + private bool endMakingDecisionDateFieldSpecified; + + private string resolutionPlaceField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime StartMakingDecisionDate { + get { + return this.startMakingDecisionDateField; + } + set { + this.startMakingDecisionDateField = value; + this.RaisePropertyChanged("StartMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StartMakingDecisionDateSpecified { + get { + return this.startMakingDecisionDateFieldSpecified; + } + set { + this.startMakingDecisionDateFieldSpecified = value; + this.RaisePropertyChanged("StartMakingDecisionDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime EndMakingDecisionDate { + get { + return this.endMakingDecisionDateField; + } + set { + this.endMakingDecisionDateField = value; + this.RaisePropertyChanged("EndMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EndMakingDecisionDateSpecified { + get { + return this.endMakingDecisionDateFieldSpecified; + } + set { + this.endMakingDecisionDateFieldSpecified = value; + this.RaisePropertyChanged("EndMakingDecisionDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ResolutionPlace { + get { + return this.resolutionPlaceField; + } + set { + this.resolutionPlaceField = value; + this.RaisePropertyChanged("ResolutionPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=3)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class Attachments : AttachmentType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolExportTypeEVoting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime eVotingDateBeginField; + + private System.DateTime eVotingDateEndField; + + private string disciplineField; + + private string infoReviewField; + + private VotingSystemDetailsType votingSystemDetailsField; + + private bool firstVotingField; + + private bool firstVotingFieldSpecified; + + private Attachments[] attachmentsField; + + public ProtocolExportTypeEVoting() { + this.firstVotingField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime EVotingDateBegin { + get { + return this.eVotingDateBeginField; + } + set { + this.eVotingDateBeginField = value; + this.RaisePropertyChanged("EVotingDateBegin"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime EVotingDateEnd { + get { + return this.eVotingDateEndField; + } + set { + this.eVotingDateEndField = value; + this.RaisePropertyChanged("EVotingDateEnd"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Discipline { + get { + return this.disciplineField; + } + set { + this.disciplineField = value; + this.RaisePropertyChanged("Discipline"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string InfoReview { + get { + return this.infoReviewField; + } + set { + this.infoReviewField = value; + this.RaisePropertyChanged("InfoReview"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public VotingSystemDetailsType VotingSystemDetails { + get { + return this.votingSystemDetailsField; + } + set { + this.votingSystemDetailsField = value; + this.RaisePropertyChanged("VotingSystemDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool FirstVoting { + get { + return this.firstVotingField; + } + set { + this.firstVotingField = value; + this.RaisePropertyChanged("FirstVoting"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool FirstVotingSpecified { + get { + return this.firstVotingFieldSpecified; + } + set { + this.firstVotingFieldSpecified = value; + this.RaisePropertyChanged("FirstVotingSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=6)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class VotingSystemDetailsType : object, System.ComponentModel.INotifyPropertyChanged { + + private VotingSystemType votingSystemField; + + private string itemField; + + private ItemChoiceType15 itemElementNameField; + + private string votingSystemUrlField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public VotingSystemType VotingSystem { + get { + return this.votingSystemField; + } + set { + this.votingSystemField = value; + this.RaisePropertyChanged("VotingSystem"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("VotingSystemGuid", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("VotingSystemName", typeof(string), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType15 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string VotingSystemUrl { + get { + return this.votingSystemUrlField; + } + set { + this.votingSystemUrlField = value; + this.RaisePropertyChanged("VotingSystemUrl"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum VotingSystemType { + + /// + HCS, + + /// + PublicServicesPortal, + + /// + Regional, + + /// + Other, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType15 { + + /// + VotingSystemGuid, + + /// + VotingSystemName, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolExportTypeMeeting : VoitingType { + + private System.DateTime meetingDateField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime MeetingDate { + get { + return this.meetingDateField; + } + set { + this.meetingDateField = value; + this.RaisePropertyChanged("MeetingDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=1)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class VoitingType : object, System.ComponentModel.INotifyPropertyChanged { + + private string votingPlaceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string VotingPlace { + get { + return this.votingPlaceField; + } + set { + this.votingPlaceField = value; + this.RaisePropertyChanged("VotingPlace"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolExportTypeMeetingAVoting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime meetingDateField; + + private string votingPlaceField; + + private System.DateTime startMakingDecisionDateField; + + private bool startMakingDecisionDateFieldSpecified; + + private System.DateTime endMakingDecisionDateField; + + private bool endMakingDecisionDateFieldSpecified; + + private string resolutionPlaceField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime MeetingDate { + get { + return this.meetingDateField; + } + set { + this.meetingDateField = value; + this.RaisePropertyChanged("MeetingDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string VotingPlace { + get { + return this.votingPlaceField; + } + set { + this.votingPlaceField = value; + this.RaisePropertyChanged("VotingPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public System.DateTime StartMakingDecisionDate { + get { + return this.startMakingDecisionDateField; + } + set { + this.startMakingDecisionDateField = value; + this.RaisePropertyChanged("StartMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StartMakingDecisionDateSpecified { + get { + return this.startMakingDecisionDateFieldSpecified; + } + set { + this.startMakingDecisionDateFieldSpecified = value; + this.RaisePropertyChanged("StartMakingDecisionDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public System.DateTime EndMakingDecisionDate { + get { + return this.endMakingDecisionDateField; + } + set { + this.endMakingDecisionDateField = value; + this.RaisePropertyChanged("EndMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EndMakingDecisionDateSpecified { + get { + return this.endMakingDecisionDateFieldSpecified; + } + set { + this.endMakingDecisionDateFieldSpecified = value; + this.RaisePropertyChanged("EndMakingDecisionDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string ResolutionPlace { + get { + return this.resolutionPlaceField; + } + set { + this.resolutionPlaceField = value; + this.RaisePropertyChanged("ResolutionPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=5)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum MeetingTypeType { + + /// + Owners, + + /// + Homeowners, + + /// + Cooperative, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum Item1ChoiceType9 { + + /// + AnnualVoting, + + /// + ExtraVoting, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolExportTypeVoteInitiators : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(VotingInitiatorIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Org", typeof(RegOrgVersionType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/organizations-registry-base/")] + public partial class RegOrgVersionType : object, System.ComponentModel.INotifyPropertyChanged { + + private string orgVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string orgVersionGUID { + get { + return this.orgVersionGUIDField; + } + set { + this.orgVersionGUIDField = value; + this.RaisePropertyChanged("orgVersionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ProtocolExportTypeMeetingEligibility { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolExportTypeDecisionList : object, System.ComponentModel.INotifyPropertyChanged { + + private string questionNumberField; + + private string questionNameField; + + private nsiRef decisionsTypeField; + + private ProtocolExportTypeDecisionListHomeownersDecisionsType homeownersDecisionsTypeField; + + private bool itemField; + + private ItemChoiceType20 itemElementNameField; + + private decimal agreeField; + + private bool agreeFieldSpecified; + + private decimal againstField; + + private bool againstFieldSpecified; + + private decimal abstentField; + + private bool abstentFieldSpecified; + + private nsiRef formingFundField; + + private nsiRef managementTypeField; + + private VotingSystemDetailsType votingSystemDetailsField; + + private AdminOfGeneralMeetingType adminOfGeneralMeetingField; + + private ProtocolExportTypeDecisionListVotingResume votingResumeField; + + private bool votingResumeFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="nonNegativeInteger", Order=0)] + public string QuestionNumber { + get { + return this.questionNumberField; + } + set { + this.questionNumberField = value; + this.RaisePropertyChanged("QuestionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string QuestionName { + get { + return this.questionNameField; + } + set { + this.questionNameField = value; + this.RaisePropertyChanged("QuestionName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef DecisionsType { + get { + return this.decisionsTypeField; + } + set { + this.decisionsTypeField = value; + this.RaisePropertyChanged("DecisionsType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public ProtocolExportTypeDecisionListHomeownersDecisionsType HomeownersDecisionsType { + get { + return this.homeownersDecisionsTypeField; + } + set { + this.homeownersDecisionsTypeField = value; + this.RaisePropertyChanged("HomeownersDecisionsType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CharterContained", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("CharterNotContained", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public bool Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType20 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public decimal Agree { + get { + return this.agreeField; + } + set { + this.agreeField = value; + this.RaisePropertyChanged("Agree"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AgreeSpecified { + get { + return this.agreeFieldSpecified; + } + set { + this.agreeFieldSpecified = value; + this.RaisePropertyChanged("AgreeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public decimal Against { + get { + return this.againstField; + } + set { + this.againstField = value; + this.RaisePropertyChanged("Against"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AgainstSpecified { + get { + return this.againstFieldSpecified; + } + set { + this.againstFieldSpecified = value; + this.RaisePropertyChanged("AgainstSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public decimal Abstent { + get { + return this.abstentField; + } + set { + this.abstentField = value; + this.RaisePropertyChanged("Abstent"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AbstentSpecified { + get { + return this.abstentFieldSpecified; + } + set { + this.abstentFieldSpecified = value; + this.RaisePropertyChanged("AbstentSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public nsiRef FormingFund { + get { + return this.formingFundField; + } + set { + this.formingFundField = value; + this.RaisePropertyChanged("FormingFund"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public nsiRef ManagementType { + get { + return this.managementTypeField; + } + set { + this.managementTypeField = value; + this.RaisePropertyChanged("ManagementType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public VotingSystemDetailsType VotingSystemDetails { + get { + return this.votingSystemDetailsField; + } + set { + this.votingSystemDetailsField = value; + this.RaisePropertyChanged("VotingSystemDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=12)] + public AdminOfGeneralMeetingType AdminOfGeneralMeeting { + get { + return this.adminOfGeneralMeetingField; + } + set { + this.adminOfGeneralMeetingField = value; + this.RaisePropertyChanged("AdminOfGeneralMeeting"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=13)] + public ProtocolExportTypeDecisionListVotingResume votingResume { + get { + return this.votingResumeField; + } + set { + this.votingResumeField = value; + this.RaisePropertyChanged("votingResume"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool votingResumeSpecified { + get { + return this.votingResumeFieldSpecified; + } + set { + this.votingResumeFieldSpecified = value; + this.RaisePropertyChanged("votingResumeSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolExportTypeDecisionListHomeownersDecisionsType : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType20 { + + /// + CharterContained, + + /// + CharterNotContained, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AdminOfGeneralMeetingType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("CitizenAdministator", typeof(AdminOfGeneralMeetingTypeCitizenAdministator), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LegalEntityAdministrator", typeof(RegOrgRootAndVersionType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AdminOfGeneralMeetingTypeCitizenAdministator : object, System.ComponentModel.INotifyPropertyChanged { + + private VotingInitiatorIndType indField; + + private string fIASHouseGuidField; + + private string placeAddressField; + + private string[] phoneField; + + private string[] emailField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public VotingInitiatorIndType Ind { + get { + return this.indField; + } + set { + this.indField = value; + this.RaisePropertyChanged("Ind"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string PlaceAddress { + get { + return this.placeAddressField; + } + set { + this.placeAddressField = value; + this.RaisePropertyChanged("PlaceAddress"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Phone", Order=3)] + public string[] Phone { + get { + return this.phoneField; + } + set { + this.phoneField = value; + this.RaisePropertyChanged("Phone"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Email", Order=4)] + public string[] Email { + get { + return this.emailField; + } + set { + this.emailField = value; + this.RaisePropertyChanged("Email"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ProtocolExportTypeDecisionListVotingResume { + + /// + M, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportVotingProtocolResultType : ProtocolExportType { + + private exportVotingProtocolResultTypeStatusProtocol statusProtocolField; + + private string votingProtocolGUIDField; + + private string rootProtocolGUIDField; + + private exportVotingProtocolResultTypeStatusVersionProtocol statusVersionProtocolField; + + private int versionNumberField; + + private System.DateTime versionDateModificationField; + + private bool versionDateModificationFieldSpecified; + + private System.DateTime versionDatePlacementField; + + private bool versionDatePlacementFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public exportVotingProtocolResultTypeStatusProtocol StatusProtocol { + get { + return this.statusProtocolField; + } + set { + this.statusProtocolField = value; + this.RaisePropertyChanged("StatusProtocol"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string VotingProtocolGUID { + get { + return this.votingProtocolGUIDField; + } + set { + this.votingProtocolGUIDField = value; + this.RaisePropertyChanged("VotingProtocolGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string RootProtocolGUID { + get { + return this.rootProtocolGUIDField; + } + set { + this.rootProtocolGUIDField = value; + this.RaisePropertyChanged("RootProtocolGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public exportVotingProtocolResultTypeStatusVersionProtocol StatusVersionProtocol { + get { + return this.statusVersionProtocolField; + } + set { + this.statusVersionProtocolField = value; + this.RaisePropertyChanged("StatusVersionProtocol"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public int VersionNumber { + get { + return this.versionNumberField; + } + set { + this.versionNumberField = value; + this.RaisePropertyChanged("VersionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=5)] + public System.DateTime VersionDateModification { + get { + return this.versionDateModificationField; + } + set { + this.versionDateModificationField = value; + this.RaisePropertyChanged("VersionDateModification"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool VersionDateModificationSpecified { + get { + return this.versionDateModificationFieldSpecified; + } + set { + this.versionDateModificationFieldSpecified = value; + this.RaisePropertyChanged("VersionDateModificationSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=6)] + public System.DateTime VersionDatePlacement { + get { + return this.versionDatePlacementField; + } + set { + this.versionDatePlacementField = value; + this.RaisePropertyChanged("VersionDatePlacement"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool VersionDatePlacementSpecified { + get { + return this.versionDatePlacementFieldSpecified; + } + set { + this.versionDatePlacementFieldSpecified = value; + this.RaisePropertyChanged("VersionDatePlacementSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportVotingProtocolResultTypeStatusProtocol { + + /// + Created, + + /// + Posted, + + /// + Edited, + + /// + Annuled, + + /// + PostedFromAnotherSystem, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportVotingProtocolResultTypeStatusVersionProtocol { + + /// + Created, + + /// + Posted, + + /// + Edited, + + /// + Annuled, + + /// + PostedFromAnotherSystem, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExternalVotingProtocolType : object, System.ComponentModel.INotifyPropertyChanged { + + private string protocolNumField; + + private System.DateTime protocolDateField; + + private ExternalVotingProtocolTypeMeetingEligibility meetingEligibilityField; + + private ExternalVotingProtocolTypeDecisionList[] decisionListField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ProtocolNum { + get { + return this.protocolNumField; + } + set { + this.protocolNumField = value; + this.RaisePropertyChanged("ProtocolNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime ProtocolDate { + get { + return this.protocolDateField; + } + set { + this.protocolDateField = value; + this.RaisePropertyChanged("ProtocolDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public ExternalVotingProtocolTypeMeetingEligibility MeetingEligibility { + get { + return this.meetingEligibilityField; + } + set { + this.meetingEligibilityField = value; + this.RaisePropertyChanged("MeetingEligibility"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("DecisionList", Order=3)] + public ExternalVotingProtocolTypeDecisionList[] DecisionList { + get { + return this.decisionListField; + } + set { + this.decisionListField = value; + this.RaisePropertyChanged("DecisionList"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=4)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ExternalVotingProtocolTypeMeetingEligibility { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExternalVotingProtocolTypeDecisionList : object, System.ComponentModel.INotifyPropertyChanged { + + private string questionNumberField; + + private decimal agreeField; + + private bool agreeFieldSpecified; + + private decimal againstField; + + private bool againstFieldSpecified; + + private decimal abstentField; + + private bool abstentFieldSpecified; + + private ExternalVotingProtocolTypeDecisionListVotingResume votingResumeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="nonNegativeInteger", Order=0)] + public string QuestionNumber { + get { + return this.questionNumberField; + } + set { + this.questionNumberField = value; + this.RaisePropertyChanged("QuestionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Agree { + get { + return this.agreeField; + } + set { + this.agreeField = value; + this.RaisePropertyChanged("Agree"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AgreeSpecified { + get { + return this.agreeFieldSpecified; + } + set { + this.agreeFieldSpecified = value; + this.RaisePropertyChanged("AgreeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal Against { + get { + return this.againstField; + } + set { + this.againstField = value; + this.RaisePropertyChanged("Against"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AgainstSpecified { + get { + return this.againstFieldSpecified; + } + set { + this.againstFieldSpecified = value; + this.RaisePropertyChanged("AgainstSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal Abstent { + get { + return this.abstentField; + } + set { + this.abstentField = value; + this.RaisePropertyChanged("Abstent"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AbstentSpecified { + get { + return this.abstentFieldSpecified; + } + set { + this.abstentFieldSpecified = value; + this.RaisePropertyChanged("AbstentSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public ExternalVotingProtocolTypeDecisionListVotingResume VotingResume { + get { + return this.votingResumeField; + } + set { + this.votingResumeField = value; + this.RaisePropertyChanged("VotingResume"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ExternalVotingProtocolTypeDecisionListVotingResume { + + /// + M, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AnnulmentProtocolType : object, System.ComponentModel.INotifyPropertyChanged { + + private string modificationField; + + private object itemField; + + private System.DateTime annulmentDateField; + + private bool annulmentDateFieldSpecified; + + private string annulmentNumberField; + + private nsiRef nSIModificationField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Modification { + get { + return this.modificationField; + } + set { + this.modificationField = value; + this.RaisePropertyChanged("Modification"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AnnulmentOrganization", typeof(RegOrgType), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("AnnulmentOrganizationText", typeof(string), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime AnnulmentDate { + get { + return this.annulmentDateField; + } + set { + this.annulmentDateField = value; + this.RaisePropertyChanged("AnnulmentDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AnnulmentDateSpecified { + get { + return this.annulmentDateFieldSpecified; + } + set { + this.annulmentDateFieldSpecified = value; + this.RaisePropertyChanged("AnnulmentDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AnnulmentNumber { + get { + return this.annulmentNumberField; + } + set { + this.annulmentNumberField = value; + this.RaisePropertyChanged("AnnulmentNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public nsiRef NSIModification { + get { + return this.nSIModificationField; + } + set { + this.nSIModificationField = value; + this.RaisePropertyChanged("NSIModification"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=5)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(exportVotingMessageResultType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] fIASHouseGUIDField; + + private RegOrgType organizationGuidField; + + private string messageNumField; + + private System.DateTime messageDateField; + + private bool itemField; + + private ItemChoiceType18 itemElementNameField; + + private object item1Field; + + private MeetingTypeType meetingTypeField; + + private VoteInitiators[] voteInitiatorsField; + + private MessageExportTypeDecisionList[] decisionListField; + + private string modificationReasonField; + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGUID", Order=0)] + public string[] FIASHouseGUID { + get { + return this.fIASHouseGUIDField; + } + set { + this.fIASHouseGUIDField = value; + this.RaisePropertyChanged("FIASHouseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public RegOrgType OrganizationGuid { + get { + return this.organizationGuidField; + } + set { + this.organizationGuidField = value; + this.RaisePropertyChanged("OrganizationGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string MessageNum { + get { + return this.messageNumField; + } + set { + this.messageNumField = value; + this.RaisePropertyChanged("MessageNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime MessageDate { + get { + return this.messageDateField; + } + set { + this.messageDateField = value; + this.RaisePropertyChanged("MessageDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AnnualVoting", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("ExtraVoting", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public bool Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType18 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AVoting", typeof(MessageExportTypeAVoting), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("EVoting", typeof(MessageExportTypeEVoting), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("Meeting", typeof(MessageExportTypeMeeting), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("MeetingAVoting", typeof(MessageExportTypeMeetingAVoting), Order=6)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public MeetingTypeType MeetingType { + get { + return this.meetingTypeField; + } + set { + this.meetingTypeField = value; + this.RaisePropertyChanged("MeetingType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("VoteInitiators", Order=8)] + public VoteInitiators[] VoteInitiators { + get { + return this.voteInitiatorsField; + } + set { + this.voteInitiatorsField = value; + this.RaisePropertyChanged("VoteInitiators"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("DecisionList", Order=9)] + public MessageExportTypeDecisionList[] DecisionList { + get { + return this.decisionListField; + } + set { + this.decisionListField = value; + this.RaisePropertyChanged("DecisionList"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public string ModificationReason { + get { + return this.modificationReasonField; + } + set { + this.modificationReasonField = value; + this.RaisePropertyChanged("ModificationReason"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType18 { + + /// + AnnualVoting, + + /// + ExtraVoting, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageExportTypeAVoting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime startMakingDecisionDateField; + + private System.DateTime endMakingDecisionDateField; + + private string resolutionPlaceField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime StartMakingDecisionDate { + get { + return this.startMakingDecisionDateField; + } + set { + this.startMakingDecisionDateField = value; + this.RaisePropertyChanged("StartMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime EndMakingDecisionDate { + get { + return this.endMakingDecisionDateField; + } + set { + this.endMakingDecisionDateField = value; + this.RaisePropertyChanged("EndMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ResolutionPlace { + get { + return this.resolutionPlaceField; + } + set { + this.resolutionPlaceField = value; + this.RaisePropertyChanged("ResolutionPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=3)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageExportTypeEVoting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime eVotingDateBeginField; + + private System.DateTime eVotingDateEndField; + + private string disciplineField; + + private string infoReviewField; + + private VotingSystemDetailsType votingSystemDetailsField; + + private bool firstVotingField; + + private bool firstVotingFieldSpecified; + + private AdminOfGeneralMeetingType adminOfGeneralMeetingField; + + private string adminAddressField; + + private Attachments[] attachmentsField; + + public MessageExportTypeEVoting() { + this.firstVotingField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime EVotingDateBegin { + get { + return this.eVotingDateBeginField; + } + set { + this.eVotingDateBeginField = value; + this.RaisePropertyChanged("EVotingDateBegin"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime EVotingDateEnd { + get { + return this.eVotingDateEndField; + } + set { + this.eVotingDateEndField = value; + this.RaisePropertyChanged("EVotingDateEnd"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Discipline { + get { + return this.disciplineField; + } + set { + this.disciplineField = value; + this.RaisePropertyChanged("Discipline"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string InfoReview { + get { + return this.infoReviewField; + } + set { + this.infoReviewField = value; + this.RaisePropertyChanged("InfoReview"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public VotingSystemDetailsType VotingSystemDetails { + get { + return this.votingSystemDetailsField; + } + set { + this.votingSystemDetailsField = value; + this.RaisePropertyChanged("VotingSystemDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool FirstVoting { + get { + return this.firstVotingField; + } + set { + this.firstVotingField = value; + this.RaisePropertyChanged("FirstVoting"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool FirstVotingSpecified { + get { + return this.firstVotingFieldSpecified; + } + set { + this.firstVotingFieldSpecified = value; + this.RaisePropertyChanged("FirstVotingSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public AdminOfGeneralMeetingType AdminOfGeneralMeeting { + get { + return this.adminOfGeneralMeetingField; + } + set { + this.adminOfGeneralMeetingField = value; + this.RaisePropertyChanged("AdminOfGeneralMeeting"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public string AdminAddress { + get { + return this.adminAddressField; + } + set { + this.adminAddressField = value; + this.RaisePropertyChanged("AdminAddress"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=8)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageExportTypeMeeting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime meetingDateField; + + private string votingPlaceField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime MeetingDate { + get { + return this.meetingDateField; + } + set { + this.meetingDateField = value; + this.RaisePropertyChanged("MeetingDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string VotingPlace { + get { + return this.votingPlaceField; + } + set { + this.votingPlaceField = value; + this.RaisePropertyChanged("VotingPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=2)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageExportTypeMeetingAVoting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime startMakingDecisionDateField; + + private System.DateTime endMakingDecisionDateField; + + private string resolutionPlaceField; + + private System.DateTime meetingDateField; + + private string votingPlaceField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime StartMakingDecisionDate { + get { + return this.startMakingDecisionDateField; + } + set { + this.startMakingDecisionDateField = value; + this.RaisePropertyChanged("StartMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime EndMakingDecisionDate { + get { + return this.endMakingDecisionDateField; + } + set { + this.endMakingDecisionDateField = value; + this.RaisePropertyChanged("EndMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ResolutionPlace { + get { + return this.resolutionPlaceField; + } + set { + this.resolutionPlaceField = value; + this.RaisePropertyChanged("ResolutionPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public System.DateTime MeetingDate { + get { + return this.meetingDateField; + } + set { + this.meetingDateField = value; + this.RaisePropertyChanged("MeetingDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string VotingPlace { + get { + return this.votingPlaceField; + } + set { + this.votingPlaceField = value; + this.RaisePropertyChanged("VotingPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=5)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class VoteInitiators : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(VotingInitiatorIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Org", typeof(RegOrgRootAndVersionType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageExportTypeDecisionList : object, System.ComponentModel.INotifyPropertyChanged { + + private string questionNumberField; + + private string questionNameField; + + private nsiRef decisionsTypeField; + + private MessageExportTypeDecisionListHomeownersDecisionsType homeownersDecisionsTypeField; + + private bool itemField; + + private ItemChoiceType19 itemElementNameField; + + private nsiRef formingFundField; + + private nsiRef managementTypeField; + + private VotingSystemDetailsType votingSystemDetailsField; + + private AdminOfGeneralMeetingType adminOfGeneralMeetingField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="nonNegativeInteger", Order=0)] + public string QuestionNumber { + get { + return this.questionNumberField; + } + set { + this.questionNumberField = value; + this.RaisePropertyChanged("QuestionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string QuestionName { + get { + return this.questionNameField; + } + set { + this.questionNameField = value; + this.RaisePropertyChanged("QuestionName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef DecisionsType { + get { + return this.decisionsTypeField; + } + set { + this.decisionsTypeField = value; + this.RaisePropertyChanged("DecisionsType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public MessageExportTypeDecisionListHomeownersDecisionsType HomeownersDecisionsType { + get { + return this.homeownersDecisionsTypeField; + } + set { + this.homeownersDecisionsTypeField = value; + this.RaisePropertyChanged("HomeownersDecisionsType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CharterContained", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("CharterNotContained", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public bool Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType19 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public nsiRef FormingFund { + get { + return this.formingFundField; + } + set { + this.formingFundField = value; + this.RaisePropertyChanged("FormingFund"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public nsiRef ManagementType { + get { + return this.managementTypeField; + } + set { + this.managementTypeField = value; + this.RaisePropertyChanged("ManagementType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public VotingSystemDetailsType VotingSystemDetails { + get { + return this.votingSystemDetailsField; + } + set { + this.votingSystemDetailsField = value; + this.RaisePropertyChanged("VotingSystemDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public AdminOfGeneralMeetingType AdminOfGeneralMeeting { + get { + return this.adminOfGeneralMeetingField; + } + set { + this.adminOfGeneralMeetingField = value; + this.RaisePropertyChanged("AdminOfGeneralMeeting"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageExportTypeDecisionListHomeownersDecisionsType : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType19 { + + /// + CharterContained, + + /// + CharterNotContained, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportVotingMessageResultType : MessageExportType { + + private string messageGUIDField; + + private MessageStatusType messageStatusField; + + private System.DateTime publishDateField; + + private System.DateTime modificationDateField; + + private bool modificationDateFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MessageGUID { + get { + return this.messageGUIDField; + } + set { + this.messageGUIDField = value; + this.RaisePropertyChanged("MessageGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public MessageStatusType MessageStatus { + get { + return this.messageStatusField; + } + set { + this.messageStatusField = value; + this.RaisePropertyChanged("MessageStatus"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime PublishDate { + get { + return this.publishDateField; + } + set { + this.publishDateField = value; + this.RaisePropertyChanged("PublishDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime ModificationDate { + get { + return this.modificationDateField; + } + set { + this.modificationDateField = value; + this.RaisePropertyChanged("ModificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ModificationDateSpecified { + get { + return this.modificationDateFieldSpecified; + } + set { + this.modificationDateFieldSpecified = value; + this.RaisePropertyChanged("ModificationDateSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum MessageStatusType { + + /// + Posted, + + /// + Goes, + + /// + Finished, + + /// + MeetingCancelled, + + /// + Cancelled, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageType : object, System.ComponentModel.INotifyPropertyChanged { + + private string fIASHouseGUIDField; + + private RegOrgType organizationGuidField; + + private string messageNumField; + + private System.DateTime messageDateField; + + private bool messageDateFieldSpecified; + + private bool itemField; + + private ItemChoiceType16 itemElementNameField; + + private object item1Field; + + private MeetingTypeType meetingTypeField; + + private VoteInitiators[] voteInitiatorsField; + + private MessageTypeDecisionList[] decisionListField; + + private string modificationReasonField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGUID { + get { + return this.fIASHouseGUIDField; + } + set { + this.fIASHouseGUIDField = value; + this.RaisePropertyChanged("FIASHouseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public RegOrgType OrganizationGuid { + get { + return this.organizationGuidField; + } + set { + this.organizationGuidField = value; + this.RaisePropertyChanged("OrganizationGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string MessageNum { + get { + return this.messageNumField; + } + set { + this.messageNumField = value; + this.RaisePropertyChanged("MessageNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime MessageDate { + get { + return this.messageDateField; + } + set { + this.messageDateField = value; + this.RaisePropertyChanged("MessageDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MessageDateSpecified { + get { + return this.messageDateFieldSpecified; + } + set { + this.messageDateFieldSpecified = value; + this.RaisePropertyChanged("MessageDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AnnualVoting", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("ExtraVoting", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public bool Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType16 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AVoting", typeof(MessageTypeAVoting), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("EVoting", typeof(MessageTypeEVoting), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("Meeting", typeof(MessageTypeMeeting), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("MeetingAVoting", typeof(MessageTypeMeetingAVoting), Order=6)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public MeetingTypeType MeetingType { + get { + return this.meetingTypeField; + } + set { + this.meetingTypeField = value; + this.RaisePropertyChanged("MeetingType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("VoteInitiators", Order=8)] + public VoteInitiators[] VoteInitiators { + get { + return this.voteInitiatorsField; + } + set { + this.voteInitiatorsField = value; + this.RaisePropertyChanged("VoteInitiators"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("DecisionList", Order=9)] + public MessageTypeDecisionList[] DecisionList { + get { + return this.decisionListField; + } + set { + this.decisionListField = value; + this.RaisePropertyChanged("DecisionList"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public string ModificationReason { + get { + return this.modificationReasonField; + } + set { + this.modificationReasonField = value; + this.RaisePropertyChanged("ModificationReason"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType16 { + + /// + AnnualVoting, + + /// + ExtraVoting, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageTypeAVoting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime startMakingDecisionDateField; + + private System.DateTime endMakingDecisionDateField; + + private string resolutionPlaceField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime StartMakingDecisionDate { + get { + return this.startMakingDecisionDateField; + } + set { + this.startMakingDecisionDateField = value; + this.RaisePropertyChanged("StartMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime EndMakingDecisionDate { + get { + return this.endMakingDecisionDateField; + } + set { + this.endMakingDecisionDateField = value; + this.RaisePropertyChanged("EndMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ResolutionPlace { + get { + return this.resolutionPlaceField; + } + set { + this.resolutionPlaceField = value; + this.RaisePropertyChanged("ResolutionPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=3)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageTypeEVoting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime eVotingDateBeginField; + + private System.DateTime eVotingDateEndField; + + private string disciplineField; + + private string infoReviewField; + + private VotingSystemDetailsType votingSystemDetailsField; + + private bool firstVotingField; + + private bool firstVotingFieldSpecified; + + private AdminOfGeneralMeetingType adminOfGeneralMeetingField; + + private string adminAddressField; + + private Attachments[] attachmentsField; + + public MessageTypeEVoting() { + this.firstVotingField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime EVotingDateBegin { + get { + return this.eVotingDateBeginField; + } + set { + this.eVotingDateBeginField = value; + this.RaisePropertyChanged("EVotingDateBegin"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime EVotingDateEnd { + get { + return this.eVotingDateEndField; + } + set { + this.eVotingDateEndField = value; + this.RaisePropertyChanged("EVotingDateEnd"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Discipline { + get { + return this.disciplineField; + } + set { + this.disciplineField = value; + this.RaisePropertyChanged("Discipline"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string InfoReview { + get { + return this.infoReviewField; + } + set { + this.infoReviewField = value; + this.RaisePropertyChanged("InfoReview"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public VotingSystemDetailsType VotingSystemDetails { + get { + return this.votingSystemDetailsField; + } + set { + this.votingSystemDetailsField = value; + this.RaisePropertyChanged("VotingSystemDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool FirstVoting { + get { + return this.firstVotingField; + } + set { + this.firstVotingField = value; + this.RaisePropertyChanged("FirstVoting"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool FirstVotingSpecified { + get { + return this.firstVotingFieldSpecified; + } + set { + this.firstVotingFieldSpecified = value; + this.RaisePropertyChanged("FirstVotingSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public AdminOfGeneralMeetingType AdminOfGeneralMeeting { + get { + return this.adminOfGeneralMeetingField; + } + set { + this.adminOfGeneralMeetingField = value; + this.RaisePropertyChanged("AdminOfGeneralMeeting"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public string AdminAddress { + get { + return this.adminAddressField; + } + set { + this.adminAddressField = value; + this.RaisePropertyChanged("AdminAddress"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=8)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageTypeMeeting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime meetingDateField; + + private string votingPlaceField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime MeetingDate { + get { + return this.meetingDateField; + } + set { + this.meetingDateField = value; + this.RaisePropertyChanged("MeetingDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string VotingPlace { + get { + return this.votingPlaceField; + } + set { + this.votingPlaceField = value; + this.RaisePropertyChanged("VotingPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=2)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageTypeMeetingAVoting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime startMakingDecisionDateField; + + private System.DateTime endMakingDecisionDateField; + + private string resolutionPlaceField; + + private System.DateTime meetingDateField; + + private string votingPlaceField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime StartMakingDecisionDate { + get { + return this.startMakingDecisionDateField; + } + set { + this.startMakingDecisionDateField = value; + this.RaisePropertyChanged("StartMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime EndMakingDecisionDate { + get { + return this.endMakingDecisionDateField; + } + set { + this.endMakingDecisionDateField = value; + this.RaisePropertyChanged("EndMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ResolutionPlace { + get { + return this.resolutionPlaceField; + } + set { + this.resolutionPlaceField = value; + this.RaisePropertyChanged("ResolutionPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public System.DateTime MeetingDate { + get { + return this.meetingDateField; + } + set { + this.meetingDateField = value; + this.RaisePropertyChanged("MeetingDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string VotingPlace { + get { + return this.votingPlaceField; + } + set { + this.votingPlaceField = value; + this.RaisePropertyChanged("VotingPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=5)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageTypeDecisionList : object, System.ComponentModel.INotifyPropertyChanged { + + private string questionNumberField; + + private string questionNameField; + + private nsiRef decisionsTypeField; + + private MessageTypeDecisionListHomeownersDecisionsType homeownersDecisionsTypeField; + + private bool itemField; + + private ItemChoiceType17 itemElementNameField; + + private nsiRef formingFundField; + + private nsiRef managementTypeField; + + private VotingSystemDetailsType votingSystemDetailsField; + + private AdminOfGeneralMeetingType adminOfGeneralMeetingField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="nonNegativeInteger", Order=0)] + public string QuestionNumber { + get { + return this.questionNumberField; + } + set { + this.questionNumberField = value; + this.RaisePropertyChanged("QuestionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string QuestionName { + get { + return this.questionNameField; + } + set { + this.questionNameField = value; + this.RaisePropertyChanged("QuestionName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef DecisionsType { + get { + return this.decisionsTypeField; + } + set { + this.decisionsTypeField = value; + this.RaisePropertyChanged("DecisionsType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public MessageTypeDecisionListHomeownersDecisionsType HomeownersDecisionsType { + get { + return this.homeownersDecisionsTypeField; + } + set { + this.homeownersDecisionsTypeField = value; + this.RaisePropertyChanged("HomeownersDecisionsType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CharterContained", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("CharterNotContained", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public bool Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType17 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public nsiRef FormingFund { + get { + return this.formingFundField; + } + set { + this.formingFundField = value; + this.RaisePropertyChanged("FormingFund"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public nsiRef ManagementType { + get { + return this.managementTypeField; + } + set { + this.managementTypeField = value; + this.RaisePropertyChanged("ManagementType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public VotingSystemDetailsType VotingSystemDetails { + get { + return this.votingSystemDetailsField; + } + set { + this.votingSystemDetailsField = value; + this.RaisePropertyChanged("VotingSystemDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public AdminOfGeneralMeetingType AdminOfGeneralMeeting { + get { + return this.adminOfGeneralMeetingField; + } + set { + this.adminOfGeneralMeetingField = value; + this.RaisePropertyChanged("AdminOfGeneralMeeting"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MessageTypeDecisionListHomeownersDecisionsType : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType17 { + + /// + CharterContained, + + /// + CharterNotContained, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolType : object, System.ComponentModel.INotifyPropertyChanged { + + private string fIASHouseGuidField; + + private RegOrgType organizationGuidField; + + private string protocolNumField; + + private System.DateTime protocolDateField; + + private object itemField; + + private MeetingTypeType meetingTypeField; + + private bool meetingTypeFieldSpecified; + + private bool item1Field; + + private Item1ChoiceType8 item1ElementNameField; + + private VoteInitiators[] voteInitiatorsField; + + private ProtocolTypeMeetingEligibility meetingEligibilityField; + + private ProtocolTypeDecisionList[] decisionListField; + + private string modificationField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public RegOrgType OrganizationGuid { + get { + return this.organizationGuidField; + } + set { + this.organizationGuidField = value; + this.RaisePropertyChanged("OrganizationGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ProtocolNum { + get { + return this.protocolNumField; + } + set { + this.protocolNumField = value; + this.RaisePropertyChanged("ProtocolNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime ProtocolDate { + get { + return this.protocolDateField; + } + set { + this.protocolDateField = value; + this.RaisePropertyChanged("ProtocolDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AVoting", typeof(ProtocolTypeAVoting), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("EVoting", typeof(ProtocolTypeEVoting), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("Meeting", typeof(ProtocolTypeMeeting), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("MeetingAVoting", typeof(ProtocolTypeMeetingAVoting), Order=4)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public MeetingTypeType MeetingType { + get { + return this.meetingTypeField; + } + set { + this.meetingTypeField = value; + this.RaisePropertyChanged("MeetingType"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MeetingTypeSpecified { + get { + return this.meetingTypeFieldSpecified; + } + set { + this.meetingTypeFieldSpecified = value; + this.RaisePropertyChanged("MeetingTypeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AnnualVoting", typeof(bool), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("ExtraVoting", typeof(bool), Order=6)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("Item1ElementName")] + public bool Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public Item1ChoiceType8 Item1ElementName { + get { + return this.item1ElementNameField; + } + set { + this.item1ElementNameField = value; + this.RaisePropertyChanged("Item1ElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("VoteInitiators", Order=8)] + public VoteInitiators[] VoteInitiators { + get { + return this.voteInitiatorsField; + } + set { + this.voteInitiatorsField = value; + this.RaisePropertyChanged("VoteInitiators"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public ProtocolTypeMeetingEligibility MeetingEligibility { + get { + return this.meetingEligibilityField; + } + set { + this.meetingEligibilityField = value; + this.RaisePropertyChanged("MeetingEligibility"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("DecisionList", Order=10)] + public ProtocolTypeDecisionList[] DecisionList { + get { + return this.decisionListField; + } + set { + this.decisionListField = value; + this.RaisePropertyChanged("DecisionList"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public string Modification { + get { + return this.modificationField; + } + set { + this.modificationField = value; + this.RaisePropertyChanged("Modification"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolTypeAVoting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime startMakingDecisionDateField; + + private bool startMakingDecisionDateFieldSpecified; + + private System.DateTime endMakingDecisionDateField; + + private bool endMakingDecisionDateFieldSpecified; + + private string resolutionPlaceField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime StartMakingDecisionDate { + get { + return this.startMakingDecisionDateField; + } + set { + this.startMakingDecisionDateField = value; + this.RaisePropertyChanged("StartMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StartMakingDecisionDateSpecified { + get { + return this.startMakingDecisionDateFieldSpecified; + } + set { + this.startMakingDecisionDateFieldSpecified = value; + this.RaisePropertyChanged("StartMakingDecisionDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime EndMakingDecisionDate { + get { + return this.endMakingDecisionDateField; + } + set { + this.endMakingDecisionDateField = value; + this.RaisePropertyChanged("EndMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EndMakingDecisionDateSpecified { + get { + return this.endMakingDecisionDateFieldSpecified; + } + set { + this.endMakingDecisionDateFieldSpecified = value; + this.RaisePropertyChanged("EndMakingDecisionDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ResolutionPlace { + get { + return this.resolutionPlaceField; + } + set { + this.resolutionPlaceField = value; + this.RaisePropertyChanged("ResolutionPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=3)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolTypeEVoting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime eVotingDateBeginField; + + private System.DateTime eVotingDateEndField; + + private string disciplineField; + + private string infoReviewField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime EVotingDateBegin { + get { + return this.eVotingDateBeginField; + } + set { + this.eVotingDateBeginField = value; + this.RaisePropertyChanged("EVotingDateBegin"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime EVotingDateEnd { + get { + return this.eVotingDateEndField; + } + set { + this.eVotingDateEndField = value; + this.RaisePropertyChanged("EVotingDateEnd"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Discipline { + get { + return this.disciplineField; + } + set { + this.disciplineField = value; + this.RaisePropertyChanged("Discipline"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string InfoReview { + get { + return this.infoReviewField; + } + set { + this.infoReviewField = value; + this.RaisePropertyChanged("InfoReview"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=4)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolTypeMeeting : VoitingType { + + private System.DateTime meetingDateField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime MeetingDate { + get { + return this.meetingDateField; + } + set { + this.meetingDateField = value; + this.RaisePropertyChanged("MeetingDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=1)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolTypeMeetingAVoting : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime meetingDateField; + + private string votingPlaceField; + + private System.DateTime startMakingDecisionDateField; + + private bool startMakingDecisionDateFieldSpecified; + + private System.DateTime endMakingDecisionDateField; + + private bool endMakingDecisionDateFieldSpecified; + + private string resolutionPlaceField; + + private Attachments[] attachmentsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime MeetingDate { + get { + return this.meetingDateField; + } + set { + this.meetingDateField = value; + this.RaisePropertyChanged("MeetingDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string VotingPlace { + get { + return this.votingPlaceField; + } + set { + this.votingPlaceField = value; + this.RaisePropertyChanged("VotingPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public System.DateTime StartMakingDecisionDate { + get { + return this.startMakingDecisionDateField; + } + set { + this.startMakingDecisionDateField = value; + this.RaisePropertyChanged("StartMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StartMakingDecisionDateSpecified { + get { + return this.startMakingDecisionDateFieldSpecified; + } + set { + this.startMakingDecisionDateFieldSpecified = value; + this.RaisePropertyChanged("StartMakingDecisionDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public System.DateTime EndMakingDecisionDate { + get { + return this.endMakingDecisionDateField; + } + set { + this.endMakingDecisionDateField = value; + this.RaisePropertyChanged("EndMakingDecisionDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EndMakingDecisionDateSpecified { + get { + return this.endMakingDecisionDateFieldSpecified; + } + set { + this.endMakingDecisionDateFieldSpecified = value; + this.RaisePropertyChanged("EndMakingDecisionDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string ResolutionPlace { + get { + return this.resolutionPlaceField; + } + set { + this.resolutionPlaceField = value; + this.RaisePropertyChanged("ResolutionPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=5)] + public Attachments[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum Item1ChoiceType8 { + + /// + AnnualVoting, + + /// + ExtraVoting, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ProtocolTypeMeetingEligibility { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolTypeDecisionList : object, System.ComponentModel.INotifyPropertyChanged { + + private string questionNumberField; + + private string questionNameField; + + private nsiRef decisionsTypeField; + + private ProtocolTypeDecisionListHomeownersDecisionsType homeownersDecisionsTypeField; + + private bool itemField; + + private ItemChoiceType14 itemElementNameField; + + private decimal agreeField; + + private bool agreeFieldSpecified; + + private decimal againstField; + + private bool againstFieldSpecified; + + private decimal abstentField; + + private bool abstentFieldSpecified; + + private nsiRef formingFundField; + + private nsiRef managementTypeField; + + private VotingSystemDetailsType votingSystemDetailsField; + + private AdminOfGeneralMeetingType adminOfGeneralMeetingField; + + private ProtocolTypeDecisionListVotingResume votingResumeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="nonNegativeInteger", Order=0)] + public string QuestionNumber { + get { + return this.questionNumberField; + } + set { + this.questionNumberField = value; + this.RaisePropertyChanged("QuestionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string QuestionName { + get { + return this.questionNameField; + } + set { + this.questionNameField = value; + this.RaisePropertyChanged("QuestionName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef DecisionsType { + get { + return this.decisionsTypeField; + } + set { + this.decisionsTypeField = value; + this.RaisePropertyChanged("DecisionsType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public ProtocolTypeDecisionListHomeownersDecisionsType HomeownersDecisionsType { + get { + return this.homeownersDecisionsTypeField; + } + set { + this.homeownersDecisionsTypeField = value; + this.RaisePropertyChanged("HomeownersDecisionsType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CharterContained", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("CharterNotContained", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public bool Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType14 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public decimal Agree { + get { + return this.agreeField; + } + set { + this.agreeField = value; + this.RaisePropertyChanged("Agree"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AgreeSpecified { + get { + return this.agreeFieldSpecified; + } + set { + this.agreeFieldSpecified = value; + this.RaisePropertyChanged("AgreeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public decimal Against { + get { + return this.againstField; + } + set { + this.againstField = value; + this.RaisePropertyChanged("Against"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AgainstSpecified { + get { + return this.againstFieldSpecified; + } + set { + this.againstFieldSpecified = value; + this.RaisePropertyChanged("AgainstSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public decimal Abstent { + get { + return this.abstentField; + } + set { + this.abstentField = value; + this.RaisePropertyChanged("Abstent"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AbstentSpecified { + get { + return this.abstentFieldSpecified; + } + set { + this.abstentFieldSpecified = value; + this.RaisePropertyChanged("AbstentSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public nsiRef FormingFund { + get { + return this.formingFundField; + } + set { + this.formingFundField = value; + this.RaisePropertyChanged("FormingFund"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public nsiRef ManagementType { + get { + return this.managementTypeField; + } + set { + this.managementTypeField = value; + this.RaisePropertyChanged("ManagementType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public VotingSystemDetailsType VotingSystemDetails { + get { + return this.votingSystemDetailsField; + } + set { + this.votingSystemDetailsField = value; + this.RaisePropertyChanged("VotingSystemDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=12)] + public AdminOfGeneralMeetingType AdminOfGeneralMeeting { + get { + return this.adminOfGeneralMeetingField; + } + set { + this.adminOfGeneralMeetingField = value; + this.RaisePropertyChanged("AdminOfGeneralMeeting"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=13)] + public ProtocolTypeDecisionListVotingResume votingResume { + get { + return this.votingResumeField; + } + set { + this.votingResumeField = value; + this.RaisePropertyChanged("votingResume"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolTypeDecisionListHomeownersDecisionsType : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType14 { + + /// + CharterContained, + + /// + CharterNotContained, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ProtocolTypeDecisionListVotingResume { + + /// + M, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractType : object, System.ComponentModel.INotifyPropertyChanged { + + private string docNumField; + + private System.DateTime signingDateField; + + private System.DateTime effectiveDateField; + + private System.DateTime planDateComptetionField; + + private ContractTypeValidity validityField; + + private object itemField; + + private ItemChoiceType13 itemElementNameField; + + private ContractTypeProtocol protocolField; + + private nsiRef contractBaseField; + + private DateDetailsType dateDetailsField; + + private AttachmentType[] contractAttachmentField; + + private ContractTypeAgreementAttachment[] agreementAttachmentField; + + private AttachmentType[] signedOwnersField; + + private AttachmentType[] commissioningPermitAgreementField; + + private AttachmentType[] charterField; + + private AttachmentType[] localGovernmentDecisionField; + + private string registryDecisionIDField; + + private bool automaticRollOverOneYearField; + + private bool automaticRollOverOneYearFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string DocNum { + get { + return this.docNumField; + } + set { + this.docNumField = value; + this.RaisePropertyChanged("DocNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime SigningDate { + get { + return this.signingDateField; + } + set { + this.signingDateField = value; + this.RaisePropertyChanged("SigningDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EffectiveDate { + get { + return this.effectiveDateField; + } + set { + this.effectiveDateField = value; + this.RaisePropertyChanged("EffectiveDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime PlanDateComptetion { + get { + return this.planDateComptetionField; + } + set { + this.planDateComptetionField = value; + this.RaisePropertyChanged("PlanDateComptetion"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public ContractTypeValidity Validity { + get { + return this.validityField; + } + set { + this.validityField = value; + this.RaisePropertyChanged("Validity"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("BuildingOwner", typeof(RegOrgType), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("CompetentAuthority", typeof(RegOrgType), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("Cooperative", typeof(RegOrgType), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("MunicipalHousing", typeof(RegOrgType), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("Owners", typeof(bool), Order=5)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType13 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public ContractTypeProtocol Protocol { + get { + return this.protocolField; + } + set { + this.protocolField = value; + this.RaisePropertyChanged("Protocol"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public nsiRef ContractBase { + get { + return this.contractBaseField; + } + set { + this.contractBaseField = value; + this.RaisePropertyChanged("ContractBase"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public DateDetailsType DateDetails { + get { + return this.dateDetailsField; + } + set { + this.dateDetailsField = value; + this.RaisePropertyChanged("DateDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractAttachment", Order=10)] + public AttachmentType[] ContractAttachment { + get { + return this.contractAttachmentField; + } + set { + this.contractAttachmentField = value; + this.RaisePropertyChanged("ContractAttachment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AgreementAttachment", Order=11)] + public ContractTypeAgreementAttachment[] AgreementAttachment { + get { + return this.agreementAttachmentField; + } + set { + this.agreementAttachmentField = value; + this.RaisePropertyChanged("AgreementAttachment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("SignedOwners", Order=12)] + public AttachmentType[] SignedOwners { + get { + return this.signedOwnersField; + } + set { + this.signedOwnersField = value; + this.RaisePropertyChanged("SignedOwners"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CommissioningPermitAgreement", Order=13)] + public AttachmentType[] CommissioningPermitAgreement { + get { + return this.commissioningPermitAgreementField; + } + set { + this.commissioningPermitAgreementField = value; + this.RaisePropertyChanged("CommissioningPermitAgreement"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Charter", Order=14)] + public AttachmentType[] Charter { + get { + return this.charterField; + } + set { + this.charterField = value; + this.RaisePropertyChanged("Charter"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LocalGovernmentDecision", Order=15)] + public AttachmentType[] LocalGovernmentDecision { + get { + return this.localGovernmentDecisionField; + } + set { + this.localGovernmentDecisionField = value; + this.RaisePropertyChanged("LocalGovernmentDecision"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=16)] + public string RegistryDecisionID { + get { + return this.registryDecisionIDField; + } + set { + this.registryDecisionIDField = value; + this.RaisePropertyChanged("RegistryDecisionID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=17)] + public bool AutomaticRollOverOneYear { + get { + return this.automaticRollOverOneYearField; + } + set { + this.automaticRollOverOneYearField = value; + this.RaisePropertyChanged("AutomaticRollOverOneYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AutomaticRollOverOneYearSpecified { + get { + return this.automaticRollOverOneYearFieldSpecified; + } + set { + this.automaticRollOverOneYearFieldSpecified = value; + this.RaisePropertyChanged("AutomaticRollOverOneYearSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractTypeValidity : object, System.ComponentModel.INotifyPropertyChanged { + + private string monthField; + + private string yearField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)] + public string Month { + get { + return this.monthField; + } + set { + this.monthField = value; + this.RaisePropertyChanged("Month"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=1)] + public string Year { + get { + return this.yearField; + } + set { + this.yearField = value; + this.RaisePropertyChanged("Year"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType13 { + + /// + BuildingOwner, + + /// + CompetentAuthority, + + /// + Cooperative, + + /// + MunicipalHousing, + + /// + Owners, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractTypeProtocol : object, System.ComponentModel.INotifyPropertyChanged { + + private ContractTypeProtocolProtocolAdd protocolAddField; + + private string[] votingProtocolGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ContractTypeProtocolProtocolAdd ProtocolAdd { + get { + return this.protocolAddField; + } + set { + this.protocolAddField = value; + this.RaisePropertyChanged("ProtocolAdd"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("VotingProtocolGUID", Order=1)] + public string[] VotingProtocolGUID { + get { + return this.votingProtocolGUIDField; + } + set { + this.votingProtocolGUIDField = value; + this.RaisePropertyChanged("VotingProtocolGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractTypeProtocolProtocolAdd : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType20[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ProtocolBuildingOwner", typeof(AttachmentType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ProtocolMeetingBoard", typeof(AttachmentType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ProtocolMeetingOwners", typeof(AttachmentType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ProtocolOK", typeof(AttachmentType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("PurchaseNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType20[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType20 { + + /// + ProtocolBuildingOwner, + + /// + ProtocolMeetingBoard, + + /// + ProtocolMeetingOwners, + + /// + ProtocolOK, + + /// + PurchaseNumber, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DateDetailsType : object, System.ComponentModel.INotifyPropertyChanged { + + private DateDetailsTypePeriodMetering periodMeteringField; + + private DateDetailsTypePaymentDocumentInterval paymentDocumentIntervalField; + + private DateDetailsTypePaymentInterval paymentIntervalField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public DateDetailsTypePeriodMetering PeriodMetering { + get { + return this.periodMeteringField; + } + set { + this.periodMeteringField = value; + this.RaisePropertyChanged("PeriodMetering"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public DateDetailsTypePaymentDocumentInterval PaymentDocumentInterval { + get { + return this.paymentDocumentIntervalField; + } + set { + this.paymentDocumentIntervalField = value; + this.RaisePropertyChanged("PaymentDocumentInterval"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public DateDetailsTypePaymentInterval PaymentInterval { + get { + return this.paymentIntervalField; + } + set { + this.paymentIntervalField = value; + this.RaisePropertyChanged("PaymentInterval"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DateDetailsTypePeriodMetering : object, System.ComponentModel.INotifyPropertyChanged { + + private DeviceMeteringsDaySelectionType startDateField; + + private DeviceMeteringsDaySelectionType endDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public DeviceMeteringsDaySelectionType StartDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("StartDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public DeviceMeteringsDaySelectionType EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DeviceMeteringsDaySelectionType : DaySelectionType { + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(DeviceMeteringsDaySelectionType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DaySelectionType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private bool isNextMonthField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Date", typeof(sbyte), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LastDay", typeof(bool), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool IsNextMonth { + get { + return this.isNextMonthField; + } + set { + this.isNextMonthField = value; + this.RaisePropertyChanged("IsNextMonth"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DateDetailsTypePaymentDocumentInterval : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private bool item1Field; + + private Item1ChoiceType4 item1ElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LastDay", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(sbyte), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CurrentMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NextMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("Item1ElementName")] + public bool Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public Item1ChoiceType4 Item1ElementName { + get { + return this.item1ElementNameField; + } + set { + this.item1ElementNameField = value; + this.RaisePropertyChanged("Item1ElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum Item1ChoiceType4 { + + /// + CurrentMounth, + + /// + NextMounth, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DateDetailsTypePaymentInterval : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private bool item1Field; + + private Item1ChoiceType5 item1ElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LastDay", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(sbyte), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CurrentMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NextMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("Item1ElementName")] + public bool Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public Item1ChoiceType5 Item1ElementName { + get { + return this.item1ElementNameField; + } + set { + this.item1ElementNameField = value; + this.RaisePropertyChanged("Item1ElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum Item1ChoiceType5 { + + /// + CurrentMounth, + + /// + NextMounth, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractTypeAgreementAttachment : AttachmentType { + + private ImprintAgreementType imprintAgreementField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ImprintAgreementType ImprintAgreement { + get { + return this.imprintAgreementField; + } + set { + this.imprintAgreementField = value; + this.RaisePropertyChanged("ImprintAgreement"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ImprintAgreementType : object, System.ComponentModel.INotifyPropertyChanged { + + private string agreementNumberField; + + private System.DateTime agreementDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string AgreementNumber { + get { + return this.agreementNumberField; + } + set { + this.agreementNumberField = value; + this.RaisePropertyChanged("AgreementNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime AgreementDate { + get { + return this.agreementDateField; + } + set { + this.agreementDateField = value; + this.RaisePropertyChanged("AgreementDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime dateField; + + private CharterDateDetailsType dateDetailsField; + + private CharterTypeMeetingProtocol meetingProtocolField; + + private bool noCharterApproveProtocolField; + + private bool noCharterApproveProtocolFieldSpecified; + + private AttachmentType[] attachmentCharterField; + + private bool automaticRollOverOneYearField; + + private bool automaticRollOverOneYearFieldSpecified; + + private bool indicationsAnyDayField; + + private bool indicationsAnyDayFieldSpecified; + + public CharterType() { + this.noCharterApproveProtocolField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public CharterDateDetailsType DateDetails { + get { + return this.dateDetailsField; + } + set { + this.dateDetailsField = value; + this.RaisePropertyChanged("DateDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public CharterTypeMeetingProtocol MeetingProtocol { + get { + return this.meetingProtocolField; + } + set { + this.meetingProtocolField = value; + this.RaisePropertyChanged("MeetingProtocol"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public bool NoCharterApproveProtocol { + get { + return this.noCharterApproveProtocolField; + } + set { + this.noCharterApproveProtocolField = value; + this.RaisePropertyChanged("NoCharterApproveProtocol"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NoCharterApproveProtocolSpecified { + get { + return this.noCharterApproveProtocolFieldSpecified; + } + set { + this.noCharterApproveProtocolFieldSpecified = value; + this.RaisePropertyChanged("NoCharterApproveProtocolSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AttachmentCharter", Order=4)] + public AttachmentType[] AttachmentCharter { + get { + return this.attachmentCharterField; + } + set { + this.attachmentCharterField = value; + this.RaisePropertyChanged("AttachmentCharter"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool AutomaticRollOverOneYear { + get { + return this.automaticRollOverOneYearField; + } + set { + this.automaticRollOverOneYearField = value; + this.RaisePropertyChanged("AutomaticRollOverOneYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AutomaticRollOverOneYearSpecified { + get { + return this.automaticRollOverOneYearFieldSpecified; + } + set { + this.automaticRollOverOneYearFieldSpecified = value; + this.RaisePropertyChanged("AutomaticRollOverOneYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public bool IndicationsAnyDay { + get { + return this.indicationsAnyDayField; + } + set { + this.indicationsAnyDayField = value; + this.RaisePropertyChanged("IndicationsAnyDay"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IndicationsAnyDaySpecified { + get { + return this.indicationsAnyDayFieldSpecified; + } + set { + this.indicationsAnyDayFieldSpecified = value; + this.RaisePropertyChanged("IndicationsAnyDaySpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterDateDetailsType : object, System.ComponentModel.INotifyPropertyChanged { + + private CharterDateDetailsTypePeriodMetering periodMeteringField; + + private CharterDateDetailsTypePaymentDocumentInterval paymentDocumentIntervalField; + + private CharterDateDetailsTypePaymentInterval paymentIntervalField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public CharterDateDetailsTypePeriodMetering PeriodMetering { + get { + return this.periodMeteringField; + } + set { + this.periodMeteringField = value; + this.RaisePropertyChanged("PeriodMetering"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public CharterDateDetailsTypePaymentDocumentInterval PaymentDocumentInterval { + get { + return this.paymentDocumentIntervalField; + } + set { + this.paymentDocumentIntervalField = value; + this.RaisePropertyChanged("PaymentDocumentInterval"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public CharterDateDetailsTypePaymentInterval PaymentInterval { + get { + return this.paymentIntervalField; + } + set { + this.paymentIntervalField = value; + this.RaisePropertyChanged("PaymentInterval"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterDateDetailsTypePeriodMetering : object, System.ComponentModel.INotifyPropertyChanged { + + private DeviceMeteringsDaySelectionType startDateField; + + private DeviceMeteringsDaySelectionType endDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public DeviceMeteringsDaySelectionType StartDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("StartDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public DeviceMeteringsDaySelectionType EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterDateDetailsTypePaymentDocumentInterval : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private bool item1Field; + + private Item1ChoiceType6 item1ElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LastDay", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(sbyte), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CurrentMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NextMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("Item1ElementName")] + public bool Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public Item1ChoiceType6 Item1ElementName { + get { + return this.item1ElementNameField; + } + set { + this.item1ElementNameField = value; + this.RaisePropertyChanged("Item1ElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum Item1ChoiceType6 { + + /// + CurrentMounth, + + /// + NextMounth, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterDateDetailsTypePaymentInterval : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private bool item1Field; + + private Item1ChoiceType7 item1ElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LastDay", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(sbyte), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CurrentMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NextMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("Item1ElementName")] + public bool Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public Item1ChoiceType7 Item1ElementName { + get { + return this.item1ElementNameField; + } + set { + this.item1ElementNameField = value; + this.RaisePropertyChanged("Item1ElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum Item1ChoiceType7 { + + /// + CurrentMounth, + + /// + NextMounth, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterTypeMeetingProtocol : object, System.ComponentModel.INotifyPropertyChanged { + + private AttachmentType[] protocolMeetingOwnersField; + + private string[] votingProtocolGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ProtocolMeetingOwners", Order=0)] + public AttachmentType[] ProtocolMeetingOwners { + get { + return this.protocolMeetingOwnersField; + } + set { + this.protocolMeetingOwnersField = value; + this.RaisePropertyChanged("ProtocolMeetingOwners"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("VotingProtocolGUID", Order=1)] + public string[] VotingProtocolGUID { + get { + return this.votingProtocolGUIDField; + } + set { + this.votingProtocolGUIDField = value; + this.RaisePropertyChanged("VotingProtocolGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BaseServiceCharterType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("CurrentCharter", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ProtocolMeetingOwners", typeof(AttachmentType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApprovalType : object, System.ComponentModel.INotifyPropertyChanged { + + private bool approvalField; + + public ApprovalType() { + this.approvalField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool Approval { + get { + return this.approvalField; + } + set { + this.approvalField = value; + this.RaisePropertyChanged("Approval"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DeleteDocType : object, System.ComponentModel.INotifyPropertyChanged { + + private bool deleteField; + + public DeleteDocType() { + this.deleteField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool Delete { + get { + return this.deleteField; + } + set { + this.deleteField = value; + this.RaisePropertyChanged("Delete"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class RollOverType : object, System.ComponentModel.INotifyPropertyChanged { + + private bool rollOverField; + + public RollOverType() { + this.rollOverField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool RollOver { + get { + return this.rollOverField; + } + set { + this.rollOverField = value; + this.RaisePropertyChanged("RollOver"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ProtocolOKType : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] protocolGUIDField; + + private AttachmentType[] attachmentProtocolField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ProtocolGUID", Order=0)] + public string[] ProtocolGUID { + get { + return this.protocolGUIDField; + } + set { + this.protocolGUIDField = value; + this.RaisePropertyChanged("ProtocolGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AttachmentProtocol", Order=1)] + public AttachmentType[] AttachmentProtocol { + get { + return this.attachmentProtocolField; + } + set { + this.attachmentProtocolField = value; + this.RaisePropertyChanged("AttachmentProtocol"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MainInfoType : object, System.ComponentModel.INotifyPropertyChanged { + + private string docNumField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string DocNum { + get { + return this.docNumField; + } + set { + this.docNumField = value; + this.RaisePropertyChanged("DocNum"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(exportAccountIndividualServicesResultType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountIndividualServiceType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime beginDateField; + + private System.DateTime endDateField; + + private nsiRef additionalServiceField; + + private AttachmentType attachmentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime BeginDate { + get { + return this.beginDateField; + } + set { + this.beginDateField = value; + this.RaisePropertyChanged("BeginDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef AdditionalService { + get { + return this.additionalServiceField; + } + set { + this.additionalServiceField = value; + this.RaisePropertyChanged("AdditionalService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public AttachmentType Attachment { + get { + return this.attachmentField; + } + set { + this.attachmentField = value; + this.RaisePropertyChanged("Attachment"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportAccountIndividualServicesResultType : AccountIndividualServiceType { + + private string accountIndividualServiceGUIDField; + + private string accountGUIDField; + + private bool isActualField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string AccountIndividualServiceGUID { + get { + return this.accountIndividualServiceGUIDField; + } + set { + this.accountIndividualServiceGUIDField = value; + this.RaisePropertyChanged("AccountIndividualServiceGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string AccountGUID { + get { + return this.accountGUIDField; + } + set { + this.accountGUIDField = value; + this.RaisePropertyChanged("AccountGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool IsActual { + get { + return this.isActualField; + } + set { + this.isActualField = value; + this.RaisePropertyChanged("IsActual"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountUpdateType : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte livingPersonsNumberField; + + private object itemField; + + private ItemChoiceType12 itemElementNameField; + + private decimal totalSquareField; + + private bool totalSquareFieldSpecified; + + private decimal residentialSquareField; + + private bool residentialSquareFieldSpecified; + + private decimal nonResidentialSquareField; + + private bool nonResidentialSquareFieldSpecified; + + private ClosedAccountAttributesType closedField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte LivingPersonsNumber { + get { + return this.livingPersonsNumberField; + } + set { + this.livingPersonsNumberField = value; + this.RaisePropertyChanged("LivingPersonsNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OwnerInd", typeof(IndType), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("OwnerOrg", typeof(RegOrgType), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("RenterInd", typeof(IndType), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("RenterOrg", typeof(RegOrgType), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType12 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal TotalSquare { + get { + return this.totalSquareField; + } + set { + this.totalSquareField = value; + this.RaisePropertyChanged("TotalSquare"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalSquareSpecified { + get { + return this.totalSquareFieldSpecified; + } + set { + this.totalSquareFieldSpecified = value; + this.RaisePropertyChanged("TotalSquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public decimal ResidentialSquare { + get { + return this.residentialSquareField; + } + set { + this.residentialSquareField = value; + this.RaisePropertyChanged("ResidentialSquare"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ResidentialSquareSpecified { + get { + return this.residentialSquareFieldSpecified; + } + set { + this.residentialSquareFieldSpecified = value; + this.RaisePropertyChanged("ResidentialSquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public decimal NonResidentialSquare { + get { + return this.nonResidentialSquareField; + } + set { + this.nonResidentialSquareField = value; + this.RaisePropertyChanged("NonResidentialSquare"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NonResidentialSquareSpecified { + get { + return this.nonResidentialSquareFieldSpecified; + } + set { + this.nonResidentialSquareFieldSpecified = value; + this.RaisePropertyChanged("NonResidentialSquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public ClosedAccountAttributesType Closed { + get { + return this.closedField; + } + set { + this.closedField = value; + this.RaisePropertyChanged("Closed"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType12 { + + /// + OwnerInd, + + /// + OwnerOrg, + + /// + RenterInd, + + /// + RenterOrg, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ClosedAccountAttributesType : object, System.ComponentModel.INotifyPropertyChanged { + + private nsiRef closeReasonField; + + private System.DateTime closeDateField; + + private string descriptionField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef CloseReason { + get { + return this.closeReasonField; + } + set { + this.closeReasonField = value; + this.RaisePropertyChanged("CloseReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime CloseDate { + get { + return this.closeDateField; + } + set { + this.closeDateField = value; + this.RaisePropertyChanged("CloseDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Description { + get { + return this.descriptionField; + } + set { + this.descriptionField = value; + this.RaisePropertyChanged("Description"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountReasonsImportType : object, System.ComponentModel.INotifyPropertyChanged { + + private AccountReasonsImportTypeSupplyResourceContract[] supplyResourceContractField; + + private AccountReasonsImportTypeSocialHireContract socialHireContractField; + + private AccountReasonsImportTypeTKOContract[] tKOContractField; + + /// + [System.Xml.Serialization.XmlElementAttribute("SupplyResourceContract", Order=0)] + public AccountReasonsImportTypeSupplyResourceContract[] SupplyResourceContract { + get { + return this.supplyResourceContractField; + } + set { + this.supplyResourceContractField = value; + this.RaisePropertyChanged("SupplyResourceContract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public AccountReasonsImportTypeSocialHireContract SocialHireContract { + get { + return this.socialHireContractField; + } + set { + this.socialHireContractField = value; + this.RaisePropertyChanged("SocialHireContract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TKOContract", Order=2)] + public AccountReasonsImportTypeTKOContract[] TKOContract { + get { + return this.tKOContractField; + } + set { + this.tKOContractField = value; + this.RaisePropertyChanged("TKOContract"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountReasonsImportTypeSupplyResourceContract : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType17[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("IsContract", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("SigningDate", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType17[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType17 { + + /// + ContractGUID, + + /// + ContractNumber, + + /// + IsContract, + + /// + SigningDate, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountReasonsImportTypeSocialHireContract : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType18[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("SigningDate", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Type", typeof(AccountReasonsImportTypeSocialHireContractType), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType18[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum AccountReasonsImportTypeSocialHireContractType { + + /// + D, + + /// + M, + + /// + S, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType18 { + + /// + ContractGUID, + + /// + ContractNumber, + + /// + SigningDate, + + /// + Type, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountReasonsImportTypeTKOContract : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType19[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("DateEntry", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("SigningDate", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType19[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType19 { + + /// + ContractGUID, + + /// + ContractNumber, + + /// + DateEntry, + + /// + SigningDate, + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(AccountIndExportType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/")] + public partial class FIOExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private string surnameField; + + private string firstNameField; + + private string patronymicField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Surname { + get { + return this.surnameField; + } + set { + this.surnameField = value; + this.RaisePropertyChanged("Surname"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FirstName { + get { + return this.firstNameField; + } + set { + this.firstNameField = value; + this.RaisePropertyChanged("FirstName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Patronymic { + get { + return this.patronymicField; + } + set { + this.patronymicField = value; + this.RaisePropertyChanged("Patronymic"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountIndExportType : FIOExportType { + + private AccountIndExportTypeSex sexField; + + private bool sexFieldSpecified; + + private System.DateTime dateOfBirthField; + + private bool dateOfBirthFieldSpecified; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AccountIndExportTypeSex Sex { + get { + return this.sexField; + } + set { + this.sexField = value; + this.RaisePropertyChanged("Sex"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SexSpecified { + get { + return this.sexFieldSpecified; + } + set { + this.sexFieldSpecified = value; + this.RaisePropertyChanged("SexSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime DateOfBirth { + get { + return this.dateOfBirthField; + } + set { + this.dateOfBirthField = value; + this.RaisePropertyChanged("DateOfBirth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool DateOfBirthSpecified { + get { + return this.dateOfBirthFieldSpecified; + } + set { + this.dateOfBirthFieldSpecified = value; + this.RaisePropertyChanged("DateOfBirthSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ID", typeof(AccountIndExportTypeID), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("SNILS", typeof(string), Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/", Order=2)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum AccountIndExportTypeSex { + + /// + M, + + /// + F, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountIndExportTypeID : object, System.ComponentModel.INotifyPropertyChanged { + + private nsiRef typeField; + + private string seriesField; + + private string numberField; + + private System.DateTime issueDateField; + + private bool issueDateFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Series { + get { + return this.seriesField; + } + set { + this.seriesField = value; + this.RaisePropertyChanged("Series"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Number { + get { + return this.numberField; + } + set { + this.numberField = value; + this.RaisePropertyChanged("Number"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime IssueDate { + get { + return this.issueDateField; + } + set { + this.issueDateField = value; + this.RaisePropertyChanged("IssueDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IssueDateSpecified { + get { + return this.issueDateFieldSpecified; + } + set { + this.issueDateFieldSpecified = value; + this.RaisePropertyChanged("IssueDateSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(exportAccountResultType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private bool itemField; + + private ItemChoiceType10 itemElementNameField; + + private System.DateTime creationDateField; + + private bool creationDateFieldSpecified; + + private string livingPersonsNumberField; + + private decimal totalSquareField; + + private bool totalSquareFieldSpecified; + + private decimal residentialSquareField; + + private bool residentialSquareFieldSpecified; + + private decimal heatedAreaField; + + private bool heatedAreaFieldSpecified; + + private ClosedAccountAttributesType closedField; + + private AccountExportTypeAccommodation[] accommodationField; + + private AccountExportTypePayerInfo payerInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute("isCRAccount", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("isOGVorOMSAccount", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("isRCAccount", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("isRSOAccount", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("isTKOAccount", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("isUOAccount", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public bool Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType10 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public System.DateTime CreationDate { + get { + return this.creationDateField; + } + set { + this.creationDateField = value; + this.RaisePropertyChanged("CreationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CreationDateSpecified { + get { + return this.creationDateFieldSpecified; + } + set { + this.creationDateFieldSpecified = value; + this.RaisePropertyChanged("CreationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=3)] + public string LivingPersonsNumber { + get { + return this.livingPersonsNumberField; + } + set { + this.livingPersonsNumberField = value; + this.RaisePropertyChanged("LivingPersonsNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public decimal TotalSquare { + get { + return this.totalSquareField; + } + set { + this.totalSquareField = value; + this.RaisePropertyChanged("TotalSquare"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalSquareSpecified { + get { + return this.totalSquareFieldSpecified; + } + set { + this.totalSquareFieldSpecified = value; + this.RaisePropertyChanged("TotalSquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public decimal ResidentialSquare { + get { + return this.residentialSquareField; + } + set { + this.residentialSquareField = value; + this.RaisePropertyChanged("ResidentialSquare"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ResidentialSquareSpecified { + get { + return this.residentialSquareFieldSpecified; + } + set { + this.residentialSquareFieldSpecified = value; + this.RaisePropertyChanged("ResidentialSquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public decimal HeatedArea { + get { + return this.heatedAreaField; + } + set { + this.heatedAreaField = value; + this.RaisePropertyChanged("HeatedArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HeatedAreaSpecified { + get { + return this.heatedAreaFieldSpecified; + } + set { + this.heatedAreaFieldSpecified = value; + this.RaisePropertyChanged("HeatedAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public ClosedAccountAttributesType Closed { + get { + return this.closedField; + } + set { + this.closedField = value; + this.RaisePropertyChanged("Closed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Accommodation", Order=8)] + public AccountExportTypeAccommodation[] Accommodation { + get { + return this.accommodationField; + } + set { + this.accommodationField = value; + this.RaisePropertyChanged("Accommodation"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public AccountExportTypePayerInfo PayerInfo { + get { + return this.payerInfoField; + } + set { + this.payerInfoField = value; + this.RaisePropertyChanged("PayerInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType10 { + + /// + isCRAccount, + + /// + isOGVorOMSAccount, + + /// + isRCAccount, + + /// + isRSOAccount, + + /// + isTKOAccount, + + /// + isUOAccount, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountExportTypeAccommodation : object, System.ComponentModel.INotifyPropertyChanged { + + private string itemField; + + private ItemChoiceType11 itemElementNameField; + + private decimal sharePercentField; + + private bool sharePercentFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LivingRoomGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("PremisesGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType11 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal SharePercent { + get { + return this.sharePercentField; + } + set { + this.sharePercentField = value; + this.RaisePropertyChanged("SharePercent"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SharePercentSpecified { + get { + return this.sharePercentFieldSpecified; + } + set { + this.sharePercentFieldSpecified = value; + this.RaisePropertyChanged("SharePercentSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType11 { + + /// + FIASHouseGuid, + + /// + LivingRoomGUID, + + /// + PremisesGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountExportTypePayerInfo : object, System.ComponentModel.INotifyPropertyChanged { + + private bool isRenterField; + + private bool isRenterFieldSpecified; + + private bool isAccountsDividedField; + + private bool isAccountsDividedFieldSpecified; + + private object itemField; + + public AccountExportTypePayerInfo() { + this.isRenterField = true; + this.isAccountsDividedField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool IsRenter { + get { + return this.isRenterField; + } + set { + this.isRenterField = value; + this.RaisePropertyChanged("IsRenter"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsRenterSpecified { + get { + return this.isRenterFieldSpecified; + } + set { + this.isRenterFieldSpecified = value; + this.RaisePropertyChanged("IsRenterSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool isAccountsDivided { + get { + return this.isAccountsDividedField; + } + set { + this.isAccountsDividedField = value; + this.RaisePropertyChanged("isAccountsDivided"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool isAccountsDividedSpecified { + get { + return this.isAccountsDividedFieldSpecified; + } + set { + this.isAccountsDividedFieldSpecified = value; + this.RaisePropertyChanged("isAccountsDividedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(AccountIndExportType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Org", typeof(RegOrgVersionType), Order=2)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportAccountResultType : AccountExportType { + + private exportAccountResultTypeAccountReasons accountReasonsField; + + private string accountNumberField; + + private string accountGUIDField; + + private string unifiedAccountNumberField; + + private string serviceIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public exportAccountResultTypeAccountReasons AccountReasons { + get { + return this.accountReasonsField; + } + set { + this.accountReasonsField = value; + this.RaisePropertyChanged("AccountReasons"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string AccountNumber { + get { + return this.accountNumberField; + } + set { + this.accountNumberField = value; + this.RaisePropertyChanged("AccountNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string AccountGUID { + get { + return this.accountGUIDField; + } + set { + this.accountGUIDField = value; + this.RaisePropertyChanged("AccountGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/account-base/", Order=3)] + public string UnifiedAccountNumber { + get { + return this.unifiedAccountNumberField; + } + set { + this.unifiedAccountNumberField = value; + this.RaisePropertyChanged("UnifiedAccountNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/account-base/", Order=4)] + public string ServiceID { + get { + return this.serviceIDField; + } + set { + this.serviceIDField = value; + this.RaisePropertyChanged("ServiceID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportAccountResultTypeAccountReasons : AccountReasonsImportType { + + private exportAccountResultTypeAccountReasonsContract contractField; + + private exportAccountResultTypeAccountReasonsCharter charterField; + + private exportAccountResultTypeAccountReasonsOverhaulFormingKindProtocol overhaulFormingKindProtocolField; + + private exportAccountResultTypeAccountReasonsOverhaulFormingKindOMSDescision overhaulFormingKindOMSDescisionField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public exportAccountResultTypeAccountReasonsContract Contract { + get { + return this.contractField; + } + set { + this.contractField = value; + this.RaisePropertyChanged("Contract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public exportAccountResultTypeAccountReasonsCharter Charter { + get { + return this.charterField; + } + set { + this.charterField = value; + this.RaisePropertyChanged("Charter"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public exportAccountResultTypeAccountReasonsOverhaulFormingKindProtocol OverhaulFormingKindProtocol { + get { + return this.overhaulFormingKindProtocolField; + } + set { + this.overhaulFormingKindProtocolField = value; + this.RaisePropertyChanged("OverhaulFormingKindProtocol"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public exportAccountResultTypeAccountReasonsOverhaulFormingKindOMSDescision OverhaulFormingKindOMSDescision { + get { + return this.overhaulFormingKindOMSDescisionField; + } + set { + this.overhaulFormingKindOMSDescisionField = value; + this.RaisePropertyChanged("OverhaulFormingKindOMSDescision"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportAccountResultTypeAccountReasonsContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractGUID { + get { + return this.contractGUIDField; + } + set { + this.contractGUIDField = value; + this.RaisePropertyChanged("ContractGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportAccountResultTypeAccountReasonsCharter : object, System.ComponentModel.INotifyPropertyChanged { + + private string charterGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string CharterGUID { + get { + return this.charterGUIDField; + } + set { + this.charterGUIDField = value; + this.RaisePropertyChanged("CharterGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportAccountResultTypeAccountReasonsOverhaulFormingKindProtocol : object, System.ComponentModel.INotifyPropertyChanged { + + private string overhaulFormingKindProtocolGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string OverhaulFormingKindProtocolGUID { + get { + return this.overhaulFormingKindProtocolGUIDField; + } + set { + this.overhaulFormingKindProtocolGUIDField = value; + this.RaisePropertyChanged("OverhaulFormingKindProtocolGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportAccountResultTypeAccountReasonsOverhaulFormingKindOMSDescision : object, System.ComponentModel.INotifyPropertyChanged { + + private string overhaulFormingKindOMSDescisionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string OverhaulFormingKindOMSDescisionGUID { + get { + return this.overhaulFormingKindOMSDescisionGUIDField; + } + set { + this.overhaulFormingKindOMSDescisionGUIDField = value; + this.RaisePropertyChanged("OverhaulFormingKindOMSDescisionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountType : object, System.ComponentModel.INotifyPropertyChanged { + + private bool itemField; + + private ItemChoiceType8 itemElementNameField; + + private System.DateTime creationDateField; + + private bool creationDateFieldSpecified; + + private string livingPersonsNumberField; + + private decimal totalSquareField; + + private bool totalSquareFieldSpecified; + + private decimal residentialSquareField; + + private bool residentialSquareFieldSpecified; + + private decimal heatedAreaField; + + private bool heatedAreaFieldSpecified; + + private ClosedAccountAttributesType closedField; + + private AccountTypeAccommodation[] accommodationField; + + private AccountTypePayerInfo payerInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute("isCRAccount", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("isOGVorOMSAccount", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("isRCAccount", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("isRSOAccount", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("isTKOAccount", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("isUOAccount", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public bool Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType8 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public System.DateTime CreationDate { + get { + return this.creationDateField; + } + set { + this.creationDateField = value; + this.RaisePropertyChanged("CreationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CreationDateSpecified { + get { + return this.creationDateFieldSpecified; + } + set { + this.creationDateFieldSpecified = value; + this.RaisePropertyChanged("CreationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="nonNegativeInteger", Order=3)] + public string LivingPersonsNumber { + get { + return this.livingPersonsNumberField; + } + set { + this.livingPersonsNumberField = value; + this.RaisePropertyChanged("LivingPersonsNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public decimal TotalSquare { + get { + return this.totalSquareField; + } + set { + this.totalSquareField = value; + this.RaisePropertyChanged("TotalSquare"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalSquareSpecified { + get { + return this.totalSquareFieldSpecified; + } + set { + this.totalSquareFieldSpecified = value; + this.RaisePropertyChanged("TotalSquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public decimal ResidentialSquare { + get { + return this.residentialSquareField; + } + set { + this.residentialSquareField = value; + this.RaisePropertyChanged("ResidentialSquare"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ResidentialSquareSpecified { + get { + return this.residentialSquareFieldSpecified; + } + set { + this.residentialSquareFieldSpecified = value; + this.RaisePropertyChanged("ResidentialSquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public decimal HeatedArea { + get { + return this.heatedAreaField; + } + set { + this.heatedAreaField = value; + this.RaisePropertyChanged("HeatedArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HeatedAreaSpecified { + get { + return this.heatedAreaFieldSpecified; + } + set { + this.heatedAreaFieldSpecified = value; + this.RaisePropertyChanged("HeatedAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public ClosedAccountAttributesType Closed { + get { + return this.closedField; + } + set { + this.closedField = value; + this.RaisePropertyChanged("Closed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Accommodation", Order=8)] + public AccountTypeAccommodation[] Accommodation { + get { + return this.accommodationField; + } + set { + this.accommodationField = value; + this.RaisePropertyChanged("Accommodation"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public AccountTypePayerInfo PayerInfo { + get { + return this.payerInfoField; + } + set { + this.payerInfoField = value; + this.RaisePropertyChanged("PayerInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType8 { + + /// + isCRAccount, + + /// + isOGVorOMSAccount, + + /// + isRCAccount, + + /// + isRSOAccount, + + /// + isTKOAccount, + + /// + isUOAccount, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountTypeAccommodation : object, System.ComponentModel.INotifyPropertyChanged { + + private string itemField; + + private ItemChoiceType9 itemElementNameField; + + private decimal sharePercentField; + + private bool sharePercentFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LivingRoomGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("PremisesGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType9 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal SharePercent { + get { + return this.sharePercentField; + } + set { + this.sharePercentField = value; + this.RaisePropertyChanged("SharePercent"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SharePercentSpecified { + get { + return this.sharePercentFieldSpecified; + } + set { + this.sharePercentFieldSpecified = value; + this.RaisePropertyChanged("SharePercentSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType9 { + + /// + FIASHouseGuid, + + /// + LivingRoomGUID, + + /// + PremisesGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AccountTypePayerInfo : object, System.ComponentModel.INotifyPropertyChanged { + + private bool isRenterField; + + private bool isRenterFieldSpecified; + + private bool isAccountsDividedField; + + private bool isAccountsDividedFieldSpecified; + + private object itemField; + + public AccountTypePayerInfo() { + this.isRenterField = true; + this.isAccountsDividedField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool IsRenter { + get { + return this.isRenterField; + } + set { + this.isRenterField = value; + this.RaisePropertyChanged("IsRenter"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsRenterSpecified { + get { + return this.isRenterFieldSpecified; + } + set { + this.isRenterFieldSpecified = value; + this.RaisePropertyChanged("IsRenterSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool isAccountsDivided { + get { + return this.isAccountsDividedField; + } + set { + this.isAccountsDividedField = value; + this.RaisePropertyChanged("isAccountsDivided"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool isAccountsDividedSpecified { + get { + return this.isAccountsDividedFieldSpecified; + } + set { + this.isAccountsDividedFieldSpecified = value; + this.RaisePropertyChanged("isAccountsDividedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(AccountIndType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Org", typeof(RegOrgVersionType), Order=2)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class EntranceUpdateESPType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private int storeysCountField; + + private bool storeysCountFieldSpecified; + + private short creationYearField; + + private bool creationYearFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int StoreysCount { + get { + return this.storeysCountField; + } + set { + this.storeysCountField = value; + this.RaisePropertyChanged("StoreysCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StoreysCountSpecified { + get { + return this.storeysCountFieldSpecified; + } + set { + this.storeysCountFieldSpecified = value; + this.RaisePropertyChanged("StoreysCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public short CreationYear { + get { + return this.creationYearField; + } + set { + this.creationYearField = value; + this.RaisePropertyChanged("CreationYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CreationYearSpecified { + get { + return this.creationYearFieldSpecified; + } + set { + this.creationYearFieldSpecified = value; + this.RaisePropertyChanged("CreationYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class EntranceUpdateOMSType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private int storeysCountField; + + private bool storeysCountFieldSpecified; + + private short creationYearField; + + private bool creationYearFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int StoreysCount { + get { + return this.storeysCountField; + } + set { + this.storeysCountField = value; + this.RaisePropertyChanged("StoreysCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StoreysCountSpecified { + get { + return this.storeysCountFieldSpecified; + } + set { + this.storeysCountFieldSpecified = value; + this.RaisePropertyChanged("StoreysCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public short CreationYear { + get { + return this.creationYearField; + } + set { + this.creationYearField = value; + this.RaisePropertyChanged("CreationYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CreationYearSpecified { + get { + return this.creationYearFieldSpecified; + } + set { + this.creationYearFieldSpecified = value; + this.RaisePropertyChanged("CreationYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class EntranceUpdateRSOType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class EntranceUpdateUOType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private int storeysCountField; + + private bool storeysCountFieldSpecified; + + private short creationYearField; + + private bool creationYearFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int StoreysCount { + get { + return this.storeysCountField; + } + set { + this.storeysCountField = value; + this.RaisePropertyChanged("StoreysCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StoreysCountSpecified { + get { + return this.storeysCountFieldSpecified; + } + set { + this.storeysCountFieldSpecified = value; + this.RaisePropertyChanged("StoreysCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public short CreationYear { + get { + return this.creationYearField; + } + set { + this.creationYearField = value; + this.RaisePropertyChanged("CreationYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CreationYearSpecified { + get { + return this.creationYearFieldSpecified; + } + set { + this.creationYearFieldSpecified = value; + this.RaisePropertyChanged("CreationYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class EntranceESPType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private int storeysCountField; + + private bool storeysCountFieldSpecified; + + private short creationYearField; + + private bool creationYearFieldSpecified; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int StoreysCount { + get { + return this.storeysCountField; + } + set { + this.storeysCountField = value; + this.RaisePropertyChanged("StoreysCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StoreysCountSpecified { + get { + return this.storeysCountFieldSpecified; + } + set { + this.storeysCountFieldSpecified = value; + this.RaisePropertyChanged("StoreysCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public short CreationYear { + get { + return this.creationYearField; + } + set { + this.creationYearField = value; + this.RaisePropertyChanged("CreationYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CreationYearSpecified { + get { + return this.creationYearFieldSpecified; + } + set { + this.creationYearFieldSpecified = value; + this.RaisePropertyChanged("CreationYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class EntranceOMSType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private int storeysCountField; + + private bool storeysCountFieldSpecified; + + private short creationYearField; + + private bool creationYearFieldSpecified; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int StoreysCount { + get { + return this.storeysCountField; + } + set { + this.storeysCountField = value; + this.RaisePropertyChanged("StoreysCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StoreysCountSpecified { + get { + return this.storeysCountFieldSpecified; + } + set { + this.storeysCountFieldSpecified = value; + this.RaisePropertyChanged("StoreysCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public short CreationYear { + get { + return this.creationYearField; + } + set { + this.creationYearField = value; + this.RaisePropertyChanged("CreationYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CreationYearSpecified { + get { + return this.creationYearFieldSpecified; + } + set { + this.creationYearFieldSpecified = value; + this.RaisePropertyChanged("CreationYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class EntranceRSOType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class EntranceUOType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private int storeysCountField; + + private bool storeysCountFieldSpecified; + + private short creationYearField; + + private bool creationYearFieldSpecified; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int StoreysCount { + get { + return this.storeysCountField; + } + set { + this.storeysCountField = value; + this.RaisePropertyChanged("StoreysCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StoreysCountSpecified { + get { + return this.storeysCountFieldSpecified; + } + set { + this.storeysCountFieldSpecified = value; + this.RaisePropertyChanged("StoreysCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public short CreationYear { + get { + return this.creationYearField; + } + set { + this.creationYearField = value; + this.RaisePropertyChanged("CreationYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CreationYearSpecified { + get { + return this.creationYearFieldSpecified; + } + set { + this.creationYearFieldSpecified = value; + this.RaisePropertyChanged("CreationYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LivingHouseUpdateOMSType : object, System.ComponentModel.INotifyPropertyChanged { + + private HouseBasicUpdateOMSType basicCharacteristictsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public HouseBasicUpdateOMSType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class HouseBasicUpdateOMSType : GKN_EGRP_KeyType { + + private string fIASHouseGuidField; + + private decimal totalSquareField; + + private bool totalSquareFieldSpecified; + + private nsiRef stateField; + + private nsiRef lifeCycleStageField; + + private short usedYearField; + + private bool usedYearFieldSpecified; + + private int floorCountField; + + private bool floorCountFieldSpecified; + + private OKTMORefType oKTMOField; + + private nsiRef olsonTZField; + + private bool culturalHeritageField; + + private bool culturalHeritageFieldSpecified; + + private OGFData[] oGFDataField; + + private HostelDataType hostelDataField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalSquare { + get { + return this.totalSquareField; + } + set { + this.totalSquareField = value; + this.RaisePropertyChanged("TotalSquare"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalSquareSpecified { + get { + return this.totalSquareFieldSpecified; + } + set { + this.totalSquareFieldSpecified = value; + this.RaisePropertyChanged("TotalSquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef State { + get { + return this.stateField; + } + set { + this.stateField = value; + this.RaisePropertyChanged("State"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef LifeCycleStage { + get { + return this.lifeCycleStageField; + } + set { + this.lifeCycleStageField = value; + this.RaisePropertyChanged("LifeCycleStage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public short UsedYear { + get { + return this.usedYearField; + } + set { + this.usedYearField = value; + this.RaisePropertyChanged("UsedYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UsedYearSpecified { + get { + return this.usedYearFieldSpecified; + } + set { + this.usedYearFieldSpecified = value; + this.RaisePropertyChanged("UsedYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public int FloorCount { + get { + return this.floorCountField; + } + set { + this.floorCountField = value; + this.RaisePropertyChanged("FloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool FloorCountSpecified { + get { + return this.floorCountFieldSpecified; + } + set { + this.floorCountFieldSpecified = value; + this.RaisePropertyChanged("FloorCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public OKTMORefType OKTMO { + get { + return this.oKTMOField; + } + set { + this.oKTMOField = value; + this.RaisePropertyChanged("OKTMO"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public nsiRef OlsonTZ { + get { + return this.olsonTZField; + } + set { + this.olsonTZField = value; + this.RaisePropertyChanged("OlsonTZ"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool CulturalHeritage { + get { + return this.culturalHeritageField; + } + set { + this.culturalHeritageField = value; + this.RaisePropertyChanged("CulturalHeritage"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CulturalHeritageSpecified { + get { + return this.culturalHeritageFieldSpecified; + } + set { + this.culturalHeritageFieldSpecified = value; + this.RaisePropertyChanged("CulturalHeritageSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=9)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public HostelDataType HostelData { + get { + return this.hostelDataField; + } + set { + this.hostelDataField = value; + this.RaisePropertyChanged("HostelData"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class OKTMORefType : object, System.ComponentModel.INotifyPropertyChanged { + + private string codeField; + + private string nameField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string code { + get { + return this.codeField; + } + set { + this.codeField = value; + this.RaisePropertyChanged("code"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string name { + get { + return this.nameField; + } + set { + this.nameField = value; + this.RaisePropertyChanged("name"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class OGFData : object, System.ComponentModel.INotifyPropertyChanged { + + private string codeField; + + private OGFDataValue valueField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Code { + get { + return this.codeField; + } + set { + this.codeField = value; + this.RaisePropertyChanged("Code"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public OGFDataValue Value { + get { + return this.valueField; + } + set { + this.valueField = value; + this.RaisePropertyChanged("Value"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class OGFDataValue : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private ItemChoiceType1 itemElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("BooleanValue", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("DateTimeValue", typeof(System.DateTime), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("File", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("FloatValue", typeof(decimal), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("IntegerValue", typeof(int), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NsiCode", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StringValue", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType1 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType1 { + + /// + BooleanValue, + + /// + DateTimeValue, + + /// + File, + + /// + FloatValue, + + /// + IntegerValue, + + /// + NsiCode, + + /// + StringValue, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class HostelDataType : object, System.ComponentModel.INotifyPropertyChanged { + + private bool isRegionPropertyField; + + private bool isRegionPropertyFieldSpecified; + + private bool isMunicipalPropertyField; + + private bool isMunicipalPropertyFieldSpecified; + + private nsiRef hostelTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool IsRegionProperty { + get { + return this.isRegionPropertyField; + } + set { + this.isRegionPropertyField = value; + this.RaisePropertyChanged("IsRegionProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsRegionPropertySpecified { + get { + return this.isRegionPropertyFieldSpecified; + } + set { + this.isRegionPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsRegionPropertySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool IsMunicipalProperty { + get { + return this.isMunicipalPropertyField; + } + set { + this.isMunicipalPropertyField = value; + this.RaisePropertyChanged("IsMunicipalProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsMunicipalPropertySpecified { + get { + return this.isMunicipalPropertyFieldSpecified; + } + set { + this.isMunicipalPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsMunicipalPropertySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef HostelType { + get { + return this.hostelTypeField; + } + set { + this.hostelTypeField = value; + this.RaisePropertyChanged("HostelType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RoomExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RoomUpdateESPType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RoomUpdateOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RoomUpdateUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RoomESPType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RoomOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RoomUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PremisesBasicUpdateESPType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesUpdateESPType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesUpdateESPType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PremisesBasicUpdateOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesUpdateOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesUpdateOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PremisesBasicUpdateUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesUpdateUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesUpdateUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PremisesBasicESPType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesESPType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesESPType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PremisesBasicOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PremisesBasicUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BlockUpdateOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BlockUpdateUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BlockOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BlockUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(HouseBasicUpdateESPType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(HouseBasicUpdateOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(HouseBasicUpdateUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(HouseBasicUOType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class GKN_EGRP_KeyType : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType3[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("CadastralNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ConditionalNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoCadastralNumber", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("No_RSO_GKN_EGRP_Registered", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RightOrEncumbrance", typeof(RightOrEncumbrance), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType3[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class RightOrEncumbrance : object, System.ComponentModel.INotifyPropertyChanged { + + private RightOrEncumbranceType typeField; + + private string regNumberField; + + private System.DateTime regDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public RightOrEncumbranceType Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string RegNumber { + get { + return this.regNumberField; + } + set { + this.regNumberField = value; + this.RaisePropertyChanged("RegNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime RegDate { + get { + return this.regDateField; + } + set { + this.regDateField = value; + this.RaisePropertyChanged("RegDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum RightOrEncumbranceType { + + /// + R, + + /// + E, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType3 { + + /// + CadastralNumber, + + /// + ConditionalNumber, + + /// + NoCadastralNumber, + + /// + No_RSO_GKN_EGRP_Registered, + + /// + RightOrEncumbrance, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class RoomExportType : GKN_EGRP_KeyType { + + private string roomNumberField; + + private decimal squareField; + + private bool squareFieldSpecified; + + private string floorField; + + private OGFData[] oGFDataField; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Square { + get { + return this.squareField; + } + set { + this.squareField = value; + this.RaisePropertyChanged("Square"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SquareSpecified { + get { + return this.squareFieldSpecified; + } + set { + this.squareFieldSpecified = value; + this.RaisePropertyChanged("SquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Floor { + get { + return this.floorField; + } + set { + this.floorField = value; + this.RaisePropertyChanged("Floor"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=3)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=4)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class RoomUpdateESPType : GKN_EGRP_KeyType { + + private string roomNumberField; + + private decimal squareField; + + private bool squareFieldSpecified; + + private OGFData[] oGFDataField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Square { + get { + return this.squareField; + } + set { + this.squareField = value; + this.RaisePropertyChanged("Square"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SquareSpecified { + get { + return this.squareFieldSpecified; + } + set { + this.squareFieldSpecified = value; + this.RaisePropertyChanged("SquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=2)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class RoomUpdateOMSType : GKN_EGRP_KeyType { + + private string roomNumberField; + + private decimal squareField; + + private bool squareFieldSpecified; + + private OGFData[] oGFDataField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Square { + get { + return this.squareField; + } + set { + this.squareField = value; + this.RaisePropertyChanged("Square"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SquareSpecified { + get { + return this.squareFieldSpecified; + } + set { + this.squareFieldSpecified = value; + this.RaisePropertyChanged("SquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=2)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class RoomUpdateUOType : GKN_EGRP_KeyType { + + private string roomNumberField; + + private decimal squareField; + + private bool squareFieldSpecified; + + private OGFData[] oGFDataField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Square { + get { + return this.squareField; + } + set { + this.squareField = value; + this.RaisePropertyChanged("Square"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SquareSpecified { + get { + return this.squareFieldSpecified; + } + set { + this.squareFieldSpecified = value; + this.RaisePropertyChanged("SquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=2)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class RoomESPType : GKN_EGRP_KeyType { + + private string roomNumberField; + + private decimal squareField; + + private bool squareFieldSpecified; + + private OGFData[] oGFDataField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Square { + get { + return this.squareField; + } + set { + this.squareField = value; + this.RaisePropertyChanged("Square"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SquareSpecified { + get { + return this.squareFieldSpecified; + } + set { + this.squareFieldSpecified = value; + this.RaisePropertyChanged("SquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=2)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class RoomOMSType : GKN_EGRP_KeyType { + + private string roomNumberField; + + private decimal squareField; + + private bool squareFieldSpecified; + + private OGFData[] oGFDataField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Square { + get { + return this.squareField; + } + set { + this.squareField = value; + this.RaisePropertyChanged("Square"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SquareSpecified { + get { + return this.squareFieldSpecified; + } + set { + this.squareFieldSpecified = value; + this.RaisePropertyChanged("SquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=2)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class RoomUOType : GKN_EGRP_KeyType { + + private string roomNumberField; + + private decimal squareField; + + private bool squareFieldSpecified; + + private OGFData[] oGFDataField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Square { + get { + return this.squareField; + } + set { + this.squareField = value; + this.RaisePropertyChanged("Square"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SquareSpecified { + get { + return this.squareFieldSpecified; + } + set { + this.squareFieldSpecified = value; + this.RaisePropertyChanged("SquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=2)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesUpdateESPType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesUpdateESPType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PremisesBasicUpdateESPType : GKN_EGRP_KeyType { + + private string premisesNumField; + + private OGFData[] oGFDataField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=1)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class NonResidentialPremisesUpdateESPType : PremisesBasicUpdateESPType { + + private string fIASChildHouseGuidField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private bool isCommonPropertyField; + + private bool isCommonPropertyFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool IsCommonProperty { + get { + return this.isCommonPropertyField; + } + set { + this.isCommonPropertyField = value; + this.RaisePropertyChanged("IsCommonProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsCommonPropertySpecified { + get { + return this.isCommonPropertyFieldSpecified; + } + set { + this.isCommonPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsCommonPropertySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ResidentialPremisesUpdateESPType : PremisesBasicUpdateESPType { + + private object itemField; + + private string fIASChildHouseGuidField; + + private nsiRef premisesCharacteristicField; + + private object item1Field; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceNum", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("HasNoEntrance", typeof(bool), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("GrossArea", typeof(decimal), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("NoGrossArea", typeof(bool), Order=3)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesUpdateOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesUpdateOMSType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PremisesBasicUpdateOMSType : GKN_EGRP_KeyType { + + private string premisesNumField; + + private OGFData[] oGFDataField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=1)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class NonResidentialPremisesUpdateOMSType : PremisesBasicUpdateOMSType { + + private string fIASChildHouseGuidField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private bool isCommonPropertyField; + + private bool isCommonPropertyFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool IsCommonProperty { + get { + return this.isCommonPropertyField; + } + set { + this.isCommonPropertyField = value; + this.RaisePropertyChanged("IsCommonProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsCommonPropertySpecified { + get { + return this.isCommonPropertyFieldSpecified; + } + set { + this.isCommonPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsCommonPropertySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ResidentialPremisesUpdateOMSType : PremisesBasicUpdateOMSType { + + private object itemField; + + private string fIASChildHouseGuidField; + + private nsiRef premisesCharacteristicField; + + private object item1Field; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceNum", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("HasNoEntrance", typeof(bool), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("GrossArea", typeof(decimal), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("NoGrossArea", typeof(bool), Order=3)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesUpdateUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesUpdateUOType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PremisesBasicUpdateUOType : GKN_EGRP_KeyType { + + private string premisesNumField; + + private OGFData[] oGFDataField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=1)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class NonResidentialPremisesUpdateUOType : PremisesBasicUpdateUOType { + + private string fIASChildHouseGuidField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private bool isCommonPropertyField; + + private bool isCommonPropertyFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool IsCommonProperty { + get { + return this.isCommonPropertyField; + } + set { + this.isCommonPropertyField = value; + this.RaisePropertyChanged("IsCommonProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsCommonPropertySpecified { + get { + return this.isCommonPropertyFieldSpecified; + } + set { + this.isCommonPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsCommonPropertySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ResidentialPremisesUpdateUOType : PremisesBasicUpdateUOType { + + private object itemField; + + private string fIASChildHouseGuidField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private object item1Field; + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceNum", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("HasNoEntrance", typeof(bool), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("GrossArea", typeof(decimal), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("NoGrossArea", typeof(bool), Order=4)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesESPType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesESPType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PremisesBasicESPType : GKN_EGRP_KeyType { + + private string premisesNumField; + + private OGFData[] oGFDataField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=1)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class NonResidentialPremisesESPType : PremisesBasicESPType { + + private string fIASChildHouseGuidField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private bool isCommonPropertyField; + + private bool isCommonPropertyFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool IsCommonProperty { + get { + return this.isCommonPropertyField; + } + set { + this.isCommonPropertyField = value; + this.RaisePropertyChanged("IsCommonProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsCommonPropertySpecified { + get { + return this.isCommonPropertyFieldSpecified; + } + set { + this.isCommonPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsCommonPropertySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ResidentialPremisesESPType : PremisesBasicESPType { + + private object itemField; + + private string fIASChildHouseGuidField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private object item1Field; + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceNum", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("HasNoEntrance", typeof(bool), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("GrossArea", typeof(decimal), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("NoGrossArea", typeof(bool), Order=4)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesOMSType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesOMSType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PremisesBasicOMSType : GKN_EGRP_KeyType { + + private string premisesNumField; + + private OGFData[] oGFDataField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=1)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class NonResidentialPremisesOMSType : PremisesBasicOMSType { + + private string fIASChildHouseGuidField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private bool isCommonPropertyField; + + private bool isCommonPropertyFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool IsCommonProperty { + get { + return this.isCommonPropertyField; + } + set { + this.isCommonPropertyField = value; + this.RaisePropertyChanged("IsCommonProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsCommonPropertySpecified { + get { + return this.isCommonPropertyFieldSpecified; + } + set { + this.isCommonPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsCommonPropertySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ResidentialPremisesOMSType : PremisesBasicOMSType { + + private object itemField; + + private string fIASChildHouseGuidField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private object item1Field; + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceNum", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("HasNoEntrance", typeof(bool), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("GrossArea", typeof(decimal), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("NoGrossArea", typeof(bool), Order=4)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesUOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesUOType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PremisesBasicUOType : GKN_EGRP_KeyType { + + private string premisesNumField; + + private OGFData[] oGFDataField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=1)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class NonResidentialPremisesUOType : PremisesBasicUOType { + + private string fIASChildHouseGuidField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private bool isCommonPropertyField; + + private bool isCommonPropertyFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool IsCommonProperty { + get { + return this.isCommonPropertyField; + } + set { + this.isCommonPropertyField = value; + this.RaisePropertyChanged("IsCommonProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsCommonPropertySpecified { + get { + return this.isCommonPropertyFieldSpecified; + } + set { + this.isCommonPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsCommonPropertySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ResidentialPremisesUOType : PremisesBasicUOType { + + private object itemField; + + private string fIASChildHouseGuidField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private object item1Field; + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceNum", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("HasNoEntrance", typeof(bool), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("GrossArea", typeof(decimal), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("NoGrossArea", typeof(bool), Order=4)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BlockUpdateOMSType : GKN_EGRP_KeyType { + + private string blockNumField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private object itemField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private OGFData[] oGFDataField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + private BlockCategoryType categoryField; + + private bool categoryFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string BlockNum { + get { + return this.blockNumField; + } + set { + this.blockNumField = value; + this.RaisePropertyChanged("BlockNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("GrossArea", typeof(decimal), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("NoGrossArea", typeof(bool), Order=3)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=6)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public BlockCategoryType Category { + get { + return this.categoryField; + } + set { + this.categoryField = value; + this.RaisePropertyChanged("Category"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CategorySpecified { + get { + return this.categoryFieldSpecified; + } + set { + this.categoryFieldSpecified = value; + this.RaisePropertyChanged("CategorySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum BlockCategoryType { + + /// + Residential, + + /// + NonResidential, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BlockUpdateUOType : GKN_EGRP_KeyType { + + private string blockNumField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private object itemField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private OGFData[] oGFDataField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + private BlockCategoryType categoryField; + + private bool categoryFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string BlockNum { + get { + return this.blockNumField; + } + set { + this.blockNumField = value; + this.RaisePropertyChanged("BlockNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("GrossArea", typeof(decimal), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("NoGrossArea", typeof(bool), Order=3)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=6)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public BlockCategoryType Category { + get { + return this.categoryField; + } + set { + this.categoryField = value; + this.RaisePropertyChanged("Category"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CategorySpecified { + get { + return this.categoryFieldSpecified; + } + set { + this.categoryFieldSpecified = value; + this.RaisePropertyChanged("CategorySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BlockOMSType : GKN_EGRP_KeyType { + + private string blockNumField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private object itemField; + + private OGFData[] oGFDataField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + private BlockCategoryType categoryField; + + private bool categoryFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string BlockNum { + get { + return this.blockNumField; + } + set { + this.blockNumField = value; + this.RaisePropertyChanged("BlockNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("GrossArea", typeof(decimal), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("NoGrossArea", typeof(bool), Order=3)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=4)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public BlockCategoryType Category { + get { + return this.categoryField; + } + set { + this.categoryField = value; + this.RaisePropertyChanged("Category"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CategorySpecified { + get { + return this.categoryFieldSpecified; + } + set { + this.categoryFieldSpecified = value; + this.RaisePropertyChanged("CategorySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BlockUOType : GKN_EGRP_KeyType { + + private string blockNumField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private object itemField; + + private OGFData[] oGFDataField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + private BlockCategoryType categoryField; + + private bool categoryFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string BlockNum { + get { + return this.blockNumField; + } + set { + this.blockNumField = value; + this.RaisePropertyChanged("BlockNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("GrossArea", typeof(decimal), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("NoGrossArea", typeof(bool), Order=3)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=4)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public BlockCategoryType Category { + get { + return this.categoryField; + } + set { + this.categoryField = value; + this.RaisePropertyChanged("Category"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CategorySpecified { + get { + return this.categoryFieldSpecified; + } + set { + this.categoryFieldSpecified = value; + this.RaisePropertyChanged("CategorySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class HouseBasicUpdateESPType : GKN_EGRP_KeyType { + + private string fIASHouseGuidField; + + private decimal totalSquareField; + + private bool totalSquareFieldSpecified; + + private nsiRef stateField; + + private nsiRef lifeCycleStageField; + + private short usedYearField; + + private bool usedYearFieldSpecified; + + private int floorCountField; + + private bool floorCountFieldSpecified; + + private OKTMORefType oKTMOField; + + private nsiRef olsonTZField; + + private bool culturalHeritageField; + + private bool culturalHeritageFieldSpecified; + + private OGFData[] oGFDataField; + + private bool isMunicipalPropertyField; + + private bool isMunicipalPropertyFieldSpecified; + + private bool isRegionPropertyField; + + private bool isRegionPropertyFieldSpecified; + + public HouseBasicUpdateESPType() { + this.isMunicipalPropertyField = false; + this.isRegionPropertyField = false; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalSquare { + get { + return this.totalSquareField; + } + set { + this.totalSquareField = value; + this.RaisePropertyChanged("TotalSquare"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalSquareSpecified { + get { + return this.totalSquareFieldSpecified; + } + set { + this.totalSquareFieldSpecified = value; + this.RaisePropertyChanged("TotalSquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef State { + get { + return this.stateField; + } + set { + this.stateField = value; + this.RaisePropertyChanged("State"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef LifeCycleStage { + get { + return this.lifeCycleStageField; + } + set { + this.lifeCycleStageField = value; + this.RaisePropertyChanged("LifeCycleStage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public short UsedYear { + get { + return this.usedYearField; + } + set { + this.usedYearField = value; + this.RaisePropertyChanged("UsedYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UsedYearSpecified { + get { + return this.usedYearFieldSpecified; + } + set { + this.usedYearFieldSpecified = value; + this.RaisePropertyChanged("UsedYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public int FloorCount { + get { + return this.floorCountField; + } + set { + this.floorCountField = value; + this.RaisePropertyChanged("FloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool FloorCountSpecified { + get { + return this.floorCountFieldSpecified; + } + set { + this.floorCountFieldSpecified = value; + this.RaisePropertyChanged("FloorCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public OKTMORefType OKTMO { + get { + return this.oKTMOField; + } + set { + this.oKTMOField = value; + this.RaisePropertyChanged("OKTMO"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public nsiRef OlsonTZ { + get { + return this.olsonTZField; + } + set { + this.olsonTZField = value; + this.RaisePropertyChanged("OlsonTZ"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool CulturalHeritage { + get { + return this.culturalHeritageField; + } + set { + this.culturalHeritageField = value; + this.RaisePropertyChanged("CulturalHeritage"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CulturalHeritageSpecified { + get { + return this.culturalHeritageFieldSpecified; + } + set { + this.culturalHeritageFieldSpecified = value; + this.RaisePropertyChanged("CulturalHeritageSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=9)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public bool IsMunicipalProperty { + get { + return this.isMunicipalPropertyField; + } + set { + this.isMunicipalPropertyField = value; + this.RaisePropertyChanged("IsMunicipalProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsMunicipalPropertySpecified { + get { + return this.isMunicipalPropertyFieldSpecified; + } + set { + this.isMunicipalPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsMunicipalPropertySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public bool IsRegionProperty { + get { + return this.isRegionPropertyField; + } + set { + this.isRegionPropertyField = value; + this.RaisePropertyChanged("IsRegionProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsRegionPropertySpecified { + get { + return this.isRegionPropertyFieldSpecified; + } + set { + this.isRegionPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsRegionPropertySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class HouseBasicUpdateUOType : GKN_EGRP_KeyType { + + private string fIASHouseGuidField; + + private decimal totalSquareField; + + private bool totalSquareFieldSpecified; + + private nsiRef stateField; + + private nsiRef lifeCycleStageField; + + private short usedYearField; + + private bool usedYearFieldSpecified; + + private int floorCountField; + + private bool floorCountFieldSpecified; + + private OKTMORefType oKTMOField; + + private nsiRef olsonTZField; + + private bool culturalHeritageField; + + private bool culturalHeritageFieldSpecified; + + private OGFData[] oGFDataField; + + private bool isMunicipalPropertyField; + + private bool isMunicipalPropertyFieldSpecified; + + private bool isRegionPropertyField; + + private bool isRegionPropertyFieldSpecified; + + public HouseBasicUpdateUOType() { + this.isMunicipalPropertyField = false; + this.isRegionPropertyField = false; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalSquare { + get { + return this.totalSquareField; + } + set { + this.totalSquareField = value; + this.RaisePropertyChanged("TotalSquare"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalSquareSpecified { + get { + return this.totalSquareFieldSpecified; + } + set { + this.totalSquareFieldSpecified = value; + this.RaisePropertyChanged("TotalSquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef State { + get { + return this.stateField; + } + set { + this.stateField = value; + this.RaisePropertyChanged("State"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef LifeCycleStage { + get { + return this.lifeCycleStageField; + } + set { + this.lifeCycleStageField = value; + this.RaisePropertyChanged("LifeCycleStage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public short UsedYear { + get { + return this.usedYearField; + } + set { + this.usedYearField = value; + this.RaisePropertyChanged("UsedYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UsedYearSpecified { + get { + return this.usedYearFieldSpecified; + } + set { + this.usedYearFieldSpecified = value; + this.RaisePropertyChanged("UsedYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public int FloorCount { + get { + return this.floorCountField; + } + set { + this.floorCountField = value; + this.RaisePropertyChanged("FloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool FloorCountSpecified { + get { + return this.floorCountFieldSpecified; + } + set { + this.floorCountFieldSpecified = value; + this.RaisePropertyChanged("FloorCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public OKTMORefType OKTMO { + get { + return this.oKTMOField; + } + set { + this.oKTMOField = value; + this.RaisePropertyChanged("OKTMO"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public nsiRef OlsonTZ { + get { + return this.olsonTZField; + } + set { + this.olsonTZField = value; + this.RaisePropertyChanged("OlsonTZ"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool CulturalHeritage { + get { + return this.culturalHeritageField; + } + set { + this.culturalHeritageField = value; + this.RaisePropertyChanged("CulturalHeritage"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CulturalHeritageSpecified { + get { + return this.culturalHeritageFieldSpecified; + } + set { + this.culturalHeritageFieldSpecified = value; + this.RaisePropertyChanged("CulturalHeritageSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=9)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public bool IsMunicipalProperty { + get { + return this.isMunicipalPropertyField; + } + set { + this.isMunicipalPropertyField = value; + this.RaisePropertyChanged("IsMunicipalProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsMunicipalPropertySpecified { + get { + return this.isMunicipalPropertyFieldSpecified; + } + set { + this.isMunicipalPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsMunicipalPropertySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public bool IsRegionProperty { + get { + return this.isRegionPropertyField; + } + set { + this.isRegionPropertyField = value; + this.RaisePropertyChanged("IsRegionProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsRegionPropertySpecified { + get { + return this.isRegionPropertyFieldSpecified; + } + set { + this.isRegionPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsRegionPropertySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class HouseBasicUOType : GKN_EGRP_KeyType { + + private string fIASHouseGuidField; + + private decimal totalSquareField; + + private nsiRef stateField; + + private nsiRef lifeCycleStageField; + + private short usedYearField; + + private int floorCountField; + + private OKTMORefType oKTMOField; + + private nsiRef olsonTZField; + + private bool culturalHeritageField; + + private OGFData[] oGFDataField; + + private bool isMunicipalPropertyField; + + private bool isMunicipalPropertyFieldSpecified; + + private bool isRegionPropertyField; + + private bool isRegionPropertyFieldSpecified; + + public HouseBasicUOType() { + this.isMunicipalPropertyField = false; + this.isRegionPropertyField = false; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalSquare { + get { + return this.totalSquareField; + } + set { + this.totalSquareField = value; + this.RaisePropertyChanged("TotalSquare"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef State { + get { + return this.stateField; + } + set { + this.stateField = value; + this.RaisePropertyChanged("State"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef LifeCycleStage { + get { + return this.lifeCycleStageField; + } + set { + this.lifeCycleStageField = value; + this.RaisePropertyChanged("LifeCycleStage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public short UsedYear { + get { + return this.usedYearField; + } + set { + this.usedYearField = value; + this.RaisePropertyChanged("UsedYear"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public int FloorCount { + get { + return this.floorCountField; + } + set { + this.floorCountField = value; + this.RaisePropertyChanged("FloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public OKTMORefType OKTMO { + get { + return this.oKTMOField; + } + set { + this.oKTMOField = value; + this.RaisePropertyChanged("OKTMO"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public nsiRef OlsonTZ { + get { + return this.olsonTZField; + } + set { + this.olsonTZField = value; + this.RaisePropertyChanged("OlsonTZ"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool CulturalHeritage { + get { + return this.culturalHeritageField; + } + set { + this.culturalHeritageField = value; + this.RaisePropertyChanged("CulturalHeritage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=9)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public bool IsMunicipalProperty { + get { + return this.isMunicipalPropertyField; + } + set { + this.isMunicipalPropertyField = value; + this.RaisePropertyChanged("IsMunicipalProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsMunicipalPropertySpecified { + get { + return this.isMunicipalPropertyFieldSpecified; + } + set { + this.isMunicipalPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsMunicipalPropertySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public bool IsRegionProperty { + get { + return this.isRegionPropertyField; + } + set { + this.isRegionPropertyField = value; + this.RaisePropertyChanged("IsRegionProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsRegionPropertySpecified { + get { + return this.isRegionPropertyFieldSpecified; + } + set { + this.isRegionPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsRegionPropertySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LivingHouseUpdateRSOType : object, System.ComponentModel.INotifyPropertyChanged { + + private HouseBasicUpdateRSOType basicCharacteristictsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public HouseBasicUpdateRSOType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class HouseBasicUpdateRSOType : GKN_EGRP_KeyRSOType { + + private string fIASHouseGuidField; + + private OKTMORefType oKTMOField; + + private nsiRef olsonTZField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public OKTMORefType OKTMO { + get { + return this.oKTMOField; + } + set { + this.oKTMOField = value; + this.RaisePropertyChanged("OKTMO"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef OlsonTZ { + get { + return this.olsonTZField; + } + set { + this.olsonTZField = value; + this.RaisePropertyChanged("OlsonTZ"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RoomUpdateRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RoomRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PremisesBasicUpdateRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesUpdateRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesUpdateRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PremisesBasicRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BlockUpdateRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BlockRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(HouseBasicUpdateRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(HouseBasicRSOType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class GKN_EGRP_KeyRSOType : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType16[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("CadastralNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ConditionalNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoCadastralNumber", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("No_RSO_GKN_EGRP_Data", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("No_RSO_GKN_EGRP_Registered", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RightOrEncumbrance", typeof(RightOrEncumbrance), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType16[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType16 { + + /// + CadastralNumber, + + /// + ConditionalNumber, + + /// + NoCadastralNumber, + + /// + No_RSO_GKN_EGRP_Data, + + /// + No_RSO_GKN_EGRP_Registered, + + /// + RightOrEncumbrance, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class RoomUpdateRSOType : GKN_EGRP_KeyRSOType { + + private string roomNumberField; + + private decimal squareField; + + private bool squareFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Square { + get { + return this.squareField; + } + set { + this.squareField = value; + this.RaisePropertyChanged("Square"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SquareSpecified { + get { + return this.squareFieldSpecified; + } + set { + this.squareFieldSpecified = value; + this.RaisePropertyChanged("SquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class RoomRSOType : GKN_EGRP_KeyRSOType { + + private string roomNumberField; + + private decimal squareField; + + private bool squareFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Square { + get { + return this.squareField; + } + set { + this.squareField = value; + this.RaisePropertyChanged("Square"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SquareSpecified { + get { + return this.squareFieldSpecified; + } + set { + this.squareFieldSpecified = value; + this.RaisePropertyChanged("SquareSpecified"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesUpdateRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesUpdateRSOType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PremisesBasicUpdateRSOType : GKN_EGRP_KeyRSOType { + + private string premisesNumField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class NonResidentialPremisesUpdateRSOType : PremisesBasicUpdateRSOType { + + private string fIASChildHouseGuidField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ResidentialPremisesUpdateRSOType : PremisesBasicUpdateRSOType { + + private object itemField; + + private string fIASChildHouseGuidField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceNum", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("HasNoEntrance", typeof(bool), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesRSOType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesRSOType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PremisesBasicRSOType : GKN_EGRP_KeyRSOType { + + private string premisesNumField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class NonResidentialPremisesRSOType : PremisesBasicRSOType { + + private string fIASChildHouseGuidField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ResidentialPremisesRSOType : PremisesBasicRSOType { + + private object itemField; + + private string fIASChildHouseGuidField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceNum", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("HasNoEntrance", typeof(bool), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BlockUpdateRSOType : GKN_EGRP_KeyRSOType { + + private string blockNumField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private BlockCategoryType categoryField; + + private bool categoryFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string BlockNum { + get { + return this.blockNumField; + } + set { + this.blockNumField = value; + this.RaisePropertyChanged("BlockNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public BlockCategoryType Category { + get { + return this.categoryField; + } + set { + this.categoryField = value; + this.RaisePropertyChanged("Category"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CategorySpecified { + get { + return this.categoryFieldSpecified; + } + set { + this.categoryFieldSpecified = value; + this.RaisePropertyChanged("CategorySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BlockRSOType : GKN_EGRP_KeyRSOType { + + private string blockNumField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private BlockCategoryType categoryField; + + private bool categoryFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string BlockNum { + get { + return this.blockNumField; + } + set { + this.blockNumField = value; + this.RaisePropertyChanged("BlockNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public BlockCategoryType Category { + get { + return this.categoryField; + } + set { + this.categoryField = value; + this.RaisePropertyChanged("Category"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CategorySpecified { + get { + return this.categoryFieldSpecified; + } + set { + this.categoryFieldSpecified = value; + this.RaisePropertyChanged("CategorySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class HouseBasicRSOType : GKN_EGRP_KeyRSOType { + + private string fIASHouseGuidField; + + private OKTMORefType oKTMOField; + + private nsiRef olsonTZField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public OKTMORefType OKTMO { + get { + return this.oKTMOField; + } + set { + this.oKTMOField = value; + this.RaisePropertyChanged("OKTMO"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef OlsonTZ { + get { + return this.olsonTZField; + } + set { + this.olsonTZField = value; + this.RaisePropertyChanged("OlsonTZ"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LivingHouseUpdateUOType : object, System.ComponentModel.INotifyPropertyChanged { + + private HouseBasicUpdateUOType basicCharacteristictsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public HouseBasicUpdateUOType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LivingHouseOMSType : object, System.ComponentModel.INotifyPropertyChanged { + + private LivingHouseOMSTypeBasicCharacteristicts basicCharacteristictsField; + + private bool hasBlocksField; + + private bool hasBlocksFieldSpecified; + + private bool hasMultipleHousesWithSameAddressField; + + private bool hasMultipleHousesWithSameAddressFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public LivingHouseOMSTypeBasicCharacteristicts BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool HasBlocks { + get { + return this.hasBlocksField; + } + set { + this.hasBlocksField = value; + this.RaisePropertyChanged("HasBlocks"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HasBlocksSpecified { + get { + return this.hasBlocksFieldSpecified; + } + set { + this.hasBlocksFieldSpecified = value; + this.RaisePropertyChanged("HasBlocksSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool HasMultipleHousesWithSameAddress { + get { + return this.hasMultipleHousesWithSameAddressField; + } + set { + this.hasMultipleHousesWithSameAddressField = value; + this.RaisePropertyChanged("HasMultipleHousesWithSameAddress"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HasMultipleHousesWithSameAddressSpecified { + get { + return this.hasMultipleHousesWithSameAddressFieldSpecified; + } + set { + this.hasMultipleHousesWithSameAddressFieldSpecified = value; + this.RaisePropertyChanged("HasMultipleHousesWithSameAddressSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LivingHouseOMSTypeBasicCharacteristicts : GKN_EGRP_KeyType { + + private string fIASHouseGuidField; + + private decimal totalSquareField; + + private nsiRef stateField; + + private nsiRef lifeCycleStageField; + + private short usedYearField; + + private bool usedYearFieldSpecified; + + private int floorCountField; + + private OKTMORefType oKTMOField; + + private nsiRef olsonTZField; + + private bool culturalHeritageField; + + private OGFData[] oGFDataField; + + private HostelDataType hostelDataField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalSquare { + get { + return this.totalSquareField; + } + set { + this.totalSquareField = value; + this.RaisePropertyChanged("TotalSquare"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef State { + get { + return this.stateField; + } + set { + this.stateField = value; + this.RaisePropertyChanged("State"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef LifeCycleStage { + get { + return this.lifeCycleStageField; + } + set { + this.lifeCycleStageField = value; + this.RaisePropertyChanged("LifeCycleStage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public short UsedYear { + get { + return this.usedYearField; + } + set { + this.usedYearField = value; + this.RaisePropertyChanged("UsedYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UsedYearSpecified { + get { + return this.usedYearFieldSpecified; + } + set { + this.usedYearFieldSpecified = value; + this.RaisePropertyChanged("UsedYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public int FloorCount { + get { + return this.floorCountField; + } + set { + this.floorCountField = value; + this.RaisePropertyChanged("FloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public OKTMORefType OKTMO { + get { + return this.oKTMOField; + } + set { + this.oKTMOField = value; + this.RaisePropertyChanged("OKTMO"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public nsiRef OlsonTZ { + get { + return this.olsonTZField; + } + set { + this.olsonTZField = value; + this.RaisePropertyChanged("OlsonTZ"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool CulturalHeritage { + get { + return this.culturalHeritageField; + } + set { + this.culturalHeritageField = value; + this.RaisePropertyChanged("CulturalHeritage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=9)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public HostelDataType HostelData { + get { + return this.hostelDataField; + } + set { + this.hostelDataField = value; + this.RaisePropertyChanged("HostelData"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LivingHouseRSOType : object, System.ComponentModel.INotifyPropertyChanged { + + private HouseBasicRSOType basicCharacteristictsField; + + private bool hasBlocksField; + + private bool hasBlocksFieldSpecified; + + private bool hasMultipleHousesWithSameAddressField; + + private bool hasMultipleHousesWithSameAddressFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public HouseBasicRSOType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool HasBlocks { + get { + return this.hasBlocksField; + } + set { + this.hasBlocksField = value; + this.RaisePropertyChanged("HasBlocks"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HasBlocksSpecified { + get { + return this.hasBlocksFieldSpecified; + } + set { + this.hasBlocksFieldSpecified = value; + this.RaisePropertyChanged("HasBlocksSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool HasMultipleHousesWithSameAddress { + get { + return this.hasMultipleHousesWithSameAddressField; + } + set { + this.hasMultipleHousesWithSameAddressField = value; + this.RaisePropertyChanged("HasMultipleHousesWithSameAddress"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HasMultipleHousesWithSameAddressSpecified { + get { + return this.hasMultipleHousesWithSameAddressFieldSpecified; + } + set { + this.hasMultipleHousesWithSameAddressFieldSpecified = value; + this.RaisePropertyChanged("HasMultipleHousesWithSameAddressSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LivingHouseUOType : object, System.ComponentModel.INotifyPropertyChanged { + + private HouseBasicUOType basicCharacteristictsField; + + private bool hasBlocksField; + + private bool hasBlocksFieldSpecified; + + private bool hasMultipleHousesWithSameAddressField; + + private bool hasMultipleHousesWithSameAddressFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public HouseBasicUOType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool HasBlocks { + get { + return this.hasBlocksField; + } + set { + this.hasBlocksField = value; + this.RaisePropertyChanged("HasBlocks"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HasBlocksSpecified { + get { + return this.hasBlocksFieldSpecified; + } + set { + this.hasBlocksFieldSpecified = value; + this.RaisePropertyChanged("HasBlocksSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool HasMultipleHousesWithSameAddress { + get { + return this.hasMultipleHousesWithSameAddressField; + } + set { + this.hasMultipleHousesWithSameAddressField = value; + this.RaisePropertyChanged("HasMultipleHousesWithSameAddress"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HasMultipleHousesWithSameAddressSpecified { + get { + return this.hasMultipleHousesWithSameAddressFieldSpecified; + } + set { + this.hasMultipleHousesWithSameAddressFieldSpecified = value; + this.RaisePropertyChanged("HasMultipleHousesWithSameAddressSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LiftUpdateESPType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private string factoryNumField; + + private nsiRef typeField; + + private OGFData[] oGFDataField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string FactoryNum { + get { + return this.factoryNumField; + } + set { + this.factoryNumField = value; + this.RaisePropertyChanged("FactoryNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=4)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LiftUpdateOMSType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private string factoryNumField; + + private nsiRef typeField; + + private OGFData[] oGFDataField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string FactoryNum { + get { + return this.factoryNumField; + } + set { + this.factoryNumField = value; + this.RaisePropertyChanged("FactoryNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=4)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LiftUpdateUOType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private string factoryNumField; + + private nsiRef typeField; + + private OGFData[] oGFDataField; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string FactoryNum { + get { + return this.factoryNumField; + } + set { + this.factoryNumField = value; + this.RaisePropertyChanged("FactoryNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=4)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LiftESPType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private string factoryNumField; + + private nsiRef typeField; + + private OGFData[] oGFDataField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string FactoryNum { + get { + return this.factoryNumField; + } + set { + this.factoryNumField = value; + this.RaisePropertyChanged("FactoryNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=4)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LiftOMSType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private string factoryNumField; + + private nsiRef typeField; + + private OGFData[] oGFDataField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string FactoryNum { + get { + return this.factoryNumField; + } + set { + this.factoryNumField = value; + this.RaisePropertyChanged("FactoryNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=4)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LiftUOType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private string factoryNumField; + + private nsiRef typeField; + + private OGFData[] oGFDataField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string FactoryNum { + get { + return this.factoryNumField; + } + set { + this.factoryNumField = value; + this.RaisePropertyChanged("FactoryNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=4)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApartmentHouseUpdateESPType : object, System.ComponentModel.INotifyPropertyChanged { + + private HouseBasicUpdateESPType basicCharacteristictsField; + + private sbyte undergroundFloorCountField; + + private bool undergroundFloorCountFieldSpecified; + + private int minFloorCountField; + + private bool minFloorCountFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public HouseBasicUpdateESPType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public sbyte UndergroundFloorCount { + get { + return this.undergroundFloorCountField; + } + set { + this.undergroundFloorCountField = value; + this.RaisePropertyChanged("UndergroundFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UndergroundFloorCountSpecified { + get { + return this.undergroundFloorCountFieldSpecified; + } + set { + this.undergroundFloorCountFieldSpecified = value; + this.RaisePropertyChanged("UndergroundFloorCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int MinFloorCount { + get { + return this.minFloorCountField; + } + set { + this.minFloorCountField = value; + this.RaisePropertyChanged("MinFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MinFloorCountSpecified { + get { + return this.minFloorCountFieldSpecified; + } + set { + this.minFloorCountFieldSpecified = value; + this.RaisePropertyChanged("MinFloorCountSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApartmentHouseUpdateOMSType : object, System.ComponentModel.INotifyPropertyChanged { + + private HouseBasicUpdateOMSType basicCharacteristictsField; + + private sbyte undergroundFloorCountField; + + private bool undergroundFloorCountFieldSpecified; + + private int minFloorCountField; + + private bool minFloorCountFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public HouseBasicUpdateOMSType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public sbyte UndergroundFloorCount { + get { + return this.undergroundFloorCountField; + } + set { + this.undergroundFloorCountField = value; + this.RaisePropertyChanged("UndergroundFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UndergroundFloorCountSpecified { + get { + return this.undergroundFloorCountFieldSpecified; + } + set { + this.undergroundFloorCountFieldSpecified = value; + this.RaisePropertyChanged("UndergroundFloorCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int MinFloorCount { + get { + return this.minFloorCountField; + } + set { + this.minFloorCountField = value; + this.RaisePropertyChanged("MinFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MinFloorCountSpecified { + get { + return this.minFloorCountFieldSpecified; + } + set { + this.minFloorCountFieldSpecified = value; + this.RaisePropertyChanged("MinFloorCountSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApartmentHouseUpdateRSOType : object, System.ComponentModel.INotifyPropertyChanged { + + private HouseBasicUpdateRSOType basicCharacteristictsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public HouseBasicUpdateRSOType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApartmentHouseUpdateUOType : object, System.ComponentModel.INotifyPropertyChanged { + + private HouseBasicUpdateUOType basicCharacteristictsField; + + private sbyte undergroundFloorCountField; + + private bool undergroundFloorCountFieldSpecified; + + private int minFloorCountField; + + private bool minFloorCountFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public HouseBasicUpdateUOType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public sbyte UndergroundFloorCount { + get { + return this.undergroundFloorCountField; + } + set { + this.undergroundFloorCountField = value; + this.RaisePropertyChanged("UndergroundFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UndergroundFloorCountSpecified { + get { + return this.undergroundFloorCountFieldSpecified; + } + set { + this.undergroundFloorCountFieldSpecified = value; + this.RaisePropertyChanged("UndergroundFloorCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int MinFloorCount { + get { + return this.minFloorCountField; + } + set { + this.minFloorCountField = value; + this.RaisePropertyChanged("MinFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MinFloorCountSpecified { + get { + return this.minFloorCountFieldSpecified; + } + set { + this.minFloorCountFieldSpecified = value; + this.RaisePropertyChanged("MinFloorCountSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApartmentHouseESPType : object, System.ComponentModel.INotifyPropertyChanged { + + private ApartmentHouseESPTypeBasicCharacteristicts basicCharacteristictsField; + + private sbyte undergroundFloorCountField; + + private int minFloorCountField; + + private bool minFloorCountFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ApartmentHouseESPTypeBasicCharacteristicts BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public sbyte UndergroundFloorCount { + get { + return this.undergroundFloorCountField; + } + set { + this.undergroundFloorCountField = value; + this.RaisePropertyChanged("UndergroundFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int MinFloorCount { + get { + return this.minFloorCountField; + } + set { + this.minFloorCountField = value; + this.RaisePropertyChanged("MinFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MinFloorCountSpecified { + get { + return this.minFloorCountFieldSpecified; + } + set { + this.minFloorCountFieldSpecified = value; + this.RaisePropertyChanged("MinFloorCountSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApartmentHouseESPTypeBasicCharacteristicts : GKN_EGRP_KeyType { + + private string fIASHouseGuidField; + + private decimal totalSquareField; + + private nsiRef stateField; + + private nsiRef lifeCycleStageField; + + private short usedYearField; + + private int floorCountField; + + private OKTMORefType oKTMOField; + + private nsiRef olsonTZField; + + private bool culturalHeritageField; + + private OGFData[] oGFDataField; + + private bool isMunicipalPropertyField; + + private bool isMunicipalPropertyFieldSpecified; + + private bool isRegionPropertyField; + + private bool isRegionPropertyFieldSpecified; + + public ApartmentHouseESPTypeBasicCharacteristicts() { + this.isMunicipalPropertyField = false; + this.isRegionPropertyField = false; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalSquare { + get { + return this.totalSquareField; + } + set { + this.totalSquareField = value; + this.RaisePropertyChanged("TotalSquare"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef State { + get { + return this.stateField; + } + set { + this.stateField = value; + this.RaisePropertyChanged("State"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef LifeCycleStage { + get { + return this.lifeCycleStageField; + } + set { + this.lifeCycleStageField = value; + this.RaisePropertyChanged("LifeCycleStage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public short UsedYear { + get { + return this.usedYearField; + } + set { + this.usedYearField = value; + this.RaisePropertyChanged("UsedYear"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public int FloorCount { + get { + return this.floorCountField; + } + set { + this.floorCountField = value; + this.RaisePropertyChanged("FloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public OKTMORefType OKTMO { + get { + return this.oKTMOField; + } + set { + this.oKTMOField = value; + this.RaisePropertyChanged("OKTMO"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public nsiRef OlsonTZ { + get { + return this.olsonTZField; + } + set { + this.olsonTZField = value; + this.RaisePropertyChanged("OlsonTZ"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool CulturalHeritage { + get { + return this.culturalHeritageField; + } + set { + this.culturalHeritageField = value; + this.RaisePropertyChanged("CulturalHeritage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=9)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public bool IsMunicipalProperty { + get { + return this.isMunicipalPropertyField; + } + set { + this.isMunicipalPropertyField = value; + this.RaisePropertyChanged("IsMunicipalProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsMunicipalPropertySpecified { + get { + return this.isMunicipalPropertyFieldSpecified; + } + set { + this.isMunicipalPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsMunicipalPropertySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public bool IsRegionProperty { + get { + return this.isRegionPropertyField; + } + set { + this.isRegionPropertyField = value; + this.RaisePropertyChanged("IsRegionProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsRegionPropertySpecified { + get { + return this.isRegionPropertyFieldSpecified; + } + set { + this.isRegionPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsRegionPropertySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApartmentHouseOMSType : object, System.ComponentModel.INotifyPropertyChanged { + + private ApartmentHouseOMSTypeBasicCharacteristicts basicCharacteristictsField; + + private sbyte undergroundFloorCountField; + + private int minFloorCountField; + + private bool minFloorCountFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ApartmentHouseOMSTypeBasicCharacteristicts BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public sbyte UndergroundFloorCount { + get { + return this.undergroundFloorCountField; + } + set { + this.undergroundFloorCountField = value; + this.RaisePropertyChanged("UndergroundFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int MinFloorCount { + get { + return this.minFloorCountField; + } + set { + this.minFloorCountField = value; + this.RaisePropertyChanged("MinFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MinFloorCountSpecified { + get { + return this.minFloorCountFieldSpecified; + } + set { + this.minFloorCountFieldSpecified = value; + this.RaisePropertyChanged("MinFloorCountSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApartmentHouseOMSTypeBasicCharacteristicts : GKN_EGRP_KeyType { + + private string fIASHouseGuidField; + + private decimal totalSquareField; + + private nsiRef stateField; + + private nsiRef lifeCycleStageField; + + private short usedYearField; + + private bool usedYearFieldSpecified; + + private int floorCountField; + + private OKTMORefType oKTMOField; + + private nsiRef olsonTZField; + + private bool culturalHeritageField; + + private OGFData[] oGFDataField; + + private HostelDataType hostelDataField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalSquare { + get { + return this.totalSquareField; + } + set { + this.totalSquareField = value; + this.RaisePropertyChanged("TotalSquare"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef State { + get { + return this.stateField; + } + set { + this.stateField = value; + this.RaisePropertyChanged("State"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef LifeCycleStage { + get { + return this.lifeCycleStageField; + } + set { + this.lifeCycleStageField = value; + this.RaisePropertyChanged("LifeCycleStage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public short UsedYear { + get { + return this.usedYearField; + } + set { + this.usedYearField = value; + this.RaisePropertyChanged("UsedYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UsedYearSpecified { + get { + return this.usedYearFieldSpecified; + } + set { + this.usedYearFieldSpecified = value; + this.RaisePropertyChanged("UsedYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public int FloorCount { + get { + return this.floorCountField; + } + set { + this.floorCountField = value; + this.RaisePropertyChanged("FloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public OKTMORefType OKTMO { + get { + return this.oKTMOField; + } + set { + this.oKTMOField = value; + this.RaisePropertyChanged("OKTMO"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public nsiRef OlsonTZ { + get { + return this.olsonTZField; + } + set { + this.olsonTZField = value; + this.RaisePropertyChanged("OlsonTZ"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool CulturalHeritage { + get { + return this.culturalHeritageField; + } + set { + this.culturalHeritageField = value; + this.RaisePropertyChanged("CulturalHeritage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=9)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public HostelDataType HostelData { + get { + return this.hostelDataField; + } + set { + this.hostelDataField = value; + this.RaisePropertyChanged("HostelData"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApartmentHouseRSOType : object, System.ComponentModel.INotifyPropertyChanged { + + private HouseBasicRSOType basicCharacteristictsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public HouseBasicRSOType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApartmentHouseUOType : object, System.ComponentModel.INotifyPropertyChanged { + + private ApartmentHouseUOTypeBasicCharacteristicts basicCharacteristictsField; + + private sbyte undergroundFloorCountField; + + private int minFloorCountField; + + private bool minFloorCountFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ApartmentHouseUOTypeBasicCharacteristicts BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public sbyte UndergroundFloorCount { + get { + return this.undergroundFloorCountField; + } + set { + this.undergroundFloorCountField = value; + this.RaisePropertyChanged("UndergroundFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int MinFloorCount { + get { + return this.minFloorCountField; + } + set { + this.minFloorCountField = value; + this.RaisePropertyChanged("MinFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MinFloorCountSpecified { + get { + return this.minFloorCountFieldSpecified; + } + set { + this.minFloorCountFieldSpecified = value; + this.RaisePropertyChanged("MinFloorCountSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApartmentHouseUOTypeBasicCharacteristicts : HouseBasicUOType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class OGFImportStatusType : object, System.ComponentModel.INotifyPropertyChanged { + + private OGFImportStatusTypeGKNRelationshipStatus gKNRelationshipStatusField; + + private EGRPRelationshipStatusType eGRPRelationshipStatusField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public OGFImportStatusTypeGKNRelationshipStatus GKNRelationshipStatus { + get { + return this.gKNRelationshipStatusField; + } + set { + this.gKNRelationshipStatusField = value; + this.RaisePropertyChanged("GKNRelationshipStatus"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public EGRPRelationshipStatusType EGRPRelationshipStatus { + get { + return this.eGRPRelationshipStatusField; + } + set { + this.eGRPRelationshipStatusField = value; + this.RaisePropertyChanged("EGRPRelationshipStatus"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class OGFImportStatusTypeGKNRelationshipStatus : GKNRelationshipStatusType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class GKNRelationshipStatusType : object, System.ComponentModel.INotifyPropertyChanged { + + private GKNRelationshipStatusTypeStatus statusField; + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public GKNRelationshipStatusTypeStatus Status { + get { + return this.statusField; + } + set { + this.statusField = value; + this.RaisePropertyChanged("Status"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AppartmentHouseAcceptedParameter", typeof(ApartmentHouseAcceptedParameterType), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("LivingHouseAcceptedParameter", typeof(LivingHouseAcceptedParameterType), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NonResidentialPremiseAcceptedParameter", typeof(NonResidentialPremiseAcceptedParameterType), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremiseAcceptedParameter", typeof(ResidentialPremiseAcceptedParameterType), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("RoomAcceptedParameter", typeof(RoomAcceptedParameterType), Order=1)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum GKNRelationshipStatusTypeStatus { + + /// + C, + + /// + D, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ApartmentHouseAcceptedParameterType { + + /// + FiasHouseGuid, + + /// + TotalSquare, + + /// + State, + + /// + InnerWallMaterial, + + /// + ProjectSeries, + + /// + ProjectType, + + /// + BuildingYear, + + /// + UsedYear, + + /// + TotalWear, + + /// + FloorCount, + + /// + Energy, + + /// + OKTMO, + + /// + OlsonTZ, + + /// + ResidentialSquare, + + /// + CulturalHeritage, + + /// + BuiltUpArea, + + /// + UndergroundFloorCount, + + /// + MinFloorCount, + + /// + OverhaulYear, + + /// + OverhaulFormingKind, + + /// + NonResidentialSquare, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum LivingHouseAcceptedParameterType { + + /// + FiasHouseGuid, + + /// + TotalSquare, + + /// + State, + + /// + InnerWallMaterial, + + /// + ProjectSeries, + + /// + ProjectType, + + /// + BuildingYear, + + /// + UsedYear, + + /// + TotalWear, + + /// + FloorCount, + + /// + Energy, + + /// + OKTMO, + + /// + OlsonTZ, + + /// + ResidentialSquare, + + /// + CulturalHeritage, + + /// + ResidentialHouseType, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum NonResidentialPremiseAcceptedParameterType { + + /// + PremisesNum, + + /// + Purpose, + + /// + Position, + + /// + TotalArea, + + /// + IsCommonProperty, + + /// + TerminationDate, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ResidentialPremiseAcceptedParameterType { + + /// + PremisesNum, + + /// + EntranceNum, + + /// + PremisesCharacteristic, + + /// + RoomsNum, + + /// + TotalArea, + + /// + GrossArea, + + /// + ResidentialHouseType, + + /// + TerminationDate, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum RoomAcceptedParameterType { + + /// + RoomNumber, + + /// + Square, + + /// + ResidentialHouseType, + + /// + TerminationDate, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class EGRPRelationshipStatusType : object, System.ComponentModel.INotifyPropertyChanged { + + private EGRPRelationshipStatusTypeStatus statusField; + + private bool statusFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public EGRPRelationshipStatusTypeStatus Status { + get { + return this.statusField; + } + set { + this.statusField = value; + this.RaisePropertyChanged("Status"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StatusSpecified { + get { + return this.statusFieldSpecified; + } + set { + this.statusFieldSpecified = value; + this.RaisePropertyChanged("StatusSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum EGRPRelationshipStatusTypeStatus { + + /// + C, + + /// + D, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSocialHireContractResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractRootGUIDField; + + private string contractGUIDField; + + private exportBriefSocialHireContractResultTypeContractState contractStateField; + + private bool contractStateFieldSpecified; + + private string contractNumberField; + + private System.DateTime signingDateField; + + private exportBriefSocialHireContractResultTypeTerminateContract terminateContractField; + + private AnnulmentType annulmentContractField; + + private exportBriefSocialHireContractResultTypeType typeField; + + private exportBriefSocialHireContractResultTypeObjectAddress[] objectAddressField; + + private string orgPPAGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractRootGUID { + get { + return this.contractRootGUIDField; + } + set { + this.contractRootGUIDField = value; + this.RaisePropertyChanged("ContractRootGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ContractGUID { + get { + return this.contractGUIDField; + } + set { + this.contractGUIDField = value; + this.RaisePropertyChanged("ContractGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public exportBriefSocialHireContractResultTypeContractState ContractState { + get { + return this.contractStateField; + } + set { + this.contractStateField = value; + this.RaisePropertyChanged("ContractState"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ContractStateSpecified { + get { + return this.contractStateFieldSpecified; + } + set { + this.contractStateFieldSpecified = value; + this.RaisePropertyChanged("ContractStateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string ContractNumber { + get { + return this.contractNumberField; + } + set { + this.contractNumberField = value; + this.RaisePropertyChanged("ContractNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=4)] + public System.DateTime SigningDate { + get { + return this.signingDateField; + } + set { + this.signingDateField = value; + this.RaisePropertyChanged("SigningDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public exportBriefSocialHireContractResultTypeTerminateContract TerminateContract { + get { + return this.terminateContractField; + } + set { + this.terminateContractField = value; + this.RaisePropertyChanged("TerminateContract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public AnnulmentType AnnulmentContract { + get { + return this.annulmentContractField; + } + set { + this.annulmentContractField = value; + this.RaisePropertyChanged("AnnulmentContract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public exportBriefSocialHireContractResultTypeType Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ObjectAddress", Order=8)] + public exportBriefSocialHireContractResultTypeObjectAddress[] ObjectAddress { + get { + return this.objectAddressField; + } + set { + this.objectAddressField = value; + this.RaisePropertyChanged("ObjectAddress"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=9)] + public string orgPPAGUID { + get { + return this.orgPPAGUIDField; + } + set { + this.orgPPAGUIDField = value; + this.RaisePropertyChanged("orgPPAGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportBriefSocialHireContractResultTypeContractState { + + /// + NotTakeEffect, + + /// + Proceed, + + /// + Expired, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSocialHireContractResultTypeTerminateContract : TerminateType { + + private nsiRef reasonRefField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef ReasonRef { + get { + return this.reasonRefField; + } + set { + this.reasonRefField = value; + this.RaisePropertyChanged("ReasonRef"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class TerminateType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime terminateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime Terminate { + get { + return this.terminateField; + } + set { + this.terminateField = value; + this.RaisePropertyChanged("Terminate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class AnnulmentType : object, System.ComponentModel.INotifyPropertyChanged { + + private string reasonOfAnnulmentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ReasonOfAnnulment { + get { + return this.reasonOfAnnulmentField; + } + set { + this.reasonOfAnnulmentField = value; + this.RaisePropertyChanged("ReasonOfAnnulment"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportBriefSocialHireContractResultTypeType { + + /// + D, + + /// + M, + + /// + S, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSocialHireContractResultTypeObjectAddress : object, System.ComponentModel.INotifyPropertyChanged { + + private string fIASHouseGuidField; + + private string apartmentNumberField; + + private string roomNumberField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ApartmentNumber { + get { + return this.apartmentNumberField; + } + set { + this.apartmentNumberField = value; + this.RaisePropertyChanged("ApartmentNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportOwnerDecisionResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private string rootOwnerDecisionGUIDField; + + private Owner ownerField; + + private exportPropertyDetails[] exportPropertyDetailsField; + + private Representative representativeField; + + private QuestionOnDecisionType questionOnDecisionField; + + private AttachmentType[] attachmentsField; + + private bool decisionAnnuledField; + + private bool decisionAnnuledFieldSpecified; + + public exportOwnerDecisionResultType() { + this.decisionAnnuledField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RootOwnerDecisionGUID { + get { + return this.rootOwnerDecisionGUIDField; + } + set { + this.rootOwnerDecisionGUIDField = value; + this.RaisePropertyChanged("RootOwnerDecisionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public Owner Owner { + get { + return this.ownerField; + } + set { + this.ownerField = value; + this.RaisePropertyChanged("Owner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("exportPropertyDetails", Order=2)] + public exportPropertyDetails[] exportPropertyDetails { + get { + return this.exportPropertyDetailsField; + } + set { + this.exportPropertyDetailsField = value; + this.RaisePropertyChanged("exportPropertyDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public Representative Representative { + get { + return this.representativeField; + } + set { + this.representativeField = value; + this.RaisePropertyChanged("Representative"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public QuestionOnDecisionType QuestionOnDecision { + get { + return this.questionOnDecisionField; + } + set { + this.questionOnDecisionField = value; + this.RaisePropertyChanged("QuestionOnDecision"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachments", Order=5)] + public AttachmentType[] Attachments { + get { + return this.attachmentsField; + } + set { + this.attachmentsField = value; + this.RaisePropertyChanged("Attachments"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public bool DecisionAnnuled { + get { + return this.decisionAnnuledField; + } + set { + this.decisionAnnuledField = value; + this.RaisePropertyChanged("DecisionAnnuled"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool DecisionAnnuledSpecified { + get { + return this.decisionAnnuledFieldSpecified; + } + set { + this.decisionAnnuledFieldSpecified = value; + this.RaisePropertyChanged("DecisionAnnuledSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ObjectAddressBriefType : object, System.ComponentModel.INotifyPropertyChanged { + + private ObjectAddressBriefTypeHouseType houseTypeField; + + private bool houseTypeFieldSpecified; + + private string fIASHouseGuidField; + + private string apartmentNumberField; + + private string roomNumberField; + + private string premisesGUIDField; + + private string blockGUIDField; + + private string roomGUIDField; + + private ObjectAddressBriefTypePair[] pairField; + + private bool noConnectionToWaterSupplyField; + + private bool noConnectionToWaterSupplyFieldSpecified; + + public ObjectAddressBriefType() { + this.noConnectionToWaterSupplyField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ObjectAddressBriefTypeHouseType HouseType { + get { + return this.houseTypeField; + } + set { + this.houseTypeField = value; + this.RaisePropertyChanged("HouseType"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HouseTypeSpecified { + get { + return this.houseTypeFieldSpecified; + } + set { + this.houseTypeFieldSpecified = value; + this.RaisePropertyChanged("HouseTypeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ApartmentNumber { + get { + return this.apartmentNumberField; + } + set { + this.apartmentNumberField = value; + this.RaisePropertyChanged("ApartmentNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string PremisesGUID { + get { + return this.premisesGUIDField; + } + set { + this.premisesGUIDField = value; + this.RaisePropertyChanged("PremisesGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string BlockGUID { + get { + return this.blockGUIDField; + } + set { + this.blockGUIDField = value; + this.RaisePropertyChanged("BlockGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string RoomGUID { + get { + return this.roomGUIDField; + } + set { + this.roomGUIDField = value; + this.RaisePropertyChanged("RoomGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Pair", Order=7)] + public ObjectAddressBriefTypePair[] Pair { + get { + return this.pairField; + } + set { + this.pairField = value; + this.RaisePropertyChanged("Pair"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool NoConnectionToWaterSupply { + get { + return this.noConnectionToWaterSupplyField; + } + set { + this.noConnectionToWaterSupplyField = value; + this.RaisePropertyChanged("NoConnectionToWaterSupply"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NoConnectionToWaterSupplySpecified { + get { + return this.noConnectionToWaterSupplyFieldSpecified; + } + set { + this.noConnectionToWaterSupplyFieldSpecified = value; + this.RaisePropertyChanged("NoConnectionToWaterSupplySpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ObjectAddressBriefTypeHouseType { + + /// + MKD, + + /// + ZHD, + + /// + ZHDBlockZastroyki, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ObjectAddressBriefTypePair : ContractSubjectObjectAdressType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractSubjectObjectAdressType : object, System.ComponentModel.INotifyPropertyChanged { + + private ContractSubjectObjectAdressTypeServiceType serviceTypeField; + + private ContractSubjectObjectAdressTypeMunicipalResource municipalResourceField; + + private System.DateTime startSupplyDateField; + + private System.DateTime endSupplyDateField; + + private bool endSupplyDateFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ContractSubjectObjectAdressTypeServiceType ServiceType { + get { + return this.serviceTypeField; + } + set { + this.serviceTypeField = value; + this.RaisePropertyChanged("ServiceType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public ContractSubjectObjectAdressTypeMunicipalResource MunicipalResource { + get { + return this.municipalResourceField; + } + set { + this.municipalResourceField = value; + this.RaisePropertyChanged("MunicipalResource"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime StartSupplyDate { + get { + return this.startSupplyDateField; + } + set { + this.startSupplyDateField = value; + this.RaisePropertyChanged("StartSupplyDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime EndSupplyDate { + get { + return this.endSupplyDateField; + } + set { + this.endSupplyDateField = value; + this.RaisePropertyChanged("EndSupplyDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EndSupplyDateSpecified { + get { + return this.endSupplyDateFieldSpecified; + } + set { + this.endSupplyDateFieldSpecified = value; + this.RaisePropertyChanged("EndSupplyDateSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractSubjectObjectAdressTypeServiceType : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractSubjectObjectAdressTypeMunicipalResource : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractRootGUIDField; + + private string contractGUIDField; + + private string versionNumberField; + + private exportBriefSupplyResourceContractResultTypeVersionStatus versionStatusField; + + private exportBriefSupplyResourceContractResultTypeContractState contractStateField; + + private object itemField; + + private exportBriefSupplyResourceContractResultTypeFirstPartyContract firstPartyContractField; + + private exportBriefSupplyResourceContractResultTypeSecondPartyContract secondPartyContractField; + + private exportBriefSupplyResourceContractResultTypeContractSubject[] contractSubjectField; + + private exportBriefSupplyResourceContractResultTypeCountingResource countingResourceField; + + private bool countingResourceFieldSpecified; + + private exportBriefSupplyResourceContractResultTypeBillingDate billingDateField; + + private exportBriefSupplyResourceContractResultTypePaymentDate paymentDateField; + + private exportBriefSupplyResourceContractResultTypeProvidingInformationDate providingInformationDateField; + + private exportBriefSupplyResourceContractResultTypePeriod periodField; + + private bool noConnectionToWaterSupplyField; + + private bool noConnectionToWaterSupplyFieldSpecified; + + private exportBriefSupplyResourceContractResultTypeTerminateContract terminateContractField; + + private AnnulmentType annulmentContractField; + + private ObjectAddressBriefType[] objectAddressField; + + public exportBriefSupplyResourceContractResultType() { + this.noConnectionToWaterSupplyField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractRootGUID { + get { + return this.contractRootGUIDField; + } + set { + this.contractRootGUIDField = value; + this.RaisePropertyChanged("ContractRootGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ContractGUID { + get { + return this.contractGUIDField; + } + set { + this.contractGUIDField = value; + this.RaisePropertyChanged("ContractGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="positiveInteger", Order=2)] + public string VersionNumber { + get { + return this.versionNumberField; + } + set { + this.versionNumberField = value; + this.RaisePropertyChanged("VersionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public exportBriefSupplyResourceContractResultTypeVersionStatus VersionStatus { + get { + return this.versionStatusField; + } + set { + this.versionStatusField = value; + this.RaisePropertyChanged("VersionStatus"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public exportBriefSupplyResourceContractResultTypeContractState ContractState { + get { + return this.contractStateField; + } + set { + this.contractStateField = value; + this.RaisePropertyChanged("ContractState"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("IsContract", typeof(exportBriefSupplyResourceContractResultTypeIsContract), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("IsNotContract", typeof(exportBriefSupplyResourceContractResultTypeIsNotContract), Order=5)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public exportBriefSupplyResourceContractResultTypeFirstPartyContract FirstPartyContract { + get { + return this.firstPartyContractField; + } + set { + this.firstPartyContractField = value; + this.RaisePropertyChanged("FirstPartyContract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public exportBriefSupplyResourceContractResultTypeSecondPartyContract SecondPartyContract { + get { + return this.secondPartyContractField; + } + set { + this.secondPartyContractField = value; + this.RaisePropertyChanged("SecondPartyContract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractSubject", Order=8)] + public exportBriefSupplyResourceContractResultTypeContractSubject[] ContractSubject { + get { + return this.contractSubjectField; + } + set { + this.contractSubjectField = value; + this.RaisePropertyChanged("ContractSubject"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public exportBriefSupplyResourceContractResultTypeCountingResource CountingResource { + get { + return this.countingResourceField; + } + set { + this.countingResourceField = value; + this.RaisePropertyChanged("CountingResource"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CountingResourceSpecified { + get { + return this.countingResourceFieldSpecified; + } + set { + this.countingResourceFieldSpecified = value; + this.RaisePropertyChanged("CountingResourceSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public exportBriefSupplyResourceContractResultTypeBillingDate BillingDate { + get { + return this.billingDateField; + } + set { + this.billingDateField = value; + this.RaisePropertyChanged("BillingDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public exportBriefSupplyResourceContractResultTypePaymentDate PaymentDate { + get { + return this.paymentDateField; + } + set { + this.paymentDateField = value; + this.RaisePropertyChanged("PaymentDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=12)] + public exportBriefSupplyResourceContractResultTypeProvidingInformationDate ProvidingInformationDate { + get { + return this.providingInformationDateField; + } + set { + this.providingInformationDateField = value; + this.RaisePropertyChanged("ProvidingInformationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=13)] + public exportBriefSupplyResourceContractResultTypePeriod Period { + get { + return this.periodField; + } + set { + this.periodField = value; + this.RaisePropertyChanged("Period"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=14)] + public bool NoConnectionToWaterSupply { + get { + return this.noConnectionToWaterSupplyField; + } + set { + this.noConnectionToWaterSupplyField = value; + this.RaisePropertyChanged("NoConnectionToWaterSupply"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NoConnectionToWaterSupplySpecified { + get { + return this.noConnectionToWaterSupplyFieldSpecified; + } + set { + this.noConnectionToWaterSupplyFieldSpecified = value; + this.RaisePropertyChanged("NoConnectionToWaterSupplySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=15)] + public exportBriefSupplyResourceContractResultTypeTerminateContract TerminateContract { + get { + return this.terminateContractField; + } + set { + this.terminateContractField = value; + this.RaisePropertyChanged("TerminateContract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=16)] + public AnnulmentType AnnulmentContract { + get { + return this.annulmentContractField; + } + set { + this.annulmentContractField = value; + this.RaisePropertyChanged("AnnulmentContract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ObjectAddress", Order=17)] + public ObjectAddressBriefType[] ObjectAddress { + get { + return this.objectAddressField; + } + set { + this.objectAddressField = value; + this.RaisePropertyChanged("ObjectAddress"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportBriefSupplyResourceContractResultTypeVersionStatus { + + /// + Posted, + + /// + Terminated, + + /// + Draft, + + /// + Annul, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportBriefSupplyResourceContractResultTypeContractState { + + /// + NotTakeEffect, + + /// + Proceed, + + /// + Expired, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypeIsContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractNumberField; + + private System.DateTime signingDateField; + + private System.DateTime effectiveDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractNumber { + get { + return this.contractNumberField; + } + set { + this.contractNumberField = value; + this.RaisePropertyChanged("ContractNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime SigningDate { + get { + return this.signingDateField; + } + set { + this.signingDateField = value; + this.RaisePropertyChanged("SigningDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EffectiveDate { + get { + return this.effectiveDateField; + } + set { + this.effectiveDateField = value; + this.RaisePropertyChanged("EffectiveDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypeIsNotContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractNumberField; + + private System.DateTime signingDateField; + + private bool signingDateFieldSpecified; + + private System.DateTime effectiveDateField; + + private bool effectiveDateFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractNumber { + get { + return this.contractNumberField; + } + set { + this.contractNumberField = value; + this.RaisePropertyChanged("ContractNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime SigningDate { + get { + return this.signingDateField; + } + set { + this.signingDateField = value; + this.RaisePropertyChanged("SigningDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SigningDateSpecified { + get { + return this.signingDateFieldSpecified; + } + set { + this.signingDateFieldSpecified = value; + this.RaisePropertyChanged("SigningDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EffectiveDate { + get { + return this.effectiveDateField; + } + set { + this.effectiveDateField = value; + this.RaisePropertyChanged("EffectiveDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EffectiveDateSpecified { + get { + return this.effectiveDateFieldSpecified; + } + set { + this.effectiveDateFieldSpecified = value; + this.RaisePropertyChanged("EffectiveDateSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypeFirstPartyContract : RegOrgType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypeSecondPartyContract : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private ItemChoiceType4 itemElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Offer", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Organization", typeof(exportBriefSupplyResourceContractResultTypeSecondPartyContractOrganization), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Owner", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType4 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypeSecondPartyContractOrganization : RegOrgType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType4 { + + /// + Offer, + + /// + Organization, + + /// + Owner, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypeContractSubject : object, System.ComponentModel.INotifyPropertyChanged { + + private exportBriefSupplyResourceContractResultTypeContractSubjectServiceType serviceTypeField; + + private exportBriefSupplyResourceContractResultTypeContractSubjectMunicipalResource municipalResourceField; + + private System.DateTime startSupplyDateField; + + private System.DateTime endSupplyDateField; + + private bool endSupplyDateFieldSpecified; + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public exportBriefSupplyResourceContractResultTypeContractSubjectServiceType ServiceType { + get { + return this.serviceTypeField; + } + set { + this.serviceTypeField = value; + this.RaisePropertyChanged("ServiceType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public exportBriefSupplyResourceContractResultTypeContractSubjectMunicipalResource MunicipalResource { + get { + return this.municipalResourceField; + } + set { + this.municipalResourceField = value; + this.RaisePropertyChanged("MunicipalResource"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime StartSupplyDate { + get { + return this.startSupplyDateField; + } + set { + this.startSupplyDateField = value; + this.RaisePropertyChanged("StartSupplyDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime EndSupplyDate { + get { + return this.endSupplyDateField; + } + set { + this.endSupplyDateField = value; + this.RaisePropertyChanged("EndSupplyDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EndSupplyDateSpecified { + get { + return this.endSupplyDateFieldSpecified; + } + set { + this.endSupplyDateFieldSpecified = value; + this.RaisePropertyChanged("EndSupplyDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=4)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypeContractSubjectServiceType : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypeContractSubjectMunicipalResource : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportBriefSupplyResourceContractResultTypeCountingResource { + + /// + R, + + /// + P, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypeBillingDate : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte dateField; + + private exportBriefSupplyResourceContractResultTypeBillingDateDateType dateTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public exportBriefSupplyResourceContractResultTypeBillingDateDateType DateType { + get { + return this.dateTypeField; + } + set { + this.dateTypeField = value; + this.RaisePropertyChanged("DateType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportBriefSupplyResourceContractResultTypeBillingDateDateType { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypePaymentDate : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte dateField; + + private exportBriefSupplyResourceContractResultTypePaymentDateDateType dateTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public exportBriefSupplyResourceContractResultTypePaymentDateDateType DateType { + get { + return this.dateTypeField; + } + set { + this.dateTypeField = value; + this.RaisePropertyChanged("DateType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportBriefSupplyResourceContractResultTypePaymentDateDateType { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypeProvidingInformationDate : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte dateField; + + private exportBriefSupplyResourceContractResultTypeProvidingInformationDateDateType dateTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public exportBriefSupplyResourceContractResultTypeProvidingInformationDateDateType DateType { + get { + return this.dateTypeField; + } + set { + this.dateTypeField = value; + this.RaisePropertyChanged("DateType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportBriefSupplyResourceContractResultTypeProvidingInformationDateDateType { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypePeriod : object, System.ComponentModel.INotifyPropertyChanged { + + private exportBriefSupplyResourceContractResultTypePeriodStart startField; + + private exportBriefSupplyResourceContractResultTypePeriodEnd endField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public exportBriefSupplyResourceContractResultTypePeriodStart Start { + get { + return this.startField; + } + set { + this.startField = value; + this.RaisePropertyChanged("Start"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public exportBriefSupplyResourceContractResultTypePeriodEnd End { + get { + return this.endField; + } + set { + this.endField = value; + this.RaisePropertyChanged("End"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypePeriodStart : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte startDateField; + + private bool nextMonthField; + + private bool nextMonthFieldSpecified; + + public exportBriefSupplyResourceContractResultTypePeriodStart() { + this.nextMonthField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte StartDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("StartDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool NextMonth { + get { + return this.nextMonthField; + } + set { + this.nextMonthField = value; + this.RaisePropertyChanged("NextMonth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NextMonthSpecified { + get { + return this.nextMonthFieldSpecified; + } + set { + this.nextMonthFieldSpecified = value; + this.RaisePropertyChanged("NextMonthSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypePeriodEnd : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte endDateField; + + private bool nextMonthField; + + private bool nextMonthFieldSpecified; + + public exportBriefSupplyResourceContractResultTypePeriodEnd() { + this.nextMonthField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool NextMonth { + get { + return this.nextMonthField; + } + set { + this.nextMonthField = value; + this.RaisePropertyChanged("NextMonth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NextMonthSpecified { + get { + return this.nextMonthFieldSpecified; + } + set { + this.nextMonthFieldSpecified = value; + this.RaisePropertyChanged("NextMonthSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractResultTypeTerminateContract : TerminateType { + + private nsiRef reasonRefField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef ReasonRef { + get { + return this.reasonRefField; + } + set { + this.reasonRefField = value; + this.RaisePropertyChanged("ReasonRef"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class RegionType : object, System.ComponentModel.INotifyPropertyChanged { + + private string codeField; + + private string nameField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string code { + get { + return this.codeField; + } + set { + this.codeField = value; + this.RaisePropertyChanged("code"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string name { + get { + return this.nameField; + } + set { + this.nameField = value; + this.RaisePropertyChanged("name"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private object[] itemsField; + + private ItemsChoiceType14[] itemsElementNameField; + + private SupplyResourceContractProjectTypePeriod periodField; + + private bool indicationsAnyDayField; + + private bool indicationsAnyDayFieldSpecified; + + private nsiRef[] contractBaseField; + + private object item1Field; + + private bool isPlannedVolumeField; + + private SupplyResourceContractProjectTypePlannedVolumeType plannedVolumeTypeField; + + private bool plannedVolumeTypeFieldSpecified; + + private SupplyResourceContractProjectTypeContractSubject[] contractSubjectField; + + private SupplyResourceContractProjectTypeCountingResource countingResourceField; + + private bool countingResourceFieldSpecified; + + private SupplyResourceContractProjectTypeSpecifyingQualityIndicators specifyingQualityIndicatorsField; + + private bool noConnectionToWaterSupplyField; + + private bool noConnectionToWaterSupplyFieldSpecified; + + private SupplyResourceContractProjectTypeQuality[] qualityField; + + private SupplyResourceContractProjectTypeOtherQualityIndicator[] otherQualityIndicatorField; + + private SupplyResourceContractProjectTypeTemperatureChart[] temperatureChartField; + + private SupplyResourceContractProjectTypeBillingDate billingDateField; + + private SupplyResourceContractProjectTypePaymentDate paymentDateField; + + private SupplyResourceContractProjectTypeProvidingInformationDate providingInformationDateField; + + private bool meteringDeviceInformationField; + + private bool meteringDeviceInformationFieldSpecified; + + private bool volumeDependsField; + + private bool volumeDependsFieldSpecified; + + private bool oneTimePaymentField; + + private bool oneTimePaymentFieldSpecified; + + private SupplyResourceContractProjectTypeAccrualProcedure accrualProcedureField; + + private bool accrualProcedureFieldSpecified; + + private SupplyResourceContractProjectTypeRegionalSettings regionalSettingsField; + + public SupplyResourceContractProjectType() { + this.indicationsAnyDayField = true; + this.noConnectionToWaterSupplyField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("IsContract", typeof(SupplyResourceContractProjectTypeIsContract), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("IsNotContract", typeof(SupplyResourceContractProjectTypeIsNotContract), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AutomaticRollOverOneYear", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ComptetionDate", typeof(System.DateTime), DataType="date", Order=1)] + [System.Xml.Serialization.XmlElementAttribute("IndefiniteTerm", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType14[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public SupplyResourceContractProjectTypePeriod Period { + get { + return this.periodField; + } + set { + this.periodField = value; + this.RaisePropertyChanged("Period"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool IndicationsAnyDay { + get { + return this.indicationsAnyDayField; + } + set { + this.indicationsAnyDayField = value; + this.RaisePropertyChanged("IndicationsAnyDay"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IndicationsAnyDaySpecified { + get { + return this.indicationsAnyDayFieldSpecified; + } + set { + this.indicationsAnyDayFieldSpecified = value; + this.RaisePropertyChanged("IndicationsAnyDaySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractBase", Order=5)] + public nsiRef[] ContractBase { + get { + return this.contractBaseField; + } + set { + this.contractBaseField = value; + this.RaisePropertyChanged("ContractBase"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ApartmentBuildingOwner", typeof(SupplyResourceContractProjectTypeApartmentBuildingOwner), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("ApartmentBuildingRepresentativeOwner", typeof(SupplyResourceContractProjectTypeApartmentBuildingRepresentativeOwner), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("ApartmentBuildingSoleOwner", typeof(SupplyResourceContractProjectTypeApartmentBuildingSoleOwner), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("LivingHouseOwner", typeof(SupplyResourceContractProjectTypeLivingHouseOwner), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("Offer", typeof(bool), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("Organization", typeof(SupplyResourceContractProjectTypeOrganization), Order=6)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public bool IsPlannedVolume { + get { + return this.isPlannedVolumeField; + } + set { + this.isPlannedVolumeField = value; + this.RaisePropertyChanged("IsPlannedVolume"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public SupplyResourceContractProjectTypePlannedVolumeType PlannedVolumeType { + get { + return this.plannedVolumeTypeField; + } + set { + this.plannedVolumeTypeField = value; + this.RaisePropertyChanged("PlannedVolumeType"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool PlannedVolumeTypeSpecified { + get { + return this.plannedVolumeTypeFieldSpecified; + } + set { + this.plannedVolumeTypeFieldSpecified = value; + this.RaisePropertyChanged("PlannedVolumeTypeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractSubject", Order=9)] + public SupplyResourceContractProjectTypeContractSubject[] ContractSubject { + get { + return this.contractSubjectField; + } + set { + this.contractSubjectField = value; + this.RaisePropertyChanged("ContractSubject"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public SupplyResourceContractProjectTypeCountingResource CountingResource { + get { + return this.countingResourceField; + } + set { + this.countingResourceField = value; + this.RaisePropertyChanged("CountingResource"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CountingResourceSpecified { + get { + return this.countingResourceFieldSpecified; + } + set { + this.countingResourceFieldSpecified = value; + this.RaisePropertyChanged("CountingResourceSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public SupplyResourceContractProjectTypeSpecifyingQualityIndicators SpecifyingQualityIndicators { + get { + return this.specifyingQualityIndicatorsField; + } + set { + this.specifyingQualityIndicatorsField = value; + this.RaisePropertyChanged("SpecifyingQualityIndicators"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=12)] + public bool NoConnectionToWaterSupply { + get { + return this.noConnectionToWaterSupplyField; + } + set { + this.noConnectionToWaterSupplyField = value; + this.RaisePropertyChanged("NoConnectionToWaterSupply"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NoConnectionToWaterSupplySpecified { + get { + return this.noConnectionToWaterSupplyFieldSpecified; + } + set { + this.noConnectionToWaterSupplyFieldSpecified = value; + this.RaisePropertyChanged("NoConnectionToWaterSupplySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Quality", Order=13)] + public SupplyResourceContractProjectTypeQuality[] Quality { + get { + return this.qualityField; + } + set { + this.qualityField = value; + this.RaisePropertyChanged("Quality"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OtherQualityIndicator", Order=14)] + public SupplyResourceContractProjectTypeOtherQualityIndicator[] OtherQualityIndicator { + get { + return this.otherQualityIndicatorField; + } + set { + this.otherQualityIndicatorField = value; + this.RaisePropertyChanged("OtherQualityIndicator"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TemperatureChart", Order=15)] + public SupplyResourceContractProjectTypeTemperatureChart[] TemperatureChart { + get { + return this.temperatureChartField; + } + set { + this.temperatureChartField = value; + this.RaisePropertyChanged("TemperatureChart"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=16)] + public SupplyResourceContractProjectTypeBillingDate BillingDate { + get { + return this.billingDateField; + } + set { + this.billingDateField = value; + this.RaisePropertyChanged("BillingDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=17)] + public SupplyResourceContractProjectTypePaymentDate PaymentDate { + get { + return this.paymentDateField; + } + set { + this.paymentDateField = value; + this.RaisePropertyChanged("PaymentDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=18)] + public SupplyResourceContractProjectTypeProvidingInformationDate ProvidingInformationDate { + get { + return this.providingInformationDateField; + } + set { + this.providingInformationDateField = value; + this.RaisePropertyChanged("ProvidingInformationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=19)] + public bool MeteringDeviceInformation { + get { + return this.meteringDeviceInformationField; + } + set { + this.meteringDeviceInformationField = value; + this.RaisePropertyChanged("MeteringDeviceInformation"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MeteringDeviceInformationSpecified { + get { + return this.meteringDeviceInformationFieldSpecified; + } + set { + this.meteringDeviceInformationFieldSpecified = value; + this.RaisePropertyChanged("MeteringDeviceInformationSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=20)] + public bool VolumeDepends { + get { + return this.volumeDependsField; + } + set { + this.volumeDependsField = value; + this.RaisePropertyChanged("VolumeDepends"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool VolumeDependsSpecified { + get { + return this.volumeDependsFieldSpecified; + } + set { + this.volumeDependsFieldSpecified = value; + this.RaisePropertyChanged("VolumeDependsSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=21)] + public bool OneTimePayment { + get { + return this.oneTimePaymentField; + } + set { + this.oneTimePaymentField = value; + this.RaisePropertyChanged("OneTimePayment"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool OneTimePaymentSpecified { + get { + return this.oneTimePaymentFieldSpecified; + } + set { + this.oneTimePaymentFieldSpecified = value; + this.RaisePropertyChanged("OneTimePaymentSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=22)] + public SupplyResourceContractProjectTypeAccrualProcedure AccrualProcedure { + get { + return this.accrualProcedureField; + } + set { + this.accrualProcedureField = value; + this.RaisePropertyChanged("AccrualProcedure"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AccrualProcedureSpecified { + get { + return this.accrualProcedureFieldSpecified; + } + set { + this.accrualProcedureFieldSpecified = value; + this.RaisePropertyChanged("AccrualProcedureSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=23)] + public SupplyResourceContractProjectTypeRegionalSettings RegionalSettings { + get { + return this.regionalSettingsField; + } + set { + this.regionalSettingsField = value; + this.RaisePropertyChanged("RegionalSettings"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeIsContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractNumberField; + + private System.DateTime signingDateField; + + private System.DateTime effectiveDateField; + + private AttachmentType[] contractAttachmentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractNumber { + get { + return this.contractNumberField; + } + set { + this.contractNumberField = value; + this.RaisePropertyChanged("ContractNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime SigningDate { + get { + return this.signingDateField; + } + set { + this.signingDateField = value; + this.RaisePropertyChanged("SigningDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EffectiveDate { + get { + return this.effectiveDateField; + } + set { + this.effectiveDateField = value; + this.RaisePropertyChanged("EffectiveDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractAttachment", Order=3)] + public AttachmentType[] ContractAttachment { + get { + return this.contractAttachmentField; + } + set { + this.contractAttachmentField = value; + this.RaisePropertyChanged("ContractAttachment"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeIsNotContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractNumberField; + + private System.DateTime signingDateField; + + private bool signingDateFieldSpecified; + + private System.DateTime effectiveDateField; + + private bool effectiveDateFieldSpecified; + + private AttachmentType[] contractAttachmentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractNumber { + get { + return this.contractNumberField; + } + set { + this.contractNumberField = value; + this.RaisePropertyChanged("ContractNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime SigningDate { + get { + return this.signingDateField; + } + set { + this.signingDateField = value; + this.RaisePropertyChanged("SigningDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SigningDateSpecified { + get { + return this.signingDateFieldSpecified; + } + set { + this.signingDateFieldSpecified = value; + this.RaisePropertyChanged("SigningDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EffectiveDate { + get { + return this.effectiveDateField; + } + set { + this.effectiveDateField = value; + this.RaisePropertyChanged("EffectiveDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EffectiveDateSpecified { + get { + return this.effectiveDateFieldSpecified; + } + set { + this.effectiveDateFieldSpecified = value; + this.RaisePropertyChanged("EffectiveDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractAttachment", Order=3)] + public AttachmentType[] ContractAttachment { + get { + return this.contractAttachmentField; + } + set { + this.contractAttachmentField = value; + this.RaisePropertyChanged("ContractAttachment"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType14 { + + /// + AutomaticRollOverOneYear, + + /// + ComptetionDate, + + /// + IndefiniteTerm, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypePeriod : object, System.ComponentModel.INotifyPropertyChanged { + + private SupplyResourceContractProjectTypePeriodStart startField; + + private SupplyResourceContractProjectTypePeriodEnd endField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SupplyResourceContractProjectTypePeriodStart Start { + get { + return this.startField; + } + set { + this.startField = value; + this.RaisePropertyChanged("Start"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public SupplyResourceContractProjectTypePeriodEnd End { + get { + return this.endField; + } + set { + this.endField = value; + this.RaisePropertyChanged("End"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypePeriodStart : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte startDateField; + + private bool nextMonthField; + + private bool nextMonthFieldSpecified; + + public SupplyResourceContractProjectTypePeriodStart() { + this.nextMonthField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte StartDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("StartDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool NextMonth { + get { + return this.nextMonthField; + } + set { + this.nextMonthField = value; + this.RaisePropertyChanged("NextMonth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NextMonthSpecified { + get { + return this.nextMonthFieldSpecified; + } + set { + this.nextMonthFieldSpecified = value; + this.RaisePropertyChanged("NextMonthSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypePeriodEnd : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte endDateField; + + private bool nextMonthField; + + private bool nextMonthFieldSpecified; + + public SupplyResourceContractProjectTypePeriodEnd() { + this.nextMonthField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool NextMonth { + get { + return this.nextMonthField; + } + set { + this.nextMonthField = value; + this.RaisePropertyChanged("NextMonth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NextMonthSpecified { + get { + return this.nextMonthFieldSpecified; + } + set { + this.nextMonthFieldSpecified = value; + this.RaisePropertyChanged("NextMonthSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeApartmentBuildingOwner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(DRSOIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoData", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RegOrg", typeof(DRSORegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DRSOIndType : object, System.ComponentModel.INotifyPropertyChanged { + + private string surnameField; + + private string firstNameField; + + private string patronymicField; + + private DRSOIndTypeSex sexField; + + private bool sexFieldSpecified; + + private System.DateTime dateOfBirthField; + + private bool dateOfBirthFieldSpecified; + + private object itemField; + + private string placeBirthField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Surname { + get { + return this.surnameField; + } + set { + this.surnameField = value; + this.RaisePropertyChanged("Surname"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FirstName { + get { + return this.firstNameField; + } + set { + this.firstNameField = value; + this.RaisePropertyChanged("FirstName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Patronymic { + get { + return this.patronymicField; + } + set { + this.patronymicField = value; + this.RaisePropertyChanged("Patronymic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public DRSOIndTypeSex Sex { + get { + return this.sexField; + } + set { + this.sexField = value; + this.RaisePropertyChanged("Sex"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SexSpecified { + get { + return this.sexFieldSpecified; + } + set { + this.sexFieldSpecified = value; + this.RaisePropertyChanged("SexSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=4)] + public System.DateTime DateOfBirth { + get { + return this.dateOfBirthField; + } + set { + this.dateOfBirthField = value; + this.RaisePropertyChanged("DateOfBirth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool DateOfBirthSpecified { + get { + return this.dateOfBirthFieldSpecified; + } + set { + this.dateOfBirthFieldSpecified = value; + this.RaisePropertyChanged("DateOfBirthSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ID", typeof(ID), Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/", Order=5)] + [System.Xml.Serialization.XmlElementAttribute("SNILS", typeof(string), Namespace="http://dom.gosuslugi.ru/schema/integration/individual-registry-base/", Order=5)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string PlaceBirth { + get { + return this.placeBirthField; + } + set { + this.placeBirthField = value; + this.RaisePropertyChanged("PlaceBirth"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum DRSOIndTypeSex { + + /// + M, + + /// + F, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DRSORegOrgType : object, System.ComponentModel.INotifyPropertyChanged { + + private string orgRootEntityGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string orgRootEntityGUID { + get { + return this.orgRootEntityGUIDField; + } + set { + this.orgRootEntityGUIDField = value; + this.RaisePropertyChanged("orgRootEntityGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeApartmentBuildingRepresentativeOwner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(DRSOIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoData", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RegOrg", typeof(DRSORegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeApartmentBuildingSoleOwner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(DRSOIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoData", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RegOrg", typeof(DRSORegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeLivingHouseOwner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(DRSOIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoData", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RegOrg", typeof(DRSORegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeOrganization : RegOrgType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractProjectTypePlannedVolumeType { + + /// + D, + + /// + O, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeContractSubject : ContractSubjectType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractSubjectType : object, System.ComponentModel.INotifyPropertyChanged { + + private ContractSubjectTypeServiceType serviceTypeField; + + private ContractSubjectTypeMunicipalResource municipalResourceField; + + private System.DateTime startSupplyDateField; + + private System.DateTime endSupplyDateField; + + private bool endSupplyDateFieldSpecified; + + private ContractSubjectTypePlannedVolume plannedVolumeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ContractSubjectTypeServiceType ServiceType { + get { + return this.serviceTypeField; + } + set { + this.serviceTypeField = value; + this.RaisePropertyChanged("ServiceType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public ContractSubjectTypeMunicipalResource MunicipalResource { + get { + return this.municipalResourceField; + } + set { + this.municipalResourceField = value; + this.RaisePropertyChanged("MunicipalResource"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime StartSupplyDate { + get { + return this.startSupplyDateField; + } + set { + this.startSupplyDateField = value; + this.RaisePropertyChanged("StartSupplyDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime EndSupplyDate { + get { + return this.endSupplyDateField; + } + set { + this.endSupplyDateField = value; + this.RaisePropertyChanged("EndSupplyDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EndSupplyDateSpecified { + get { + return this.endSupplyDateFieldSpecified; + } + set { + this.endSupplyDateFieldSpecified = value; + this.RaisePropertyChanged("EndSupplyDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public ContractSubjectTypePlannedVolume PlannedVolume { + get { + return this.plannedVolumeField; + } + set { + this.plannedVolumeField = value; + this.RaisePropertyChanged("PlannedVolume"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractSubjectTypeServiceType : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractSubjectTypeMunicipalResource : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractSubjectTypePlannedVolume : object, System.ComponentModel.INotifyPropertyChanged { + + private decimal volumeField; + + private string unitField; + + private string feedingModeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public decimal Volume { + get { + return this.volumeField; + } + set { + this.volumeField = value; + this.RaisePropertyChanged("Volume"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Unit { + get { + return this.unitField; + } + set { + this.unitField = value; + this.RaisePropertyChanged("Unit"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string FeedingMode { + get { + return this.feedingModeField; + } + set { + this.feedingModeField = value; + this.RaisePropertyChanged("FeedingMode"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractProjectTypeCountingResource { + + /// + R, + + /// + P, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractProjectTypeSpecifyingQualityIndicators { + + /// + D, + + /// + O, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeQuality : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private nsiRef qualityIndicatorField; + + private SupplyResourceContractProjectTypeQualityIndicatorValue indicatorValueField; + + private string additionalInformationField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef QualityIndicator { + get { + return this.qualityIndicatorField; + } + set { + this.qualityIndicatorField = value; + this.RaisePropertyChanged("QualityIndicator"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public SupplyResourceContractProjectTypeQualityIndicatorValue IndicatorValue { + get { + return this.indicatorValueField; + } + set { + this.indicatorValueField = value; + this.RaisePropertyChanged("IndicatorValue"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AdditionalInformation { + get { + return this.additionalInformationField; + } + set { + this.additionalInformationField = value; + this.RaisePropertyChanged("AdditionalInformation"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeQualityIndicatorValue : IndicatorValueType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class IndicatorValueType : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType10[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("OKEI", typeof(string), Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Correspond", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("EndRange", typeof(decimal), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Number", typeof(decimal), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartRange", typeof(decimal), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType10[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType10 { + + /// + [System.Xml.Serialization.XmlEnumAttribute("http://dom.gosuslugi.ru/schema/integration/base/:OKEI")] + OKEI, + + /// + Correspond, + + /// + EndRange, + + /// + Number, + + /// + StartRange, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeOtherQualityIndicator : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private string indicatorNameField; + + private object[] itemsField; + + private ItemsChoiceType15[] itemsElementNameField; + + private string additionalInformationField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string IndicatorName { + get { + return this.indicatorNameField; + } + set { + this.indicatorNameField = value; + this.RaisePropertyChanged("IndicatorName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OKEI", typeof(string), Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Correspond", typeof(bool), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("EndRange", typeof(decimal), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Number", typeof(decimal), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("StartRange", typeof(decimal), Order=2)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=3)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType15[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string AdditionalInformation { + get { + return this.additionalInformationField; + } + set { + this.additionalInformationField = value; + this.RaisePropertyChanged("AdditionalInformation"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType15 { + + /// + [System.Xml.Serialization.XmlEnumAttribute("http://dom.gosuslugi.ru/schema/integration/base/:OKEI")] + OKEI, + + /// + Correspond, + + /// + EndRange, + + /// + Number, + + /// + StartRange, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeTemperatureChart : object, System.ComponentModel.INotifyPropertyChanged { + + private int outsideTemperatureField; + + private decimal flowLineTemperatureField; + + private decimal oppositeLineTemperatureField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public int OutsideTemperature { + get { + return this.outsideTemperatureField; + } + set { + this.outsideTemperatureField = value; + this.RaisePropertyChanged("OutsideTemperature"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal FlowLineTemperature { + get { + return this.flowLineTemperatureField; + } + set { + this.flowLineTemperatureField = value; + this.RaisePropertyChanged("FlowLineTemperature"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal OppositeLineTemperature { + get { + return this.oppositeLineTemperatureField; + } + set { + this.oppositeLineTemperatureField = value; + this.RaisePropertyChanged("OppositeLineTemperature"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeBillingDate : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte dateField; + + private SupplyResourceContractProjectTypeBillingDateDateType dateTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public SupplyResourceContractProjectTypeBillingDateDateType DateType { + get { + return this.dateTypeField; + } + set { + this.dateTypeField = value; + this.RaisePropertyChanged("DateType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractProjectTypeBillingDateDateType { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypePaymentDate : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte dateField; + + private SupplyResourceContractProjectTypePaymentDateDateType dateTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public SupplyResourceContractProjectTypePaymentDateDateType DateType { + get { + return this.dateTypeField; + } + set { + this.dateTypeField = value; + this.RaisePropertyChanged("DateType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractProjectTypePaymentDateDateType { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeProvidingInformationDate : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte dateField; + + private SupplyResourceContractProjectTypeProvidingInformationDateDateType dateTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public SupplyResourceContractProjectTypeProvidingInformationDateDateType DateType { + get { + return this.dateTypeField; + } + set { + this.dateTypeField = value; + this.RaisePropertyChanged("DateType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractProjectTypeProvidingInformationDateDateType { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractProjectTypeAccrualProcedure { + + /// + D, + + /// + O, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeRegionalSettings : object, System.ComponentModel.INotifyPropertyChanged { + + private RegionType regionField; + + private SupplyResourceContractProjectTypeRegionalSettingsTariff[] tariffField; + + private SupplyResourceContractProjectTypeRegionalSettingsNorm[] normField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public RegionType Region { + get { + return this.regionField; + } + set { + this.regionField = value; + this.RaisePropertyChanged("Region"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Tariff", Order=1)] + public SupplyResourceContractProjectTypeRegionalSettingsTariff[] Tariff { + get { + return this.tariffField; + } + set { + this.tariffField = value; + this.RaisePropertyChanged("Tariff"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Norm", Order=2)] + public SupplyResourceContractProjectTypeRegionalSettingsNorm[] Norm { + get { + return this.normField; + } + set { + this.normField = value; + this.RaisePropertyChanged("Norm"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeRegionalSettingsTariff : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private string priceGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PriceGUID { + get { + return this.priceGUIDField; + } + set { + this.priceGUIDField = value; + this.RaisePropertyChanged("PriceGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractProjectTypeRegionalSettingsNorm : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private string normGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string NormGUID { + get { + return this.normGUIDField; + } + set { + this.normGUIDField = value; + this.RaisePropertyChanged("NormGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportAnnulmentType : object, System.ComponentModel.INotifyPropertyChanged { + + private string reasonOfAnnulmentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ReasonOfAnnulment { + get { + return this.reasonOfAnnulmentField; + } + set { + this.reasonOfAnnulmentField = value; + this.RaisePropertyChanged("ReasonOfAnnulment"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(exportSupplyResourceContractResultType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private object[] itemsField; + + private ItemsChoiceType12[] itemsElementNameField; + + private bool volumeDependsField; + + private bool volumeDependsFieldSpecified; + + private ExportSupplyResourceContractTypePeriod periodField; + + private bool indicationsAnyDayField; + + private bool indicationsAnyDayFieldSpecified; + + private nsiRef[] contractBaseField; + + private object item1Field; + + private bool isPlannedVolumeField; + + private ExportSupplyResourceContractTypePlannedVolumeType plannedVolumeTypeField; + + private bool plannedVolumeTypeFieldSpecified; + + private ExportSupplyResourceContractTypeContractSubject[] contractSubjectField; + + private ExportSupplyResourceContractTypeCountingResource countingResourceField; + + private bool countingResourceFieldSpecified; + + private bool meteringDeviceInformationField; + + private bool meteringDeviceInformationFieldSpecified; + + private ExportSupplyResourceContractTypeSpecifyingQualityIndicators specifyingQualityIndicatorsField; + + private bool noConnectionToWaterSupplyField; + + private bool noConnectionToWaterSupplyFieldSpecified; + + private ExportSupplyResourceContractTypeQuality[] qualityField; + + private ExportSupplyResourceContractTypeOtherQualityIndicator[] otherQualityIndicatorField; + + private ExportSupplyResourceContractTypePlannedVolume[] plannedVolumeField; + + private bool oneTimePaymentField; + + private bool oneTimePaymentFieldSpecified; + + private ExportSupplyResourceContractTypeBillingDate billingDateField; + + private ExportSupplyResourceContractTypePaymentDate paymentDateField; + + private ExportSupplyResourceContractTypeProvidingInformationDate providingInformationDateField; + + public ExportSupplyResourceContractType() { + this.indicationsAnyDayField = true; + this.noConnectionToWaterSupplyField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("IsContract", typeof(ExportSupplyResourceContractTypeIsContract), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("IsNotContract", typeof(ExportSupplyResourceContractTypeIsNotContract), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AutomaticRollOverOneYear", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ComptetionDate", typeof(System.DateTime), DataType="date", Order=1)] + [System.Xml.Serialization.XmlElementAttribute("IndefiniteTerm", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType12[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public bool VolumeDepends { + get { + return this.volumeDependsField; + } + set { + this.volumeDependsField = value; + this.RaisePropertyChanged("VolumeDepends"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool VolumeDependsSpecified { + get { + return this.volumeDependsFieldSpecified; + } + set { + this.volumeDependsFieldSpecified = value; + this.RaisePropertyChanged("VolumeDependsSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public ExportSupplyResourceContractTypePeriod Period { + get { + return this.periodField; + } + set { + this.periodField = value; + this.RaisePropertyChanged("Period"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool IndicationsAnyDay { + get { + return this.indicationsAnyDayField; + } + set { + this.indicationsAnyDayField = value; + this.RaisePropertyChanged("IndicationsAnyDay"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IndicationsAnyDaySpecified { + get { + return this.indicationsAnyDayFieldSpecified; + } + set { + this.indicationsAnyDayFieldSpecified = value; + this.RaisePropertyChanged("IndicationsAnyDaySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractBase", Order=6)] + public nsiRef[] ContractBase { + get { + return this.contractBaseField; + } + set { + this.contractBaseField = value; + this.RaisePropertyChanged("ContractBase"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ApartmentBuildingOwner", typeof(ExportSupplyResourceContractTypeApartmentBuildingOwner), Order=7)] + [System.Xml.Serialization.XmlElementAttribute("ApartmentBuildingRepresentativeOwner", typeof(ExportSupplyResourceContractTypeApartmentBuildingRepresentativeOwner), Order=7)] + [System.Xml.Serialization.XmlElementAttribute("ApartmentBuildingSoleOwner", typeof(ExportSupplyResourceContractTypeApartmentBuildingSoleOwner), Order=7)] + [System.Xml.Serialization.XmlElementAttribute("LivingHouseOwner", typeof(ExportSupplyResourceContractTypeLivingHouseOwner), Order=7)] + [System.Xml.Serialization.XmlElementAttribute("Offer", typeof(bool), Order=7)] + [System.Xml.Serialization.XmlElementAttribute("Organization", typeof(ExportSupplyResourceContractTypeOrganization), Order=7)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool IsPlannedVolume { + get { + return this.isPlannedVolumeField; + } + set { + this.isPlannedVolumeField = value; + this.RaisePropertyChanged("IsPlannedVolume"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public ExportSupplyResourceContractTypePlannedVolumeType PlannedVolumeType { + get { + return this.plannedVolumeTypeField; + } + set { + this.plannedVolumeTypeField = value; + this.RaisePropertyChanged("PlannedVolumeType"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool PlannedVolumeTypeSpecified { + get { + return this.plannedVolumeTypeFieldSpecified; + } + set { + this.plannedVolumeTypeFieldSpecified = value; + this.RaisePropertyChanged("PlannedVolumeTypeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractSubject", Order=10)] + public ExportSupplyResourceContractTypeContractSubject[] ContractSubject { + get { + return this.contractSubjectField; + } + set { + this.contractSubjectField = value; + this.RaisePropertyChanged("ContractSubject"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public ExportSupplyResourceContractTypeCountingResource CountingResource { + get { + return this.countingResourceField; + } + set { + this.countingResourceField = value; + this.RaisePropertyChanged("CountingResource"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CountingResourceSpecified { + get { + return this.countingResourceFieldSpecified; + } + set { + this.countingResourceFieldSpecified = value; + this.RaisePropertyChanged("CountingResourceSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=12)] + public bool MeteringDeviceInformation { + get { + return this.meteringDeviceInformationField; + } + set { + this.meteringDeviceInformationField = value; + this.RaisePropertyChanged("MeteringDeviceInformation"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MeteringDeviceInformationSpecified { + get { + return this.meteringDeviceInformationFieldSpecified; + } + set { + this.meteringDeviceInformationFieldSpecified = value; + this.RaisePropertyChanged("MeteringDeviceInformationSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=13)] + public ExportSupplyResourceContractTypeSpecifyingQualityIndicators SpecifyingQualityIndicators { + get { + return this.specifyingQualityIndicatorsField; + } + set { + this.specifyingQualityIndicatorsField = value; + this.RaisePropertyChanged("SpecifyingQualityIndicators"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=14)] + public bool NoConnectionToWaterSupply { + get { + return this.noConnectionToWaterSupplyField; + } + set { + this.noConnectionToWaterSupplyField = value; + this.RaisePropertyChanged("NoConnectionToWaterSupply"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NoConnectionToWaterSupplySpecified { + get { + return this.noConnectionToWaterSupplyFieldSpecified; + } + set { + this.noConnectionToWaterSupplyFieldSpecified = value; + this.RaisePropertyChanged("NoConnectionToWaterSupplySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Quality", Order=15)] + public ExportSupplyResourceContractTypeQuality[] Quality { + get { + return this.qualityField; + } + set { + this.qualityField = value; + this.RaisePropertyChanged("Quality"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OtherQualityIndicator", Order=16)] + public ExportSupplyResourceContractTypeOtherQualityIndicator[] OtherQualityIndicator { + get { + return this.otherQualityIndicatorField; + } + set { + this.otherQualityIndicatorField = value; + this.RaisePropertyChanged("OtherQualityIndicator"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("PlannedVolume", Order=17)] + public ExportSupplyResourceContractTypePlannedVolume[] PlannedVolume { + get { + return this.plannedVolumeField; + } + set { + this.plannedVolumeField = value; + this.RaisePropertyChanged("PlannedVolume"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=18)] + public bool OneTimePayment { + get { + return this.oneTimePaymentField; + } + set { + this.oneTimePaymentField = value; + this.RaisePropertyChanged("OneTimePayment"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool OneTimePaymentSpecified { + get { + return this.oneTimePaymentFieldSpecified; + } + set { + this.oneTimePaymentFieldSpecified = value; + this.RaisePropertyChanged("OneTimePaymentSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=19)] + public ExportSupplyResourceContractTypeBillingDate BillingDate { + get { + return this.billingDateField; + } + set { + this.billingDateField = value; + this.RaisePropertyChanged("BillingDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=20)] + public ExportSupplyResourceContractTypePaymentDate PaymentDate { + get { + return this.paymentDateField; + } + set { + this.paymentDateField = value; + this.RaisePropertyChanged("PaymentDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=21)] + public ExportSupplyResourceContractTypeProvidingInformationDate ProvidingInformationDate { + get { + return this.providingInformationDateField; + } + set { + this.providingInformationDateField = value; + this.RaisePropertyChanged("ProvidingInformationDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeIsContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractNumberField; + + private System.DateTime signingDateField; + + private System.DateTime effectiveDateField; + + private AttachmentType[] contractAttachmentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractNumber { + get { + return this.contractNumberField; + } + set { + this.contractNumberField = value; + this.RaisePropertyChanged("ContractNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime SigningDate { + get { + return this.signingDateField; + } + set { + this.signingDateField = value; + this.RaisePropertyChanged("SigningDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EffectiveDate { + get { + return this.effectiveDateField; + } + set { + this.effectiveDateField = value; + this.RaisePropertyChanged("EffectiveDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractAttachment", Order=3)] + public AttachmentType[] ContractAttachment { + get { + return this.contractAttachmentField; + } + set { + this.contractAttachmentField = value; + this.RaisePropertyChanged("ContractAttachment"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeIsNotContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractNumberField; + + private System.DateTime signingDateField; + + private bool signingDateFieldSpecified; + + private System.DateTime effectiveDateField; + + private bool effectiveDateFieldSpecified; + + private AttachmentType[] contractAttachmentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractNumber { + get { + return this.contractNumberField; + } + set { + this.contractNumberField = value; + this.RaisePropertyChanged("ContractNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime SigningDate { + get { + return this.signingDateField; + } + set { + this.signingDateField = value; + this.RaisePropertyChanged("SigningDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SigningDateSpecified { + get { + return this.signingDateFieldSpecified; + } + set { + this.signingDateFieldSpecified = value; + this.RaisePropertyChanged("SigningDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EffectiveDate { + get { + return this.effectiveDateField; + } + set { + this.effectiveDateField = value; + this.RaisePropertyChanged("EffectiveDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EffectiveDateSpecified { + get { + return this.effectiveDateFieldSpecified; + } + set { + this.effectiveDateFieldSpecified = value; + this.RaisePropertyChanged("EffectiveDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractAttachment", Order=3)] + public AttachmentType[] ContractAttachment { + get { + return this.contractAttachmentField; + } + set { + this.contractAttachmentField = value; + this.RaisePropertyChanged("ContractAttachment"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType12 { + + /// + AutomaticRollOverOneYear, + + /// + ComptetionDate, + + /// + IndefiniteTerm, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypePeriod : object, System.ComponentModel.INotifyPropertyChanged { + + private ExportSupplyResourceContractTypePeriodStart startField; + + private ExportSupplyResourceContractTypePeriodEnd endField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ExportSupplyResourceContractTypePeriodStart Start { + get { + return this.startField; + } + set { + this.startField = value; + this.RaisePropertyChanged("Start"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public ExportSupplyResourceContractTypePeriodEnd End { + get { + return this.endField; + } + set { + this.endField = value; + this.RaisePropertyChanged("End"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypePeriodStart : object, System.ComponentModel.INotifyPropertyChanged { + + private string startDateField; + + private bool nextMonthField; + + private bool nextMonthFieldSpecified; + + public ExportSupplyResourceContractTypePeriodStart() { + this.nextMonthField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)] + public string StartDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("StartDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool NextMonth { + get { + return this.nextMonthField; + } + set { + this.nextMonthField = value; + this.RaisePropertyChanged("NextMonth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NextMonthSpecified { + get { + return this.nextMonthFieldSpecified; + } + set { + this.nextMonthFieldSpecified = value; + this.RaisePropertyChanged("NextMonthSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypePeriodEnd : object, System.ComponentModel.INotifyPropertyChanged { + + private string endDateField; + + private bool nextMonthField; + + private bool nextMonthFieldSpecified; + + public ExportSupplyResourceContractTypePeriodEnd() { + this.nextMonthField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)] + public string EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool NextMonth { + get { + return this.nextMonthField; + } + set { + this.nextMonthField = value; + this.RaisePropertyChanged("NextMonth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NextMonthSpecified { + get { + return this.nextMonthFieldSpecified; + } + set { + this.nextMonthFieldSpecified = value; + this.RaisePropertyChanged("NextMonthSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeApartmentBuildingOwner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(DRSOIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoData", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RegOrg", typeof(DRSORegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeApartmentBuildingRepresentativeOwner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(DRSOIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoData", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RegOrg", typeof(DRSORegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeApartmentBuildingSoleOwner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(DRSOIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoData", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RegOrg", typeof(DRSORegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeLivingHouseOwner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(DRSOIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoData", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RegOrg", typeof(DRSORegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeOrganization : RegOrgType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ExportSupplyResourceContractTypePlannedVolumeType { + + /// + D, + + /// + O, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeContractSubject : object, System.ComponentModel.INotifyPropertyChanged { + + private ExportSupplyResourceContractTypeContractSubjectServiceType serviceTypeField; + + private ExportSupplyResourceContractTypeContractSubjectMunicipalResource municipalResourceField; + + private System.DateTime startSupplyDateField; + + private System.DateTime endSupplyDateField; + + private bool endSupplyDateFieldSpecified; + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ExportSupplyResourceContractTypeContractSubjectServiceType ServiceType { + get { + return this.serviceTypeField; + } + set { + this.serviceTypeField = value; + this.RaisePropertyChanged("ServiceType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public ExportSupplyResourceContractTypeContractSubjectMunicipalResource MunicipalResource { + get { + return this.municipalResourceField; + } + set { + this.municipalResourceField = value; + this.RaisePropertyChanged("MunicipalResource"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime StartSupplyDate { + get { + return this.startSupplyDateField; + } + set { + this.startSupplyDateField = value; + this.RaisePropertyChanged("StartSupplyDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime EndSupplyDate { + get { + return this.endSupplyDateField; + } + set { + this.endSupplyDateField = value; + this.RaisePropertyChanged("EndSupplyDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EndSupplyDateSpecified { + get { + return this.endSupplyDateFieldSpecified; + } + set { + this.endSupplyDateFieldSpecified = value; + this.RaisePropertyChanged("EndSupplyDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=4)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeContractSubjectServiceType : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeContractSubjectMunicipalResource : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ExportSupplyResourceContractTypeCountingResource { + + /// + R, + + /// + P, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ExportSupplyResourceContractTypeSpecifyingQualityIndicators { + + /// + D, + + /// + O, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeQuality : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private nsiRef qualityIndicatorField; + + private ExportSupplyResourceContractTypeQualityIndicatorValue[] indicatorValueField; + + private string additionalInformationField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef QualityIndicator { + get { + return this.qualityIndicatorField; + } + set { + this.qualityIndicatorField = value; + this.RaisePropertyChanged("QualityIndicator"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("IndicatorValue", Order=2)] + public ExportSupplyResourceContractTypeQualityIndicatorValue[] IndicatorValue { + get { + return this.indicatorValueField; + } + set { + this.indicatorValueField = value; + this.RaisePropertyChanged("IndicatorValue"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AdditionalInformation { + get { + return this.additionalInformationField; + } + set { + this.additionalInformationField = value; + this.RaisePropertyChanged("AdditionalInformation"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeQualityIndicatorValue : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType13[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("OKEI", typeof(string), Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Correspond", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("EndRange", typeof(decimal), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Number", typeof(decimal), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartRange", typeof(decimal), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType13[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType13 { + + /// + [System.Xml.Serialization.XmlEnumAttribute("http://dom.gosuslugi.ru/schema/integration/base/:OKEI")] + OKEI, + + /// + Correspond, + + /// + EndRange, + + /// + Number, + + /// + StartRange, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeOtherQualityIndicator : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private string indicatorNameField; + + private ExportSupplyResourceContractTypeOtherQualityIndicatorIndicatorValue indicatorValueField; + + private string additionalInformationField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string IndicatorName { + get { + return this.indicatorNameField; + } + set { + this.indicatorNameField = value; + this.RaisePropertyChanged("IndicatorName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public ExportSupplyResourceContractTypeOtherQualityIndicatorIndicatorValue IndicatorValue { + get { + return this.indicatorValueField; + } + set { + this.indicatorValueField = value; + this.RaisePropertyChanged("IndicatorValue"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AdditionalInformation { + get { + return this.additionalInformationField; + } + set { + this.additionalInformationField = value; + this.RaisePropertyChanged("AdditionalInformation"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeOtherQualityIndicatorIndicatorValue : IndicatorValueType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypePlannedVolume : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private decimal volumeField; + + private bool volumeFieldSpecified; + + private string unitField; + + private string feedingModeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Volume { + get { + return this.volumeField; + } + set { + this.volumeField = value; + this.RaisePropertyChanged("Volume"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool VolumeSpecified { + get { + return this.volumeFieldSpecified; + } + set { + this.volumeFieldSpecified = value; + this.RaisePropertyChanged("VolumeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Unit { + get { + return this.unitField; + } + set { + this.unitField = value; + this.RaisePropertyChanged("Unit"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string FeedingMode { + get { + return this.feedingModeField; + } + set { + this.feedingModeField = value; + this.RaisePropertyChanged("FeedingMode"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeBillingDate : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte dateField; + + private ExportSupplyResourceContractTypeBillingDateDateType dateTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public ExportSupplyResourceContractTypeBillingDateDateType DateType { + get { + return this.dateTypeField; + } + set { + this.dateTypeField = value; + this.RaisePropertyChanged("DateType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ExportSupplyResourceContractTypeBillingDateDateType { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypePaymentDate : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte dateField; + + private ExportSupplyResourceContractTypePaymentDateDateType dateTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public ExportSupplyResourceContractTypePaymentDateDateType DateType { + get { + return this.dateTypeField; + } + set { + this.dateTypeField = value; + this.RaisePropertyChanged("DateType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ExportSupplyResourceContractTypePaymentDateDateType { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportSupplyResourceContractTypeProvidingInformationDate : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte dateField; + + private ExportSupplyResourceContractTypeProvidingInformationDateDateType dateTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public ExportSupplyResourceContractTypeProvidingInformationDateDateType DateType { + get { + return this.dateTypeField; + } + set { + this.dateTypeField = value; + this.RaisePropertyChanged("DateType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ExportSupplyResourceContractTypeProvidingInformationDateDateType { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractResultType : ExportSupplyResourceContractType { + + private string contractRootGUIDField; + + private string contractGUIDField; + + private exportSupplyResourceContractResultTypeContractState contractStateField; + + private string versionNumberField; + + private exportSupplyResourceContractResultTypeVersionStatus versionStatusField; + + private exportSupplyResourceContractResultTypeTerminateContract terminateContractField; + + private ExportAnnulmentType annulmentContractField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractRootGUID { + get { + return this.contractRootGUIDField; + } + set { + this.contractRootGUIDField = value; + this.RaisePropertyChanged("ContractRootGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ContractGUID { + get { + return this.contractGUIDField; + } + set { + this.contractGUIDField = value; + this.RaisePropertyChanged("ContractGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public exportSupplyResourceContractResultTypeContractState ContractState { + get { + return this.contractStateField; + } + set { + this.contractStateField = value; + this.RaisePropertyChanged("ContractState"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="positiveInteger", Order=3)] + public string VersionNumber { + get { + return this.versionNumberField; + } + set { + this.versionNumberField = value; + this.RaisePropertyChanged("VersionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public exportSupplyResourceContractResultTypeVersionStatus VersionStatus { + get { + return this.versionStatusField; + } + set { + this.versionStatusField = value; + this.RaisePropertyChanged("VersionStatus"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public exportSupplyResourceContractResultTypeTerminateContract TerminateContract { + get { + return this.terminateContractField; + } + set { + this.terminateContractField = value; + this.RaisePropertyChanged("TerminateContract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public ExportAnnulmentType AnnulmentContract { + get { + return this.annulmentContractField; + } + set { + this.annulmentContractField = value; + this.RaisePropertyChanged("AnnulmentContract"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportSupplyResourceContractResultTypeContractState { + + /// + NotTakeEffect, + + /// + Proceed, + + /// + Expired, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportSupplyResourceContractResultTypeVersionStatus { + + /// + Posted, + + /// + Terminated, + + /// + Draft, + + /// + Annul, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractResultTypeTerminateContract : TerminateType { + + private nsiRef reasonRefField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef ReasonRef { + get { + return this.reasonRefField; + } + set { + this.reasonRefField = value; + this.RaisePropertyChanged("ReasonRef"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(exportSupplyResourceContractObjectAddressResultType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ObjectAddressType : object, System.ComponentModel.INotifyPropertyChanged { + + private ObjectAddressTypeHouseType houseTypeField; + + private bool houseTypeFieldSpecified; + + private string fIASHouseGuidField; + + private string apartmentNumberField; + + private string roomNumberField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ObjectAddressTypeHouseType HouseType { + get { + return this.houseTypeField; + } + set { + this.houseTypeField = value; + this.RaisePropertyChanged("HouseType"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HouseTypeSpecified { + get { + return this.houseTypeFieldSpecified; + } + set { + this.houseTypeFieldSpecified = value; + this.RaisePropertyChanged("HouseTypeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ApartmentNumber { + get { + return this.apartmentNumberField; + } + set { + this.apartmentNumberField = value; + this.RaisePropertyChanged("ApartmentNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ObjectAddressTypeHouseType { + + /// + MKD, + + /// + ZHD, + + /// + ZHDBlockZastroyki, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractObjectAddressResultType : ObjectAddressType { + + private exportSupplyResourceContractObjectAddressResultTypePair[] pairField; + + private bool noConnectionToWaterSupplyField; + + private bool noConnectionToWaterSupplyFieldSpecified; + + private exportSupplyResourceContractObjectAddressResultTypeQuality[] qualityField; + + private exportSupplyResourceContractObjectAddressResultTypeOtherQualityIndicator[] otherQualityIndicatorField; + + private exportSupplyResourceContractObjectAddressResultTypePlannedVolume[] plannedVolumeField; + + private string objectGUIDField; + + private string contractRootGUIDField; + + private string contractGUIDField; + + private string versionNumberField; + + private exportSupplyResourceContractObjectAddressResultTypeVersionStatus versionStatusField; + + private exportSupplyResourceContractObjectAddressResultTypeCountingResource countingResourceField; + + private bool countingResourceFieldSpecified; + + private bool meteringDeviceInformationField; + + private bool meteringDeviceInformationFieldSpecified; + + public exportSupplyResourceContractObjectAddressResultType() { + this.noConnectionToWaterSupplyField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Pair", Order=0)] + public exportSupplyResourceContractObjectAddressResultTypePair[] Pair { + get { + return this.pairField; + } + set { + this.pairField = value; + this.RaisePropertyChanged("Pair"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool NoConnectionToWaterSupply { + get { + return this.noConnectionToWaterSupplyField; + } + set { + this.noConnectionToWaterSupplyField = value; + this.RaisePropertyChanged("NoConnectionToWaterSupply"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NoConnectionToWaterSupplySpecified { + get { + return this.noConnectionToWaterSupplyFieldSpecified; + } + set { + this.noConnectionToWaterSupplyFieldSpecified = value; + this.RaisePropertyChanged("NoConnectionToWaterSupplySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Quality", Order=2)] + public exportSupplyResourceContractObjectAddressResultTypeQuality[] Quality { + get { + return this.qualityField; + } + set { + this.qualityField = value; + this.RaisePropertyChanged("Quality"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OtherQualityIndicator", Order=3)] + public exportSupplyResourceContractObjectAddressResultTypeOtherQualityIndicator[] OtherQualityIndicator { + get { + return this.otherQualityIndicatorField; + } + set { + this.otherQualityIndicatorField = value; + this.RaisePropertyChanged("OtherQualityIndicator"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("PlannedVolume", Order=4)] + public exportSupplyResourceContractObjectAddressResultTypePlannedVolume[] PlannedVolume { + get { + return this.plannedVolumeField; + } + set { + this.plannedVolumeField = value; + this.RaisePropertyChanged("PlannedVolume"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string ObjectGUID { + get { + return this.objectGUIDField; + } + set { + this.objectGUIDField = value; + this.RaisePropertyChanged("ObjectGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string ContractRootGUID { + get { + return this.contractRootGUIDField; + } + set { + this.contractRootGUIDField = value; + this.RaisePropertyChanged("ContractRootGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public string ContractGUID { + get { + return this.contractGUIDField; + } + set { + this.contractGUIDField = value; + this.RaisePropertyChanged("ContractGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="positiveInteger", Order=8)] + public string VersionNumber { + get { + return this.versionNumberField; + } + set { + this.versionNumberField = value; + this.RaisePropertyChanged("VersionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public exportSupplyResourceContractObjectAddressResultTypeVersionStatus VersionStatus { + get { + return this.versionStatusField; + } + set { + this.versionStatusField = value; + this.RaisePropertyChanged("VersionStatus"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public exportSupplyResourceContractObjectAddressResultTypeCountingResource CountingResource { + get { + return this.countingResourceField; + } + set { + this.countingResourceField = value; + this.RaisePropertyChanged("CountingResource"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CountingResourceSpecified { + get { + return this.countingResourceFieldSpecified; + } + set { + this.countingResourceFieldSpecified = value; + this.RaisePropertyChanged("CountingResourceSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public bool MeteringDeviceInformation { + get { + return this.meteringDeviceInformationField; + } + set { + this.meteringDeviceInformationField = value; + this.RaisePropertyChanged("MeteringDeviceInformation"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MeteringDeviceInformationSpecified { + get { + return this.meteringDeviceInformationFieldSpecified; + } + set { + this.meteringDeviceInformationFieldSpecified = value; + this.RaisePropertyChanged("MeteringDeviceInformationSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractObjectAddressResultTypePair : ContractSubjectObjectAdressType { + + private exportSupplyResourceContractObjectAddressResultTypePairHeatingSystemType[] heatingSystemTypeField; + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute("HeatingSystemType", Order=0)] + public exportSupplyResourceContractObjectAddressResultTypePairHeatingSystemType[] HeatingSystemType { + get { + return this.heatingSystemTypeField; + } + set { + this.heatingSystemTypeField = value; + this.RaisePropertyChanged("HeatingSystemType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=1)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractObjectAddressResultTypePairHeatingSystemType : object, System.ComponentModel.INotifyPropertyChanged { + + private exportSupplyResourceContractObjectAddressResultTypePairHeatingSystemTypeOpenOrNot openOrNotField; + + private exportSupplyResourceContractObjectAddressResultTypePairHeatingSystemTypeCentralizedOrNot centralizedOrNotField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public exportSupplyResourceContractObjectAddressResultTypePairHeatingSystemTypeOpenOrNot OpenOrNot { + get { + return this.openOrNotField; + } + set { + this.openOrNotField = value; + this.RaisePropertyChanged("OpenOrNot"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public exportSupplyResourceContractObjectAddressResultTypePairHeatingSystemTypeCentralizedOrNot CentralizedOrNot { + get { + return this.centralizedOrNotField; + } + set { + this.centralizedOrNotField = value; + this.RaisePropertyChanged("CentralizedOrNot"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportSupplyResourceContractObjectAddressResultTypePairHeatingSystemTypeOpenOrNot { + + /// + Opened, + + /// + Closed, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportSupplyResourceContractObjectAddressResultTypePairHeatingSystemTypeCentralizedOrNot { + + /// + Centralized, + + /// + Decentralized, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractObjectAddressResultTypeQuality : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private nsiRef qualityIndicatorField; + + private exportSupplyResourceContractObjectAddressResultTypeQualityIndicatorValue[] indicatorValueField; + + private string additionalInformationField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef QualityIndicator { + get { + return this.qualityIndicatorField; + } + set { + this.qualityIndicatorField = value; + this.RaisePropertyChanged("QualityIndicator"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("IndicatorValue", Order=2)] + public exportSupplyResourceContractObjectAddressResultTypeQualityIndicatorValue[] IndicatorValue { + get { + return this.indicatorValueField; + } + set { + this.indicatorValueField = value; + this.RaisePropertyChanged("IndicatorValue"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AdditionalInformation { + get { + return this.additionalInformationField; + } + set { + this.additionalInformationField = value; + this.RaisePropertyChanged("AdditionalInformation"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractObjectAddressResultTypeQualityIndicatorValue : IndicatorValueType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractObjectAddressResultTypeOtherQualityIndicator : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private string indicatorNameField; + + private exportSupplyResourceContractObjectAddressResultTypeOtherQualityIndicatorIndicatorValue indicatorValueField; + + private string additionalInformationField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string IndicatorName { + get { + return this.indicatorNameField; + } + set { + this.indicatorNameField = value; + this.RaisePropertyChanged("IndicatorName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public exportSupplyResourceContractObjectAddressResultTypeOtherQualityIndicatorIndicatorValue IndicatorValue { + get { + return this.indicatorValueField; + } + set { + this.indicatorValueField = value; + this.RaisePropertyChanged("IndicatorValue"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AdditionalInformation { + get { + return this.additionalInformationField; + } + set { + this.additionalInformationField = value; + this.RaisePropertyChanged("AdditionalInformation"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractObjectAddressResultTypeOtherQualityIndicatorIndicatorValue : IndicatorValueType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractObjectAddressResultTypePlannedVolume : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private decimal volumeField; + + private bool volumeFieldSpecified; + + private string unitField; + + private string feedingModeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Volume { + get { + return this.volumeField; + } + set { + this.volumeField = value; + this.RaisePropertyChanged("Volume"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool VolumeSpecified { + get { + return this.volumeFieldSpecified; + } + set { + this.volumeFieldSpecified = value; + this.RaisePropertyChanged("VolumeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Unit { + get { + return this.unitField; + } + set { + this.unitField = value; + this.RaisePropertyChanged("Unit"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string FeedingMode { + get { + return this.feedingModeField; + } + set { + this.feedingModeField = value; + this.RaisePropertyChanged("FeedingMode"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportSupplyResourceContractObjectAddressResultTypeVersionStatus { + + /// + Posted, + + /// + Terminated, + + /// + Draft, + + /// + Annul, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportSupplyResourceContractObjectAddressResultTypeCountingResource { + + /// + R, + + /// + P, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private object[] itemsField; + + private ItemsChoiceType9[] itemsElementNameField; + + private SupplyResourceContractTypePeriod periodField; + + private bool indicationsAnyDayField; + + private bool indicationsAnyDayFieldSpecified; + + private nsiRef[] contractBaseField; + + private object item1Field; + + private bool isPlannedVolumeField; + + private SupplyResourceContractTypePlannedVolumeType plannedVolumeTypeField; + + private bool plannedVolumeTypeFieldSpecified; + + private SupplyResourceContractTypeContractSubject[] contractSubjectField; + + private SupplyResourceContractTypeCountingResource countingResourceField; + + private bool countingResourceFieldSpecified; + + private SupplyResourceContractTypeSpecifyingQualityIndicators specifyingQualityIndicatorsField; + + private bool noConnectionToWaterSupplyField; + + private bool noConnectionToWaterSupplyFieldSpecified; + + private SupplyResourceContractTypeObjectAddress[] objectAddressField; + + private SupplyResourceContractTypeQuality[] qualityField; + + private SupplyResourceContractTypeOtherQualityIndicator[] otherQualityIndicatorField; + + private SupplyResourceContractTypeTemperatureChart[] temperatureChartField; + + private SupplyResourceContractTypeBillingDate billingDateField; + + private SupplyResourceContractTypePaymentDate paymentDateField; + + private SupplyResourceContractTypeProvidingInformationDate providingInformationDateField; + + private bool meteringDeviceInformationField; + + private bool meteringDeviceInformationFieldSpecified; + + private bool volumeDependsField; + + private bool volumeDependsFieldSpecified; + + private bool oneTimePaymentField; + + private bool oneTimePaymentFieldSpecified; + + private SupplyResourceContractTypeAccrualProcedure accrualProcedureField; + + private bool accrualProcedureFieldSpecified; + + private SupplyResourceContractTypeTariff[] tariffField; + + private SupplyResourceContractTypeNorm[] normField; + + public SupplyResourceContractType() { + this.indicationsAnyDayField = true; + this.noConnectionToWaterSupplyField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("IsContract", typeof(SupplyResourceContractTypeIsContract), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("IsNotContract", typeof(SupplyResourceContractTypeIsNotContract), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AutomaticRollOverOneYear", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ComptetionDate", typeof(System.DateTime), DataType="date", Order=1)] + [System.Xml.Serialization.XmlElementAttribute("IndefiniteTerm", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType9[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public SupplyResourceContractTypePeriod Period { + get { + return this.periodField; + } + set { + this.periodField = value; + this.RaisePropertyChanged("Period"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool IndicationsAnyDay { + get { + return this.indicationsAnyDayField; + } + set { + this.indicationsAnyDayField = value; + this.RaisePropertyChanged("IndicationsAnyDay"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IndicationsAnyDaySpecified { + get { + return this.indicationsAnyDayFieldSpecified; + } + set { + this.indicationsAnyDayFieldSpecified = value; + this.RaisePropertyChanged("IndicationsAnyDaySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractBase", Order=5)] + public nsiRef[] ContractBase { + get { + return this.contractBaseField; + } + set { + this.contractBaseField = value; + this.RaisePropertyChanged("ContractBase"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ApartmentBuildingOwner", typeof(SupplyResourceContractTypeApartmentBuildingOwner), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("ApartmentBuildingRepresentativeOwner", typeof(SupplyResourceContractTypeApartmentBuildingRepresentativeOwner), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("ApartmentBuildingSoleOwner", typeof(SupplyResourceContractTypeApartmentBuildingSoleOwner), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("LivingHouseOwner", typeof(SupplyResourceContractTypeLivingHouseOwner), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("Offer", typeof(bool), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("Organization", typeof(SupplyResourceContractTypeOrganization), Order=6)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public bool IsPlannedVolume { + get { + return this.isPlannedVolumeField; + } + set { + this.isPlannedVolumeField = value; + this.RaisePropertyChanged("IsPlannedVolume"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public SupplyResourceContractTypePlannedVolumeType PlannedVolumeType { + get { + return this.plannedVolumeTypeField; + } + set { + this.plannedVolumeTypeField = value; + this.RaisePropertyChanged("PlannedVolumeType"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool PlannedVolumeTypeSpecified { + get { + return this.plannedVolumeTypeFieldSpecified; + } + set { + this.plannedVolumeTypeFieldSpecified = value; + this.RaisePropertyChanged("PlannedVolumeTypeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractSubject", Order=9)] + public SupplyResourceContractTypeContractSubject[] ContractSubject { + get { + return this.contractSubjectField; + } + set { + this.contractSubjectField = value; + this.RaisePropertyChanged("ContractSubject"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public SupplyResourceContractTypeCountingResource CountingResource { + get { + return this.countingResourceField; + } + set { + this.countingResourceField = value; + this.RaisePropertyChanged("CountingResource"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CountingResourceSpecified { + get { + return this.countingResourceFieldSpecified; + } + set { + this.countingResourceFieldSpecified = value; + this.RaisePropertyChanged("CountingResourceSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public SupplyResourceContractTypeSpecifyingQualityIndicators SpecifyingQualityIndicators { + get { + return this.specifyingQualityIndicatorsField; + } + set { + this.specifyingQualityIndicatorsField = value; + this.RaisePropertyChanged("SpecifyingQualityIndicators"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=12)] + public bool NoConnectionToWaterSupply { + get { + return this.noConnectionToWaterSupplyField; + } + set { + this.noConnectionToWaterSupplyField = value; + this.RaisePropertyChanged("NoConnectionToWaterSupply"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NoConnectionToWaterSupplySpecified { + get { + return this.noConnectionToWaterSupplyFieldSpecified; + } + set { + this.noConnectionToWaterSupplyFieldSpecified = value; + this.RaisePropertyChanged("NoConnectionToWaterSupplySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ObjectAddress", Order=13)] + public SupplyResourceContractTypeObjectAddress[] ObjectAddress { + get { + return this.objectAddressField; + } + set { + this.objectAddressField = value; + this.RaisePropertyChanged("ObjectAddress"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Quality", Order=14)] + public SupplyResourceContractTypeQuality[] Quality { + get { + return this.qualityField; + } + set { + this.qualityField = value; + this.RaisePropertyChanged("Quality"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OtherQualityIndicator", Order=15)] + public SupplyResourceContractTypeOtherQualityIndicator[] OtherQualityIndicator { + get { + return this.otherQualityIndicatorField; + } + set { + this.otherQualityIndicatorField = value; + this.RaisePropertyChanged("OtherQualityIndicator"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TemperatureChart", Order=16)] + public SupplyResourceContractTypeTemperatureChart[] TemperatureChart { + get { + return this.temperatureChartField; + } + set { + this.temperatureChartField = value; + this.RaisePropertyChanged("TemperatureChart"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=17)] + public SupplyResourceContractTypeBillingDate BillingDate { + get { + return this.billingDateField; + } + set { + this.billingDateField = value; + this.RaisePropertyChanged("BillingDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=18)] + public SupplyResourceContractTypePaymentDate PaymentDate { + get { + return this.paymentDateField; + } + set { + this.paymentDateField = value; + this.RaisePropertyChanged("PaymentDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=19)] + public SupplyResourceContractTypeProvidingInformationDate ProvidingInformationDate { + get { + return this.providingInformationDateField; + } + set { + this.providingInformationDateField = value; + this.RaisePropertyChanged("ProvidingInformationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=20)] + public bool MeteringDeviceInformation { + get { + return this.meteringDeviceInformationField; + } + set { + this.meteringDeviceInformationField = value; + this.RaisePropertyChanged("MeteringDeviceInformation"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MeteringDeviceInformationSpecified { + get { + return this.meteringDeviceInformationFieldSpecified; + } + set { + this.meteringDeviceInformationFieldSpecified = value; + this.RaisePropertyChanged("MeteringDeviceInformationSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=21)] + public bool VolumeDepends { + get { + return this.volumeDependsField; + } + set { + this.volumeDependsField = value; + this.RaisePropertyChanged("VolumeDepends"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool VolumeDependsSpecified { + get { + return this.volumeDependsFieldSpecified; + } + set { + this.volumeDependsFieldSpecified = value; + this.RaisePropertyChanged("VolumeDependsSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=22)] + public bool OneTimePayment { + get { + return this.oneTimePaymentField; + } + set { + this.oneTimePaymentField = value; + this.RaisePropertyChanged("OneTimePayment"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool OneTimePaymentSpecified { + get { + return this.oneTimePaymentFieldSpecified; + } + set { + this.oneTimePaymentFieldSpecified = value; + this.RaisePropertyChanged("OneTimePaymentSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=23)] + public SupplyResourceContractTypeAccrualProcedure AccrualProcedure { + get { + return this.accrualProcedureField; + } + set { + this.accrualProcedureField = value; + this.RaisePropertyChanged("AccrualProcedure"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AccrualProcedureSpecified { + get { + return this.accrualProcedureFieldSpecified; + } + set { + this.accrualProcedureFieldSpecified = value; + this.RaisePropertyChanged("AccrualProcedureSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Tariff", Order=24)] + public SupplyResourceContractTypeTariff[] Tariff { + get { + return this.tariffField; + } + set { + this.tariffField = value; + this.RaisePropertyChanged("Tariff"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Norm", Order=25)] + public SupplyResourceContractTypeNorm[] Norm { + get { + return this.normField; + } + set { + this.normField = value; + this.RaisePropertyChanged("Norm"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeIsContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractNumberField; + + private System.DateTime signingDateField; + + private System.DateTime effectiveDateField; + + private AttachmentType[] contractAttachmentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractNumber { + get { + return this.contractNumberField; + } + set { + this.contractNumberField = value; + this.RaisePropertyChanged("ContractNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime SigningDate { + get { + return this.signingDateField; + } + set { + this.signingDateField = value; + this.RaisePropertyChanged("SigningDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EffectiveDate { + get { + return this.effectiveDateField; + } + set { + this.effectiveDateField = value; + this.RaisePropertyChanged("EffectiveDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractAttachment", Order=3)] + public AttachmentType[] ContractAttachment { + get { + return this.contractAttachmentField; + } + set { + this.contractAttachmentField = value; + this.RaisePropertyChanged("ContractAttachment"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeIsNotContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractNumberField; + + private System.DateTime signingDateField; + + private bool signingDateFieldSpecified; + + private System.DateTime effectiveDateField; + + private bool effectiveDateFieldSpecified; + + private AttachmentType[] contractAttachmentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractNumber { + get { + return this.contractNumberField; + } + set { + this.contractNumberField = value; + this.RaisePropertyChanged("ContractNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime SigningDate { + get { + return this.signingDateField; + } + set { + this.signingDateField = value; + this.RaisePropertyChanged("SigningDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool SigningDateSpecified { + get { + return this.signingDateFieldSpecified; + } + set { + this.signingDateFieldSpecified = value; + this.RaisePropertyChanged("SigningDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EffectiveDate { + get { + return this.effectiveDateField; + } + set { + this.effectiveDateField = value; + this.RaisePropertyChanged("EffectiveDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EffectiveDateSpecified { + get { + return this.effectiveDateFieldSpecified; + } + set { + this.effectiveDateFieldSpecified = value; + this.RaisePropertyChanged("EffectiveDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractAttachment", Order=3)] + public AttachmentType[] ContractAttachment { + get { + return this.contractAttachmentField; + } + set { + this.contractAttachmentField = value; + this.RaisePropertyChanged("ContractAttachment"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType9 { + + /// + AutomaticRollOverOneYear, + + /// + ComptetionDate, + + /// + IndefiniteTerm, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypePeriod : object, System.ComponentModel.INotifyPropertyChanged { + + private SupplyResourceContractTypePeriodStart startField; + + private SupplyResourceContractTypePeriodEnd endField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SupplyResourceContractTypePeriodStart Start { + get { + return this.startField; + } + set { + this.startField = value; + this.RaisePropertyChanged("Start"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public SupplyResourceContractTypePeriodEnd End { + get { + return this.endField; + } + set { + this.endField = value; + this.RaisePropertyChanged("End"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypePeriodStart : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte startDateField; + + private bool nextMonthField; + + private bool nextMonthFieldSpecified; + + public SupplyResourceContractTypePeriodStart() { + this.nextMonthField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte StartDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("StartDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool NextMonth { + get { + return this.nextMonthField; + } + set { + this.nextMonthField = value; + this.RaisePropertyChanged("NextMonth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NextMonthSpecified { + get { + return this.nextMonthFieldSpecified; + } + set { + this.nextMonthFieldSpecified = value; + this.RaisePropertyChanged("NextMonthSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypePeriodEnd : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte endDateField; + + private bool nextMonthField; + + private bool nextMonthFieldSpecified; + + public SupplyResourceContractTypePeriodEnd() { + this.nextMonthField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool NextMonth { + get { + return this.nextMonthField; + } + set { + this.nextMonthField = value; + this.RaisePropertyChanged("NextMonth"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NextMonthSpecified { + get { + return this.nextMonthFieldSpecified; + } + set { + this.nextMonthFieldSpecified = value; + this.RaisePropertyChanged("NextMonthSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeApartmentBuildingOwner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(DRSOIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoData", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RegOrg", typeof(DRSORegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeApartmentBuildingRepresentativeOwner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(DRSOIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoData", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RegOrg", typeof(DRSORegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeApartmentBuildingSoleOwner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(DRSOIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoData", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RegOrg", typeof(DRSORegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeLivingHouseOwner : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Ind", typeof(DRSOIndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("NoData", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RegOrg", typeof(DRSORegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeOrganization : RegOrgType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractTypePlannedVolumeType { + + /// + D, + + /// + O, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeContractSubject : ContractSubjectType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractTypeCountingResource { + + /// + R, + + /// + P, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractTypeSpecifyingQualityIndicators { + + /// + D, + + /// + O, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeObjectAddress : ObjectAddressType { + + private string transportGUIDField; + + private SupplyResourceContractTypeObjectAddressPair[] pairField; + + private bool noConnectionToWaterSupplyField; + + private bool noConnectionToWaterSupplyFieldSpecified; + + private SupplyResourceContractTypeObjectAddressPlannedVolume[] plannedVolumeField; + + private SupplyResourceContractTypeObjectAddressCountingResource countingResourceField; + + private bool countingResourceFieldSpecified; + + private bool meteringDeviceInformationField; + + private bool meteringDeviceInformationFieldSpecified; + + public SupplyResourceContractTypeObjectAddress() { + this.noConnectionToWaterSupplyField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Pair", Order=1)] + public SupplyResourceContractTypeObjectAddressPair[] Pair { + get { + return this.pairField; + } + set { + this.pairField = value; + this.RaisePropertyChanged("Pair"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool NoConnectionToWaterSupply { + get { + return this.noConnectionToWaterSupplyField; + } + set { + this.noConnectionToWaterSupplyField = value; + this.RaisePropertyChanged("NoConnectionToWaterSupply"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NoConnectionToWaterSupplySpecified { + get { + return this.noConnectionToWaterSupplyFieldSpecified; + } + set { + this.noConnectionToWaterSupplyFieldSpecified = value; + this.RaisePropertyChanged("NoConnectionToWaterSupplySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("PlannedVolume", Order=3)] + public SupplyResourceContractTypeObjectAddressPlannedVolume[] PlannedVolume { + get { + return this.plannedVolumeField; + } + set { + this.plannedVolumeField = value; + this.RaisePropertyChanged("PlannedVolume"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public SupplyResourceContractTypeObjectAddressCountingResource CountingResource { + get { + return this.countingResourceField; + } + set { + this.countingResourceField = value; + this.RaisePropertyChanged("CountingResource"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CountingResourceSpecified { + get { + return this.countingResourceFieldSpecified; + } + set { + this.countingResourceFieldSpecified = value; + this.RaisePropertyChanged("CountingResourceSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool MeteringDeviceInformation { + get { + return this.meteringDeviceInformationField; + } + set { + this.meteringDeviceInformationField = value; + this.RaisePropertyChanged("MeteringDeviceInformation"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MeteringDeviceInformationSpecified { + get { + return this.meteringDeviceInformationFieldSpecified; + } + set { + this.meteringDeviceInformationFieldSpecified = value; + this.RaisePropertyChanged("MeteringDeviceInformationSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeObjectAddressPair : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private System.DateTime startSupplyDateField; + + private System.DateTime endSupplyDateField; + + private bool endSupplyDateFieldSpecified; + + private SupplyResourceContractTypeObjectAddressPairHeatingSystemType heatingSystemTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime StartSupplyDate { + get { + return this.startSupplyDateField; + } + set { + this.startSupplyDateField = value; + this.RaisePropertyChanged("StartSupplyDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EndSupplyDate { + get { + return this.endSupplyDateField; + } + set { + this.endSupplyDateField = value; + this.RaisePropertyChanged("EndSupplyDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EndSupplyDateSpecified { + get { + return this.endSupplyDateFieldSpecified; + } + set { + this.endSupplyDateFieldSpecified = value; + this.RaisePropertyChanged("EndSupplyDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public SupplyResourceContractTypeObjectAddressPairHeatingSystemType HeatingSystemType { + get { + return this.heatingSystemTypeField; + } + set { + this.heatingSystemTypeField = value; + this.RaisePropertyChanged("HeatingSystemType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeObjectAddressPairHeatingSystemType : object, System.ComponentModel.INotifyPropertyChanged { + + private SupplyResourceContractTypeObjectAddressPairHeatingSystemTypeOpenOrNot openOrNotField; + + private SupplyResourceContractTypeObjectAddressPairHeatingSystemTypeCentralizedOrNot centralizedOrNotField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SupplyResourceContractTypeObjectAddressPairHeatingSystemTypeOpenOrNot OpenOrNot { + get { + return this.openOrNotField; + } + set { + this.openOrNotField = value; + this.RaisePropertyChanged("OpenOrNot"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public SupplyResourceContractTypeObjectAddressPairHeatingSystemTypeCentralizedOrNot CentralizedOrNot { + get { + return this.centralizedOrNotField; + } + set { + this.centralizedOrNotField = value; + this.RaisePropertyChanged("CentralizedOrNot"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractTypeObjectAddressPairHeatingSystemTypeOpenOrNot { + + /// + Opened, + + /// + Closed, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractTypeObjectAddressPairHeatingSystemTypeCentralizedOrNot { + + /// + Centralized, + + /// + Decentralized, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeObjectAddressPlannedVolume : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private decimal volumeField; + + private string unitField; + + private string feedingModeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Volume { + get { + return this.volumeField; + } + set { + this.volumeField = value; + this.RaisePropertyChanged("Volume"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Unit { + get { + return this.unitField; + } + set { + this.unitField = value; + this.RaisePropertyChanged("Unit"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string FeedingMode { + get { + return this.feedingModeField; + } + set { + this.feedingModeField = value; + this.RaisePropertyChanged("FeedingMode"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractTypeObjectAddressCountingResource { + + /// + R, + + /// + P, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeQuality : object, System.ComponentModel.INotifyPropertyChanged { + + private string addressObjectKeyField; + + private string pairKeyField; + + private nsiRef qualityIndicatorField; + + private SupplyResourceContractTypeQualityIndicatorValue indicatorValueField; + + private string additionalInformationField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string AddressObjectKey { + get { + return this.addressObjectKeyField; + } + set { + this.addressObjectKeyField = value; + this.RaisePropertyChanged("AddressObjectKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef QualityIndicator { + get { + return this.qualityIndicatorField; + } + set { + this.qualityIndicatorField = value; + this.RaisePropertyChanged("QualityIndicator"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public SupplyResourceContractTypeQualityIndicatorValue IndicatorValue { + get { + return this.indicatorValueField; + } + set { + this.indicatorValueField = value; + this.RaisePropertyChanged("IndicatorValue"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string AdditionalInformation { + get { + return this.additionalInformationField; + } + set { + this.additionalInformationField = value; + this.RaisePropertyChanged("AdditionalInformation"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeQualityIndicatorValue : IndicatorValueType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeOtherQualityIndicator : object, System.ComponentModel.INotifyPropertyChanged { + + private string addressObjectKeyField; + + private string pairKeyField; + + private string indicatorNameField; + + private object[] itemsField; + + private ItemsChoiceType11[] itemsElementNameField; + + private string additionalInformationField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string AddressObjectKey { + get { + return this.addressObjectKeyField; + } + set { + this.addressObjectKeyField = value; + this.RaisePropertyChanged("AddressObjectKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string IndicatorName { + get { + return this.indicatorNameField; + } + set { + this.indicatorNameField = value; + this.RaisePropertyChanged("IndicatorName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OKEI", typeof(string), Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=3)] + [System.Xml.Serialization.XmlElementAttribute("Correspond", typeof(bool), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("EndRange", typeof(decimal), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("Number", typeof(decimal), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("StartRange", typeof(decimal), Order=3)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=4)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType11[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string AdditionalInformation { + get { + return this.additionalInformationField; + } + set { + this.additionalInformationField = value; + this.RaisePropertyChanged("AdditionalInformation"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType11 { + + /// + [System.Xml.Serialization.XmlEnumAttribute("http://dom.gosuslugi.ru/schema/integration/base/:OKEI")] + OKEI, + + /// + Correspond, + + /// + EndRange, + + /// + Number, + + /// + StartRange, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeTemperatureChart : object, System.ComponentModel.INotifyPropertyChanged { + + private string addressObjectKeyField; + + private int outsideTemperatureField; + + private decimal flowLineTemperatureField; + + private decimal oppositeLineTemperatureField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string AddressObjectKey { + get { + return this.addressObjectKeyField; + } + set { + this.addressObjectKeyField = value; + this.RaisePropertyChanged("AddressObjectKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public int OutsideTemperature { + get { + return this.outsideTemperatureField; + } + set { + this.outsideTemperatureField = value; + this.RaisePropertyChanged("OutsideTemperature"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal FlowLineTemperature { + get { + return this.flowLineTemperatureField; + } + set { + this.flowLineTemperatureField = value; + this.RaisePropertyChanged("FlowLineTemperature"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal OppositeLineTemperature { + get { + return this.oppositeLineTemperatureField; + } + set { + this.oppositeLineTemperatureField = value; + this.RaisePropertyChanged("OppositeLineTemperature"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeBillingDate : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte dateField; + + private SupplyResourceContractTypeBillingDateDateType dateTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public SupplyResourceContractTypeBillingDateDateType DateType { + get { + return this.dateTypeField; + } + set { + this.dateTypeField = value; + this.RaisePropertyChanged("DateType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractTypeBillingDateDateType { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypePaymentDate : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte dateField; + + private SupplyResourceContractTypePaymentDateDateType dateTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public SupplyResourceContractTypePaymentDateDateType DateType { + get { + return this.dateTypeField; + } + set { + this.dateTypeField = value; + this.RaisePropertyChanged("DateType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractTypePaymentDateDateType { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeProvidingInformationDate : object, System.ComponentModel.INotifyPropertyChanged { + + private sbyte dateField; + + private SupplyResourceContractTypeProvidingInformationDateDateType dateTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public SupplyResourceContractTypeProvidingInformationDateDateType DateType { + get { + return this.dateTypeField; + } + set { + this.dateTypeField = value; + this.RaisePropertyChanged("DateType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractTypeProvidingInformationDateDateType { + + /// + C, + + /// + N, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum SupplyResourceContractTypeAccrualProcedure { + + /// + D, + + /// + O, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeTariff : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private string pairKeyField; + + private string priceGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute("AddressObjectKey", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ForAllAddressObjects", typeof(bool), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string PriceGUID { + get { + return this.priceGUIDField; + } + set { + this.priceGUIDField = value; + this.RaisePropertyChanged("PriceGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class SupplyResourceContractTypeNorm : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private string pairKeyField; + + private string normGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute("AddressObjectKey", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ForAllAddressObjects", typeof(bool), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string NormGUID { + get { + return this.normGUIDField; + } + set { + this.normGUIDField = value; + this.RaisePropertyChanged("NormGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PublicPropertyContractExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private string fIASHouseGuidField; + + private string contractNumberField; + + private System.DateTime dateField; + + private bool dateFieldSpecified; + + private System.DateTime startDateField; + + private bool startDateFieldSpecified; + + private System.DateTime endDateField; + + private bool endDateFieldSpecified; + + private string contractObjectField; + + private string commentsField; + + private decimal paymentField; + + private bool paymentFieldSpecified; + + private string moneySpentDirectionField; + + private AttachmentType[] contractAttachmentField; + + private PublicPropertyContractExportTypeRentAgrConfirmationDocument[] rentAgrConfirmationDocumentField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Entrepreneur", typeof(IndType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Organization", typeof(RegOrgType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ContractNumber { + get { + return this.contractNumberField; + } + set { + this.contractNumberField = value; + this.RaisePropertyChanged("ContractNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool DateSpecified { + get { + return this.dateFieldSpecified; + } + set { + this.dateFieldSpecified = value; + this.RaisePropertyChanged("DateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=4)] + public System.DateTime StartDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("StartDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StartDateSpecified { + get { + return this.startDateFieldSpecified; + } + set { + this.startDateFieldSpecified = value; + this.RaisePropertyChanged("StartDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=5)] + public System.DateTime EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EndDateSpecified { + get { + return this.endDateFieldSpecified; + } + set { + this.endDateFieldSpecified = value; + this.RaisePropertyChanged("EndDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string ContractObject { + get { + return this.contractObjectField; + } + set { + this.contractObjectField = value; + this.RaisePropertyChanged("ContractObject"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public string Comments { + get { + return this.commentsField; + } + set { + this.commentsField = value; + this.RaisePropertyChanged("Comments"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public decimal Payment { + get { + return this.paymentField; + } + set { + this.paymentField = value; + this.RaisePropertyChanged("Payment"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool PaymentSpecified { + get { + return this.paymentFieldSpecified; + } + set { + this.paymentFieldSpecified = value; + this.RaisePropertyChanged("PaymentSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public string MoneySpentDirection { + get { + return this.moneySpentDirectionField; + } + set { + this.moneySpentDirectionField = value; + this.RaisePropertyChanged("MoneySpentDirection"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractAttachment", Order=10)] + public AttachmentType[] ContractAttachment { + get { + return this.contractAttachmentField; + } + set { + this.contractAttachmentField = value; + this.RaisePropertyChanged("ContractAttachment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("RentAgrConfirmationDocument", Order=11)] + public PublicPropertyContractExportTypeRentAgrConfirmationDocument[] RentAgrConfirmationDocument { + get { + return this.rentAgrConfirmationDocumentField; + } + set { + this.rentAgrConfirmationDocumentField = value; + this.RaisePropertyChanged("RentAgrConfirmationDocument"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PublicPropertyContractExportTypeRentAgrConfirmationDocument : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ProtocolGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ProtocolMeetingOwners", typeof(PublicPropertyContractExportTypeRentAgrConfirmationDocumentProtocolMeetingOwners), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PublicPropertyContractExportTypeRentAgrConfirmationDocumentProtocolMeetingOwners : object, System.ComponentModel.INotifyPropertyChanged { + + private string protocolNumField; + + private System.DateTime protocolDateField; + + private AttachmentType[] trustDocAttachmentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ProtocolNum { + get { + return this.protocolNumField; + } + set { + this.protocolNumField = value; + this.RaisePropertyChanged("ProtocolNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime ProtocolDate { + get { + return this.protocolDateField; + } + set { + this.protocolDateField = value; + this.RaisePropertyChanged("ProtocolDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TrustDocAttachment", Order=2)] + public AttachmentType[] TrustDocAttachment { + get { + return this.trustDocAttachmentField; + } + set { + this.trustDocAttachmentField = value; + this.RaisePropertyChanged("TrustDocAttachment"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChRequestCriteriaType : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType7[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("CharterGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CharterVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LastVersionOnly", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("SigningDate", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("UOGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType7[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType7 { + + /// + CharterGUID, + + /// + CharterVersionGUID, + + /// + ContractGUID, + + /// + ContractVersionGUID, + + /// + FIASHouseGuid, + + /// + LastVersionOnly, + + /// + SigningDate, + + /// + UOGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterPaymentsInfoType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime beginDateField; + + private System.DateTime endDateField; + + private CharterPaymentsInfoTypeMaintenanceAndRepairsForMembers maintenanceAndRepairsForMembersField; + + private CharterPaymentsInfoTypeMaintenanceAndRepairsForNonMembersInfo maintenanceAndRepairsForNonMembersInfoField; + + private CharterPaymentsInfoTypeServicePayment[] servicePaymentField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime BeginDate { + get { + return this.beginDateField; + } + set { + this.beginDateField = value; + this.RaisePropertyChanged("BeginDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public CharterPaymentsInfoTypeMaintenanceAndRepairsForMembers MaintenanceAndRepairsForMembers { + get { + return this.maintenanceAndRepairsForMembersField; + } + set { + this.maintenanceAndRepairsForMembersField = value; + this.RaisePropertyChanged("MaintenanceAndRepairsForMembers"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public CharterPaymentsInfoTypeMaintenanceAndRepairsForNonMembersInfo MaintenanceAndRepairsForNonMembersInfo { + get { + return this.maintenanceAndRepairsForNonMembersInfoField; + } + set { + this.maintenanceAndRepairsForNonMembersInfoField = value; + this.RaisePropertyChanged("MaintenanceAndRepairsForNonMembersInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ServicePayment", Order=4)] + public CharterPaymentsInfoTypeServicePayment[] ServicePayment { + get { + return this.servicePaymentField; + } + set { + this.servicePaymentField = value; + this.RaisePropertyChanged("ServicePayment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AllContractObjects", typeof(bool), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("ContractObjectVersionGUID", typeof(string), Order=5)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterPaymentsInfoTypeMaintenanceAndRepairsForMembers : object, System.ComponentModel.INotifyPropertyChanged { + + private decimal maintenanceAndRepairsForMembersPaymentSizeField; + + private AttachmentType[] maintenanceAndRepairsForMembersProtocolField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public decimal MaintenanceAndRepairsForMembersPaymentSize { + get { + return this.maintenanceAndRepairsForMembersPaymentSizeField; + } + set { + this.maintenanceAndRepairsForMembersPaymentSizeField = value; + this.RaisePropertyChanged("MaintenanceAndRepairsForMembersPaymentSize"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("MaintenanceAndRepairsForMembersProtocol", Order=1)] + public AttachmentType[] MaintenanceAndRepairsForMembersProtocol { + get { + return this.maintenanceAndRepairsForMembersProtocolField; + } + set { + this.maintenanceAndRepairsForMembersProtocolField = value; + this.RaisePropertyChanged("MaintenanceAndRepairsForMembersProtocol"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterPaymentsInfoTypeMaintenanceAndRepairsForNonMembersInfo : object, System.ComponentModel.INotifyPropertyChanged { + + private decimal maintenanceAndRepairsForNonMembersPaymentSizeField; + + private AttachmentType[] maintenanceAndRepairsForNonMembersProtocolField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public decimal MaintenanceAndRepairsForNonMembersPaymentSize { + get { + return this.maintenanceAndRepairsForNonMembersPaymentSizeField; + } + set { + this.maintenanceAndRepairsForNonMembersPaymentSizeField = value; + this.RaisePropertyChanged("MaintenanceAndRepairsForNonMembersPaymentSize"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("MaintenanceAndRepairsForNonMembersProtocol", Order=1)] + public AttachmentType[] MaintenanceAndRepairsForNonMembersProtocol { + get { + return this.maintenanceAndRepairsForNonMembersProtocolField; + } + set { + this.maintenanceAndRepairsForNonMembersProtocolField = value; + this.RaisePropertyChanged("MaintenanceAndRepairsForNonMembersProtocol"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterPaymentsInfoTypeServicePayment : object, System.ComponentModel.INotifyPropertyChanged { + + private nsiRef serviceField; + + private decimal servicePaymentSizeField; + + private bool servicePaymentSizeFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef Service { + get { + return this.serviceField; + } + set { + this.serviceField = value; + this.RaisePropertyChanged("Service"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal ServicePaymentSize { + get { + return this.servicePaymentSizeField; + } + set { + this.servicePaymentSizeField = value; + this.RaisePropertyChanged("ServicePaymentSize"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ServicePaymentSizeSpecified { + get { + return this.servicePaymentSizeFieldSpecified; + } + set { + this.servicePaymentSizeFieldSpecified = value; + this.RaisePropertyChanged("ServicePaymentSizeSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterDateDetailsExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private CharterDateDetailsExportTypePeriodMetering periodMeteringField; + + private CharterDateDetailsExportTypePaymentDocumentInterval paymentDocumentIntervalField; + + private CharterDateDetailsExportTypePaymentInterval paymentIntervalField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public CharterDateDetailsExportTypePeriodMetering PeriodMetering { + get { + return this.periodMeteringField; + } + set { + this.periodMeteringField = value; + this.RaisePropertyChanged("PeriodMetering"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public CharterDateDetailsExportTypePaymentDocumentInterval PaymentDocumentInterval { + get { + return this.paymentDocumentIntervalField; + } + set { + this.paymentDocumentIntervalField = value; + this.RaisePropertyChanged("PaymentDocumentInterval"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public CharterDateDetailsExportTypePaymentInterval PaymentInterval { + get { + return this.paymentIntervalField; + } + set { + this.paymentIntervalField = value; + this.RaisePropertyChanged("PaymentInterval"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterDateDetailsExportTypePeriodMetering : object, System.ComponentModel.INotifyPropertyChanged { + + private DaySelectionExportType startDateField; + + private DaySelectionExportType endDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public DaySelectionExportType StartDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("StartDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public DaySelectionExportType EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DaySelectionExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private bool isNextMonthField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Date", typeof(sbyte), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LastDay", typeof(bool), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool IsNextMonth { + get { + return this.isNextMonthField; + } + set { + this.isNextMonthField = value; + this.RaisePropertyChanged("IsNextMonth"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterDateDetailsExportTypePaymentDocumentInterval : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private bool item1Field; + + private Item1ChoiceType2 item1ElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LastDay", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(sbyte), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CurrentMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NextMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("Item1ElementName")] + public bool Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public Item1ChoiceType2 Item1ElementName { + get { + return this.item1ElementNameField; + } + set { + this.item1ElementNameField = value; + this.RaisePropertyChanged("Item1ElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum Item1ChoiceType2 { + + /// + CurrentMounth, + + /// + NextMounth, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterDateDetailsExportTypePaymentInterval : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private bool item1Field; + + private Item1ChoiceType3 item1ElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LastDay", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(sbyte), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CurrentMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NextMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("Item1ElementName")] + public bool Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public Item1ChoiceType3 Item1ElementName { + get { + return this.item1ElementNameField; + } + set { + this.item1ElementNameField = value; + this.RaisePropertyChanged("Item1ElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum Item1ChoiceType3 { + + /// + CurrentMounth, + + /// + NextMounth, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime dateField; + + private CharterDateDetailsExportType dateDetailsField; + + private CharterExportTypeMeetingProtocol meetingProtocolField; + + private bool noCharterApproveProtocolField; + + private bool noCharterApproveProtocolFieldSpecified; + + private AttachmentType[] attachmentCharterField; + + private bool automaticRollOverOneYearField; + + private bool automaticRollOverOneYearFieldSpecified; + + private bool indicationsAnyDayField; + + private bool indicationsAnyDayFieldSpecified; + + public CharterExportType() { + this.noCharterApproveProtocolField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime Date { + get { + return this.dateField; + } + set { + this.dateField = value; + this.RaisePropertyChanged("Date"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public CharterDateDetailsExportType DateDetails { + get { + return this.dateDetailsField; + } + set { + this.dateDetailsField = value; + this.RaisePropertyChanged("DateDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public CharterExportTypeMeetingProtocol MeetingProtocol { + get { + return this.meetingProtocolField; + } + set { + this.meetingProtocolField = value; + this.RaisePropertyChanged("MeetingProtocol"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public bool NoCharterApproveProtocol { + get { + return this.noCharterApproveProtocolField; + } + set { + this.noCharterApproveProtocolField = value; + this.RaisePropertyChanged("NoCharterApproveProtocol"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NoCharterApproveProtocolSpecified { + get { + return this.noCharterApproveProtocolFieldSpecified; + } + set { + this.noCharterApproveProtocolFieldSpecified = value; + this.RaisePropertyChanged("NoCharterApproveProtocolSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AttachmentCharter", Order=4)] + public AttachmentType[] AttachmentCharter { + get { + return this.attachmentCharterField; + } + set { + this.attachmentCharterField = value; + this.RaisePropertyChanged("AttachmentCharter"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool AutomaticRollOverOneYear { + get { + return this.automaticRollOverOneYearField; + } + set { + this.automaticRollOverOneYearField = value; + this.RaisePropertyChanged("AutomaticRollOverOneYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AutomaticRollOverOneYearSpecified { + get { + return this.automaticRollOverOneYearFieldSpecified; + } + set { + this.automaticRollOverOneYearFieldSpecified = value; + this.RaisePropertyChanged("AutomaticRollOverOneYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public bool IndicationsAnyDay { + get { + return this.indicationsAnyDayField; + } + set { + this.indicationsAnyDayField = value; + this.RaisePropertyChanged("IndicationsAnyDay"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IndicationsAnyDaySpecified { + get { + return this.indicationsAnyDayFieldSpecified; + } + set { + this.indicationsAnyDayFieldSpecified = value; + this.RaisePropertyChanged("IndicationsAnyDaySpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class CharterExportTypeMeetingProtocol : object, System.ComponentModel.INotifyPropertyChanged { + + private AttachmentType[] protocolMeetingOwnersField; + + private string[] votingProtocolGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ProtocolMeetingOwners", Order=0)] + public AttachmentType[] ProtocolMeetingOwners { + get { + return this.protocolMeetingOwnersField; + } + set { + this.protocolMeetingOwnersField = value; + this.RaisePropertyChanged("ProtocolMeetingOwners"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("VotingProtocolGUID", Order=1)] + public string[] VotingProtocolGUID { + get { + return this.votingProtocolGUIDField; + } + set { + this.votingProtocolGUIDField = value; + this.RaisePropertyChanged("VotingProtocolGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractPaymentsInfoType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime beginDateField; + + private System.DateTime endDateField; + + private decimal houseManagementPaymentSizeField; + + private object[] itemsField; + + private ContractPaymentsInfoTypeServicePayment[] servicePaymentField; + + private ContractPaymentsInfoTypeType typeField; + + private string contractObjectVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime BeginDate { + get { + return this.beginDateField; + } + set { + this.beginDateField = value; + this.RaisePropertyChanged("BeginDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal HouseManagementPaymentSize { + get { + return this.houseManagementPaymentSizeField; + } + set { + this.houseManagementPaymentSizeField = value; + this.RaisePropertyChanged("HouseManagementPaymentSize"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Protocol", typeof(AttachmentType), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("VotingProtocolGUID", typeof(string), Order=3)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ServicePayment", Order=4)] + public ContractPaymentsInfoTypeServicePayment[] ServicePayment { + get { + return this.servicePaymentField; + } + set { + this.servicePaymentField = value; + this.RaisePropertyChanged("ServicePayment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public ContractPaymentsInfoTypeType Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string ContractObjectVersionGUID { + get { + return this.contractObjectVersionGUIDField; + } + set { + this.contractObjectVersionGUIDField = value; + this.RaisePropertyChanged("ContractObjectVersionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractPaymentsInfoTypeServicePayment : object, System.ComponentModel.INotifyPropertyChanged { + + private nsiRef serviceField; + + private decimal servicePaymentSizeField; + + private bool servicePaymentSizeFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef Service { + get { + return this.serviceField; + } + set { + this.serviceField = value; + this.RaisePropertyChanged("Service"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal ServicePaymentSize { + get { + return this.servicePaymentSizeField; + } + set { + this.servicePaymentSizeField = value; + this.RaisePropertyChanged("ServicePaymentSize"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ServicePaymentSizeSpecified { + get { + return this.servicePaymentSizeFieldSpecified; + } + set { + this.servicePaymentSizeFieldSpecified = value; + this.RaisePropertyChanged("ServicePaymentSizeSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ContractPaymentsInfoTypeType { + + /// + P, + + /// + C, + + /// + A, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractServiceType : object, System.ComponentModel.INotifyPropertyChanged { + + private nsiRef serviceTypeField; + + private System.DateTime startDateField; + + private System.DateTime endDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef ServiceType { + get { + return this.serviceTypeField; + } + set { + this.serviceTypeField = value; + this.RaisePropertyChanged("ServiceType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime StartDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("StartDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BaseServiceType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Agreement", typeof(AttachmentType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CurrentDoc", typeof(bool), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ManageObjectType : object, System.ComponentModel.INotifyPropertyChanged { + + private string fIASHouseGuidField; + + private System.DateTime startDateField; + + private System.DateTime endDateField; + + private bool endDateFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime StartDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("StartDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool EndDateSpecified { + get { + return this.endDateFieldSpecified; + } + set { + this.endDateFieldSpecified = value; + this.RaisePropertyChanged("EndDateSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ImprintAgreementExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private string agreementNumberField; + + private System.DateTime agreementDateField; + + private bool agreementDateFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string AgreementNumber { + get { + return this.agreementNumberField; + } + set { + this.agreementNumberField = value; + this.RaisePropertyChanged("AgreementNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime AgreementDate { + get { + return this.agreementDateField; + } + set { + this.agreementDateField = value; + this.RaisePropertyChanged("AgreementDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AgreementDateSpecified { + get { + return this.agreementDateFieldSpecified; + } + set { + this.agreementDateFieldSpecified = value; + this.RaisePropertyChanged("AgreementDateSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DateDetailsExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private DateDetailsExportTypePeriodMetering periodMeteringField; + + private DateDetailsExportTypePaymentDocumentInterval paymentDocumentIntervalField; + + private DateDetailsExportTypePaymentInterval paymentIntervalField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public DateDetailsExportTypePeriodMetering PeriodMetering { + get { + return this.periodMeteringField; + } + set { + this.periodMeteringField = value; + this.RaisePropertyChanged("PeriodMetering"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public DateDetailsExportTypePaymentDocumentInterval PaymentDocumentInterval { + get { + return this.paymentDocumentIntervalField; + } + set { + this.paymentDocumentIntervalField = value; + this.RaisePropertyChanged("PaymentDocumentInterval"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public DateDetailsExportTypePaymentInterval PaymentInterval { + get { + return this.paymentIntervalField; + } + set { + this.paymentIntervalField = value; + this.RaisePropertyChanged("PaymentInterval"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DateDetailsExportTypePeriodMetering : object, System.ComponentModel.INotifyPropertyChanged { + + private DaySelectionExportType startDateField; + + private DaySelectionExportType endDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public DaySelectionExportType StartDate { + get { + return this.startDateField; + } + set { + this.startDateField = value; + this.RaisePropertyChanged("StartDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public DaySelectionExportType EndDate { + get { + return this.endDateField; + } + set { + this.endDateField = value; + this.RaisePropertyChanged("EndDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DateDetailsExportTypePaymentDocumentInterval : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private bool item1Field; + + private Item1ChoiceType item1ElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LastDay", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(sbyte), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CurrentMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NextMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("Item1ElementName")] + public bool Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public Item1ChoiceType Item1ElementName { + get { + return this.item1ElementNameField; + } + set { + this.item1ElementNameField = value; + this.RaisePropertyChanged("Item1ElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum Item1ChoiceType { + + /// + CurrentMounth, + + /// + NextMounth, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DateDetailsExportTypePaymentInterval : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private bool item1Field; + + private Item1ChoiceType1 item1ElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LastDay", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(sbyte), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CurrentMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NextMounth", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("Item1ElementName")] + public bool Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public Item1ChoiceType1 Item1ElementName { + get { + return this.item1ElementNameField; + } + set { + this.item1ElementNameField = value; + this.RaisePropertyChanged("Item1ElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum Item1ChoiceType1 { + + /// + CurrentMounth, + + /// + NextMounth, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private string docNumField; + + private System.DateTime signingDateField; + + private System.DateTime effectiveDateField; + + private System.DateTime planDateComptetionField; + + private ContractExportTypeValidity validityField; + + private object itemField; + + private ItemChoiceType3 itemElementNameField; + + private ContractExportTypeProtocol protocolField; + + private nsiRef contractBaseField; + + private DateDetailsExportType dateDetailsField; + + private AttachmentType[] contractAttachmentField; + + private ContractExportTypeAgreementAttachment[] agreementAttachmentField; + + private AttachmentType[] signedOwnersField; + + private AttachmentType[] commissioningPermitAgreementField; + + private AttachmentType[] charterField; + + private AttachmentType[] localGovernmentDecisionField; + + private string registryDecisionIDField; + + private bool automaticRollOverOneYearField; + + private bool automaticRollOverOneYearFieldSpecified; + + private bool indicationsAnyDayField; + + private bool indicationsAnyDayFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string DocNum { + get { + return this.docNumField; + } + set { + this.docNumField = value; + this.RaisePropertyChanged("DocNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime SigningDate { + get { + return this.signingDateField; + } + set { + this.signingDateField = value; + this.RaisePropertyChanged("SigningDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime EffectiveDate { + get { + return this.effectiveDateField; + } + set { + this.effectiveDateField = value; + this.RaisePropertyChanged("EffectiveDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime PlanDateComptetion { + get { + return this.planDateComptetionField; + } + set { + this.planDateComptetionField = value; + this.RaisePropertyChanged("PlanDateComptetion"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public ContractExportTypeValidity Validity { + get { + return this.validityField; + } + set { + this.validityField = value; + this.RaisePropertyChanged("Validity"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("BuildingOwner", typeof(RegOrgType), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("CompetentAuthority", typeof(RegOrgType), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("Cooperative", typeof(RegOrgType), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("MunicipalHousing", typeof(RegOrgType), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("Owners", typeof(bool), Order=5)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType3 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public ContractExportTypeProtocol Protocol { + get { + return this.protocolField; + } + set { + this.protocolField = value; + this.RaisePropertyChanged("Protocol"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public nsiRef ContractBase { + get { + return this.contractBaseField; + } + set { + this.contractBaseField = value; + this.RaisePropertyChanged("ContractBase"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public DateDetailsExportType DateDetails { + get { + return this.dateDetailsField; + } + set { + this.dateDetailsField = value; + this.RaisePropertyChanged("DateDetails"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractAttachment", Order=10)] + public AttachmentType[] ContractAttachment { + get { + return this.contractAttachmentField; + } + set { + this.contractAttachmentField = value; + this.RaisePropertyChanged("ContractAttachment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AgreementAttachment", Order=11)] + public ContractExportTypeAgreementAttachment[] AgreementAttachment { + get { + return this.agreementAttachmentField; + } + set { + this.agreementAttachmentField = value; + this.RaisePropertyChanged("AgreementAttachment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("SignedOwners", Order=12)] + public AttachmentType[] SignedOwners { + get { + return this.signedOwnersField; + } + set { + this.signedOwnersField = value; + this.RaisePropertyChanged("SignedOwners"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CommissioningPermitAgreement", Order=13)] + public AttachmentType[] CommissioningPermitAgreement { + get { + return this.commissioningPermitAgreementField; + } + set { + this.commissioningPermitAgreementField = value; + this.RaisePropertyChanged("CommissioningPermitAgreement"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Charter", Order=14)] + public AttachmentType[] Charter { + get { + return this.charterField; + } + set { + this.charterField = value; + this.RaisePropertyChanged("Charter"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LocalGovernmentDecision", Order=15)] + public AttachmentType[] LocalGovernmentDecision { + get { + return this.localGovernmentDecisionField; + } + set { + this.localGovernmentDecisionField = value; + this.RaisePropertyChanged("LocalGovernmentDecision"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=16)] + public string RegistryDecisionID { + get { + return this.registryDecisionIDField; + } + set { + this.registryDecisionIDField = value; + this.RaisePropertyChanged("RegistryDecisionID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=17)] + public bool AutomaticRollOverOneYear { + get { + return this.automaticRollOverOneYearField; + } + set { + this.automaticRollOverOneYearField = value; + this.RaisePropertyChanged("AutomaticRollOverOneYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AutomaticRollOverOneYearSpecified { + get { + return this.automaticRollOverOneYearFieldSpecified; + } + set { + this.automaticRollOverOneYearFieldSpecified = value; + this.RaisePropertyChanged("AutomaticRollOverOneYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=18)] + public bool IndicationsAnyDay { + get { + return this.indicationsAnyDayField; + } + set { + this.indicationsAnyDayField = value; + this.RaisePropertyChanged("IndicationsAnyDay"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IndicationsAnyDaySpecified { + get { + return this.indicationsAnyDayFieldSpecified; + } + set { + this.indicationsAnyDayFieldSpecified = value; + this.RaisePropertyChanged("IndicationsAnyDaySpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractExportTypeValidity : object, System.ComponentModel.INotifyPropertyChanged { + + private string monthField; + + private string yearField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)] + public string Month { + get { + return this.monthField; + } + set { + this.monthField = value; + this.RaisePropertyChanged("Month"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=1)] + public string Year { + get { + return this.yearField; + } + set { + this.yearField = value; + this.RaisePropertyChanged("Year"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType3 { + + /// + BuildingOwner, + + /// + CompetentAuthority, + + /// + Cooperative, + + /// + MunicipalHousing, + + /// + Owners, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractExportTypeProtocol : object, System.ComponentModel.INotifyPropertyChanged { + + private ContractExportTypeProtocolProtocolAdd protocolAddField; + + private string[] votingProtocolGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ContractExportTypeProtocolProtocolAdd ProtocolAdd { + get { + return this.protocolAddField; + } + set { + this.protocolAddField = value; + this.RaisePropertyChanged("ProtocolAdd"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("VotingProtocolGUID", Order=1)] + public string[] VotingProtocolGUID { + get { + return this.votingProtocolGUIDField; + } + set { + this.votingProtocolGUIDField = value; + this.RaisePropertyChanged("VotingProtocolGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractExportTypeProtocolProtocolAdd : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType6[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ProtocolBuildingOwner", typeof(AttachmentType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ProtocolMeetingBoard", typeof(AttachmentType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ProtocolMeetingOwners", typeof(AttachmentType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ProtocolOK", typeof(AttachmentType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("PurchaseNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType6[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType6 { + + /// + ProtocolBuildingOwner, + + /// + ProtocolMeetingBoard, + + /// + ProtocolMeetingOwners, + + /// + ProtocolOK, + + /// + PurchaseNumber, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ContractExportTypeAgreementAttachment : AttachmentType { + + private ImprintAgreementExportType imprintAgreementField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ImprintAgreementExportType ImprintAgreement { + get { + return this.imprintAgreementField; + } + set { + this.imprintAgreementField = value; + this.RaisePropertyChanged("ImprintAgreement"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Charter", typeof(exportCAChResultTypeCharter), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Contract", typeof(exportCAChResultTypeContract), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeCharter : CharterExportType { + + private exportCAChResultTypeCharterTerminate terminateField; + + private CharterStatusExportType charterStatusField; + + private string charterGUIDField; + + private string charterVersionGUIDField; + + private exportCAChResultTypeCharterContractObject[] contractObjectField; + + private exportCAChResultTypeCharterCharterPaymentsInfo[] charterPaymentsInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public exportCAChResultTypeCharterTerminate Terminate { + get { + return this.terminateField; + } + set { + this.terminateField = value; + this.RaisePropertyChanged("Terminate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public CharterStatusExportType CharterStatus { + get { + return this.charterStatusField; + } + set { + this.charterStatusField = value; + this.RaisePropertyChanged("CharterStatus"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string CharterGUID { + get { + return this.charterGUIDField; + } + set { + this.charterGUIDField = value; + this.RaisePropertyChanged("CharterGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string CharterVersionGUID { + get { + return this.charterVersionGUIDField; + } + set { + this.charterVersionGUIDField = value; + this.RaisePropertyChanged("CharterVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractObject", Order=4)] + public exportCAChResultTypeCharterContractObject[] ContractObject { + get { + return this.contractObjectField; + } + set { + this.contractObjectField = value; + this.RaisePropertyChanged("ContractObject"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CharterPaymentsInfo", Order=5)] + public exportCAChResultTypeCharterCharterPaymentsInfo[] CharterPaymentsInfo { + get { + return this.charterPaymentsInfoField; + } + set { + this.charterPaymentsInfoField = value; + this.RaisePropertyChanged("CharterPaymentsInfo"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeCharterTerminate : TerminateType { + + private string reasonField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Reason { + get { + return this.reasonField; + } + set { + this.reasonField = value; + this.RaisePropertyChanged("Reason"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum CharterStatusExportType { + + /// + Annul, + + /// + ApprovalProcess, + + /// + Approved, + + /// + Project, + + /// + Rejected, + + /// + Reviewed, + + /// + Terminated, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeCharterContractObject : ManageObjectType { + + private string contractObjectVersionGUIDField; + + private BaseServiceType baseMServiceField; + + private exportCAChResultTypeCharterContractObjectHouseService[] houseServiceField; + + private exportCAChResultTypeCharterContractObjectAddService[] addServiceField; + + private exportCAChResultTypeCharterContractObjectExclusion exclusionField; + + private StatusMKDType statusObjectField; + + private bool statusObjectFieldSpecified; + + private bool isManagedByContractField; + + private bool isManagedByContractFieldSpecified; + + public exportCAChResultTypeCharterContractObject() { + this.isManagedByContractField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractObjectVersionGUID { + get { + return this.contractObjectVersionGUIDField; + } + set { + this.contractObjectVersionGUIDField = value; + this.RaisePropertyChanged("ContractObjectVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public BaseServiceType BaseMService { + get { + return this.baseMServiceField; + } + set { + this.baseMServiceField = value; + this.RaisePropertyChanged("BaseMService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("HouseService", Order=2)] + public exportCAChResultTypeCharterContractObjectHouseService[] HouseService { + get { + return this.houseServiceField; + } + set { + this.houseServiceField = value; + this.RaisePropertyChanged("HouseService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AddService", Order=3)] + public exportCAChResultTypeCharterContractObjectAddService[] AddService { + get { + return this.addServiceField; + } + set { + this.addServiceField = value; + this.RaisePropertyChanged("AddService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public exportCAChResultTypeCharterContractObjectExclusion Exclusion { + get { + return this.exclusionField; + } + set { + this.exclusionField = value; + this.RaisePropertyChanged("Exclusion"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public StatusMKDType StatusObject { + get { + return this.statusObjectField; + } + set { + this.statusObjectField = value; + this.RaisePropertyChanged("StatusObject"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StatusObjectSpecified { + get { + return this.statusObjectFieldSpecified; + } + set { + this.statusObjectFieldSpecified = value; + this.RaisePropertyChanged("StatusObjectSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public bool IsManagedByContract { + get { + return this.isManagedByContractField; + } + set { + this.isManagedByContractField = value; + this.RaisePropertyChanged("IsManagedByContract"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsManagedByContractSpecified { + get { + return this.isManagedByContractFieldSpecified; + } + set { + this.isManagedByContractFieldSpecified = value; + this.RaisePropertyChanged("IsManagedByContractSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeCharterContractObjectHouseService : ContractServiceType { + + private BaseServiceType baseServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseService { + get { + return this.baseServiceField; + } + set { + this.baseServiceField = value; + this.RaisePropertyChanged("BaseService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeCharterContractObjectAddService : ContractServiceType { + + private BaseServiceType baseServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseService { + get { + return this.baseServiceField; + } + set { + this.baseServiceField = value; + this.RaisePropertyChanged("BaseService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeCharterContractObjectExclusion : object, System.ComponentModel.INotifyPropertyChanged { + + private BaseServiceType baseExclusionField; + + private System.DateTime dateExclusionField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseExclusion { + get { + return this.baseExclusionField; + } + set { + this.baseExclusionField = value; + this.RaisePropertyChanged("BaseExclusion"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime DateExclusion { + get { + return this.dateExclusionField; + } + set { + this.dateExclusionField = value; + this.RaisePropertyChanged("DateExclusion"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum StatusMKDType { + + /// + Project, + + /// + Rejected, + + /// + ApprovalProcess, + + /// + Approved, + + /// + Locked, + + /// + Annul, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeCharterCharterPaymentsInfo : CharterPaymentsInfoType { + + private string charterPaymentsInfoVersionGUIDField; + + private exportCAChResultTypeCharterCharterPaymentsInfoStatus statusField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string CharterPaymentsInfoVersionGUID { + get { + return this.charterPaymentsInfoVersionGUIDField; + } + set { + this.charterPaymentsInfoVersionGUIDField = value; + this.RaisePropertyChanged("CharterPaymentsInfoVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public exportCAChResultTypeCharterCharterPaymentsInfoStatus Status { + get { + return this.statusField; + } + set { + this.statusField = value; + this.RaisePropertyChanged("Status"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportCAChResultTypeCharterCharterPaymentsInfoStatus { + + /// + P, + + /// + A, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeContract : ContractExportType { + + private exportCAChResultTypeContractTerminate terminateField; + + private ContractStatusExportType contractStatusField; + + private string contractGUIDField; + + private string contractVersionGUIDField; + + private exportCAChResultTypeContractContractObject[] contractObjectField; + + private exportCAChResultTypeContractContractPaymentsInfo[] contractPaymentsInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public exportCAChResultTypeContractTerminate Terminate { + get { + return this.terminateField; + } + set { + this.terminateField = value; + this.RaisePropertyChanged("Terminate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public ContractStatusExportType ContractStatus { + get { + return this.contractStatusField; + } + set { + this.contractStatusField = value; + this.RaisePropertyChanged("ContractStatus"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ContractGUID { + get { + return this.contractGUIDField; + } + set { + this.contractGUIDField = value; + this.RaisePropertyChanged("ContractGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string ContractVersionGUID { + get { + return this.contractVersionGUIDField; + } + set { + this.contractVersionGUIDField = value; + this.RaisePropertyChanged("ContractVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractObject", Order=4)] + public exportCAChResultTypeContractContractObject[] ContractObject { + get { + return this.contractObjectField; + } + set { + this.contractObjectField = value; + this.RaisePropertyChanged("ContractObject"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractPaymentsInfo", Order=5)] + public exportCAChResultTypeContractContractPaymentsInfo[] ContractPaymentsInfo { + get { + return this.contractPaymentsInfoField; + } + set { + this.contractPaymentsInfoField = value; + this.RaisePropertyChanged("ContractPaymentsInfo"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeContractTerminate : TerminateType { + + private nsiRef reasonRefField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef ReasonRef { + get { + return this.reasonRefField; + } + set { + this.reasonRefField = value; + this.RaisePropertyChanged("ReasonRef"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ContractStatusExportType { + + /// + Project, + + /// + ApprovalProcess, + + /// + Rejected, + + /// + Approved, + + /// + Terminated, + + /// + Reviewed, + + /// + Annul, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeContractContractObject : ManageObjectType { + + private string contractObjectVersionGUIDField; + + private BaseServiceType baseMServiceField; + + private exportCAChResultTypeContractContractObjectHouseService[] houseServiceField; + + private exportCAChResultTypeContractContractObjectAddService[] addServiceField; + + private exportCAChResultTypeContractContractObjectExclusion exclusionField; + + private StatusMKDType statusObjectField; + + private bool statusObjectFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractObjectVersionGUID { + get { + return this.contractObjectVersionGUIDField; + } + set { + this.contractObjectVersionGUIDField = value; + this.RaisePropertyChanged("ContractObjectVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public BaseServiceType BaseMService { + get { + return this.baseMServiceField; + } + set { + this.baseMServiceField = value; + this.RaisePropertyChanged("BaseMService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("HouseService", Order=2)] + public exportCAChResultTypeContractContractObjectHouseService[] HouseService { + get { + return this.houseServiceField; + } + set { + this.houseServiceField = value; + this.RaisePropertyChanged("HouseService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AddService", Order=3)] + public exportCAChResultTypeContractContractObjectAddService[] AddService { + get { + return this.addServiceField; + } + set { + this.addServiceField = value; + this.RaisePropertyChanged("AddService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public exportCAChResultTypeContractContractObjectExclusion Exclusion { + get { + return this.exclusionField; + } + set { + this.exclusionField = value; + this.RaisePropertyChanged("Exclusion"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public StatusMKDType StatusObject { + get { + return this.statusObjectField; + } + set { + this.statusObjectField = value; + this.RaisePropertyChanged("StatusObject"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StatusObjectSpecified { + get { + return this.statusObjectFieldSpecified; + } + set { + this.statusObjectFieldSpecified = value; + this.RaisePropertyChanged("StatusObjectSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeContractContractObjectHouseService : ContractServiceType { + + private BaseServiceType baseServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseService { + get { + return this.baseServiceField; + } + set { + this.baseServiceField = value; + this.RaisePropertyChanged("BaseService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeContractContractObjectAddService : ContractServiceType { + + private BaseServiceType baseServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseService { + get { + return this.baseServiceField; + } + set { + this.baseServiceField = value; + this.RaisePropertyChanged("BaseService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeContractContractObjectExclusion : object, System.ComponentModel.INotifyPropertyChanged { + + private BaseServiceType baseExclusionField; + + private System.DateTime dateExclusionField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseExclusion { + get { + return this.baseExclusionField; + } + set { + this.baseExclusionField = value; + this.RaisePropertyChanged("BaseExclusion"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime DateExclusion { + get { + return this.dateExclusionField; + } + set { + this.dateExclusionField = value; + this.RaisePropertyChanged("DateExclusion"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChResultTypeContractContractPaymentsInfo : ContractPaymentsInfoType { + + private string contractPaymentsInfoVersionGUIDField; + + private exportCAChResultTypeContractContractPaymentsInfoStatus statusField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractPaymentsInfoVersionGUID { + get { + return this.contractPaymentsInfoVersionGUIDField; + } + set { + this.contractPaymentsInfoVersionGUIDField = value; + this.RaisePropertyChanged("ContractPaymentsInfoVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public exportCAChResultTypeContractContractPaymentsInfoStatus Status { + get { + return this.statusField; + } + set { + this.statusField = value; + this.RaisePropertyChanged("Status"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportCAChResultTypeContractContractPaymentsInfoStatus { + + /// + P, + + /// + A, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportRolloverStatusCAChResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] orgPPAGUIDField; + + private exportRolloverStatusCAChResultTypeStatus statusField; + + /// + [System.Xml.Serialization.XmlElementAttribute("orgPPAGUID", Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string[] orgPPAGUID { + get { + return this.orgPPAGUIDField; + } + set { + this.orgPPAGUIDField = value; + this.RaisePropertyChanged("orgPPAGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public exportRolloverStatusCAChResultTypeStatus Status { + get { + return this.statusField; + } + set { + this.statusField = value; + this.RaisePropertyChanged("Status"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportRolloverStatusCAChResultTypeStatus : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ErrorMessage", typeof(ErrorMessageType), Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CACh", typeof(exportRolloverStatusCAChResultTypeStatusCACh), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportRolloverStatusCAChResultTypeStatusCACh : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType5[] itemsElementNameField; + + private exportRolloverStatusCAChResultTypeStatusCAChState stateField; + + private bool stateFieldSpecified; + + private exportRolloverStatusCAChResultTypeStatusCAChContractObject[] contractObjectField; + + private string versionNumberField; + + private bool isRolloverField; + + private string rolloverDescriptionField; + + /// + [System.Xml.Serialization.XmlElementAttribute("CharterGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CharterStatus", typeof(CharterStatusType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CharterVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractStatus", typeof(ContractStatusType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("PreviousCharterVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("PreviousContractVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType5[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public exportRolloverStatusCAChResultTypeStatusCAChState State { + get { + return this.stateField; + } + set { + this.stateField = value; + this.RaisePropertyChanged("State"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StateSpecified { + get { + return this.stateFieldSpecified; + } + set { + this.stateFieldSpecified = value; + this.RaisePropertyChanged("StateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractObject", Order=3)] + public exportRolloverStatusCAChResultTypeStatusCAChContractObject[] ContractObject { + get { + return this.contractObjectField; + } + set { + this.contractObjectField = value; + this.RaisePropertyChanged("ContractObject"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=4)] + public string VersionNumber { + get { + return this.versionNumberField; + } + set { + this.versionNumberField = value; + this.RaisePropertyChanged("VersionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool IsRollover { + get { + return this.isRolloverField; + } + set { + this.isRolloverField = value; + this.RaisePropertyChanged("IsRollover"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string RolloverDescription { + get { + return this.rolloverDescriptionField; + } + set { + this.rolloverDescriptionField = value; + this.RaisePropertyChanged("RolloverDescription"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum CharterStatusType { + + /// + Project, + + /// + Approved, + + /// + Terminated, + + /// + Annul, + + /// + Reviewed, + + /// + ApprovalProcess, + + /// + Rejected, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum ContractStatusType { + + /// + Project, + + /// + ApprovalProcess, + + /// + Rejected, + + /// + Approved, + + /// + Terminated, + + /// + Reviewed, + + /// + Annul, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType5 { + + /// + CharterGUID, + + /// + CharterStatus, + + /// + CharterVersionGUID, + + /// + ContractGUID, + + /// + ContractStatus, + + /// + ContractVersionGUID, + + /// + PreviousCharterVersionGUID, + + /// + PreviousContractVersionGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportRolloverStatusCAChResultTypeStatusCAChState { + + /// + Running, + + /// + NotRunning, + + /// + Expired, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportRolloverStatusCAChResultTypeStatusCAChContractObject : object, System.ComponentModel.INotifyPropertyChanged { + + private string fIASHouseGuidField; + + private StatusMKDType managedObjectStatusField; + + private string contractObjectVersionGUIDField; + + private bool isConflictedField; + + private bool isConflictedFieldSpecified; + + private bool isBlockedField; + + private bool isBlockedFieldSpecified; + + private string previousContractObjectVersionGUIDField; + + public exportRolloverStatusCAChResultTypeStatusCAChContractObject() { + this.isConflictedField = true; + this.isBlockedField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public StatusMKDType ManagedObjectStatus { + get { + return this.managedObjectStatusField; + } + set { + this.managedObjectStatusField = value; + this.RaisePropertyChanged("ManagedObjectStatus"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ContractObjectVersionGUID { + get { + return this.contractObjectVersionGUIDField; + } + set { + this.contractObjectVersionGUIDField = value; + this.RaisePropertyChanged("ContractObjectVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public bool IsConflicted { + get { + return this.isConflictedField; + } + set { + this.isConflictedField = value; + this.RaisePropertyChanged("IsConflicted"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsConflictedSpecified { + get { + return this.isConflictedFieldSpecified; + } + set { + this.isConflictedFieldSpecified = value; + this.RaisePropertyChanged("IsConflictedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool IsBlocked { + get { + return this.isBlockedField; + } + set { + this.isBlockedField = value; + this.RaisePropertyChanged("IsBlocked"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsBlockedSpecified { + get { + return this.isBlockedFieldSpecified; + } + set { + this.isBlockedFieldSpecified = value; + this.RaisePropertyChanged("IsBlockedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string PreviousContractObjectVersionGUID { + get { + return this.previousContractObjectVersionGUIDField; + } + set { + this.previousContractObjectVersionGUIDField = value; + this.RaisePropertyChanged("PreviousContractObjectVersionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(importCharterResultType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(importContractResultType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportStatusCAChResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType4[] itemsElementNameField; + + private exportStatusCAChResultTypeState stateField; + + private bool stateFieldSpecified; + + private exportStatusCAChResultTypeContractObject[] contractObjectField; + + private string versionNumberField; + + /// + [System.Xml.Serialization.XmlElementAttribute("CharterGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CharterStatus", typeof(CharterStatusType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CharterVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractStatus", typeof(ContractStatusType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType4[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public exportStatusCAChResultTypeState State { + get { + return this.stateField; + } + set { + this.stateField = value; + this.RaisePropertyChanged("State"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StateSpecified { + get { + return this.stateFieldSpecified; + } + set { + this.stateFieldSpecified = value; + this.RaisePropertyChanged("StateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractObject", Order=3)] + public exportStatusCAChResultTypeContractObject[] ContractObject { + get { + return this.contractObjectField; + } + set { + this.contractObjectField = value; + this.RaisePropertyChanged("ContractObject"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=4)] + public string VersionNumber { + get { + return this.versionNumberField; + } + set { + this.versionNumberField = value; + this.RaisePropertyChanged("VersionNumber"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType4 { + + /// + CharterGUID, + + /// + CharterStatus, + + /// + CharterVersionGUID, + + /// + ContractGUID, + + /// + ContractStatus, + + /// + ContractVersionGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportStatusCAChResultTypeState { + + /// + Running, + + /// + NotRunning, + + /// + Expired, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportStatusCAChResultTypeContractObject : object, System.ComponentModel.INotifyPropertyChanged { + + private string fIASHouseGuidField; + + private StatusMKDType managedObjectStatusField; + + private string contractObjectVersionGUIDField; + + private bool isConflictedField; + + private bool isConflictedFieldSpecified; + + private bool isBlockedField; + + private bool isBlockedFieldSpecified; + + public exportStatusCAChResultTypeContractObject() { + this.isConflictedField = true; + this.isBlockedField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public StatusMKDType ManagedObjectStatus { + get { + return this.managedObjectStatusField; + } + set { + this.managedObjectStatusField = value; + this.RaisePropertyChanged("ManagedObjectStatus"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ContractObjectVersionGUID { + get { + return this.contractObjectVersionGUIDField; + } + set { + this.contractObjectVersionGUIDField = value; + this.RaisePropertyChanged("ContractObjectVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public bool IsConflicted { + get { + return this.isConflictedField; + } + set { + this.isConflictedField = value; + this.RaisePropertyChanged("IsConflicted"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsConflictedSpecified { + get { + return this.isConflictedFieldSpecified; + } + set { + this.isConflictedFieldSpecified = value; + this.RaisePropertyChanged("IsConflictedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool IsBlocked { + get { + return this.isBlockedField; + } + set { + this.isBlockedField = value; + this.RaisePropertyChanged("IsBlocked"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsBlockedSpecified { + get { + return this.isBlockedFieldSpecified; + } + set { + this.isBlockedFieldSpecified = value; + this.RaisePropertyChanged("IsBlockedSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterResultType : exportStatusCAChResultType { + + private ErrorMessageType errorField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ErrorMessageType Error { + get { + return this.errorField; + } + set { + this.errorField = value; + this.RaisePropertyChanged("Error"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractResultType : exportStatusCAChResultType { + + private ErrorMessageType errorField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public ErrorMessageType Error { + get { + return this.errorField; + } + set { + this.errorField = value; + this.RaisePropertyChanged("Error"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportODSPMeteringDeviceDataResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private string meteringDeviceRootGUIDField; + + private string meteringDeviceNumberField; + + private string fIASHouseGuidField; + + private bool isConnectedField; + + private System.DateTime updateDateTimeField; + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MeteringDeviceRootGUID { + get { + return this.meteringDeviceRootGUIDField; + } + set { + this.meteringDeviceRootGUIDField = value; + this.RaisePropertyChanged("MeteringDeviceRootGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string MeteringDeviceNumber { + get { + return this.meteringDeviceNumberField; + } + set { + this.meteringDeviceNumberField = value; + this.RaisePropertyChanged("MeteringDeviceNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public bool IsConnected { + get { + return this.isConnectedField; + } + set { + this.isConnectedField = value; + this.RaisePropertyChanged("IsConnected"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public System.DateTime UpdateDateTime { + get { + return this.updateDateTimeField; + } + set { + this.updateDateTimeField = value; + this.RaisePropertyChanged("UpdateDateTime"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("MunicipalResourceEnergy", typeof(MunicipalResourceElectricExportType), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("MunicipalResourceNotEnergy", typeof(MunicipalResourceNotElectricExportType), Order=5)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BriefNonResidentialPremisesType : object, System.ComponentModel.INotifyPropertyChanged { + + private string premisesGUIDField; + + private string premisesUniqueNumberField; + + private string premisesNumField; + + private string fIASChildHouseGuidField; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + private bool isCommonPropertyField; + + private bool isCommonPropertyFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesGUID { + get { + return this.premisesGUIDField; + } + set { + this.premisesGUIDField = value; + this.RaisePropertyChanged("PremisesGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PremisesUniqueNumber { + get { + return this.premisesUniqueNumberField; + } + set { + this.premisesUniqueNumberField = value; + this.RaisePropertyChanged("PremisesUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=4)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool IsCommonProperty { + get { + return this.isCommonPropertyField; + } + set { + this.isCommonPropertyField = value; + this.RaisePropertyChanged("IsCommonProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsCommonPropertySpecified { + get { + return this.isCommonPropertyFieldSpecified; + } + set { + this.isCommonPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsCommonPropertySpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BriefResidentialPremisesType : object, System.ComponentModel.INotifyPropertyChanged { + + private string premisesGUIDField; + + private string premisesUniqueNumberField; + + private string premisesNumField; + + private string fIASChildHouseGuidField; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + private object itemField; + + private BriefLivingRoomType[] livingRoomField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesGUID { + get { + return this.premisesGUIDField; + } + set { + this.premisesGUIDField = value; + this.RaisePropertyChanged("PremisesGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PremisesUniqueNumber { + get { + return this.premisesUniqueNumberField; + } + set { + this.premisesUniqueNumberField = value; + this.RaisePropertyChanged("PremisesUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=4)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceNum", typeof(string), Order=8)] + [System.Xml.Serialization.XmlElementAttribute("HasNoEntrance", typeof(bool), Order=8)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoom", Order=9)] + public BriefLivingRoomType[] LivingRoom { + get { + return this.livingRoomField; + } + set { + this.livingRoomField = value; + this.RaisePropertyChanged("LivingRoom"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BriefLivingRoomType : object, System.ComponentModel.INotifyPropertyChanged { + + private string livingRoomGUIDField; + + private string livingRoomUniqueNumberField; + + private string roomNumberField; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string LivingRoomUniqueNumber { + get { + return this.livingRoomUniqueNumberField; + } + set { + this.livingRoomUniqueNumberField = value; + this.RaisePropertyChanged("LivingRoomUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string RoomNumber { + get { + return this.roomNumberField; + } + set { + this.roomNumberField = value; + this.RaisePropertyChanged("RoomNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BriefEntranceType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceGUIDField; + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceGUID { + get { + return this.entranceGUIDField; + } + set { + this.entranceGUIDField = value; + this.RaisePropertyChanged("EntranceGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BriefApartmentHouseType : object, System.ComponentModel.INotifyPropertyChanged { + + private string hCSHouseGUIDField; + + private string fIASHouseGUIDField; + + private string houseUniqueNumberField; + + private System.DateTime modificationDateField; + + private BriefEntranceType[] entranceField; + + private BriefResidentialPremisesType[] residentialPremisesField; + + private BriefNonResidentialPremisesType[] nonResidentialPremisesField; + + private nsiRef houseManagementTypeField; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private System.DateTime demolishionDateField; + + private bool demolishionDateFieldSpecified; + + private string demolishionReasonField; + + private bool isAsyncProcessedField; + + private bool isAsyncProcessedFieldSpecified; + + private ExportHostelDataType exportHostelDataField; + + public BriefApartmentHouseType() { + this.isAsyncProcessedField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string HCSHouseGUID { + get { + return this.hCSHouseGUIDField; + } + set { + this.hCSHouseGUIDField = value; + this.RaisePropertyChanged("HCSHouseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASHouseGUID { + get { + return this.fIASHouseGUIDField; + } + set { + this.fIASHouseGUIDField = value; + this.RaisePropertyChanged("FIASHouseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string HouseUniqueNumber { + get { + return this.houseUniqueNumberField; + } + set { + this.houseUniqueNumberField = value; + this.RaisePropertyChanged("HouseUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public System.DateTime ModificationDate { + get { + return this.modificationDateField; + } + set { + this.modificationDateField = value; + this.RaisePropertyChanged("ModificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Entrance", Order=4)] + public BriefEntranceType[] Entrance { + get { + return this.entranceField; + } + set { + this.entranceField = value; + this.RaisePropertyChanged("Entrance"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremises", Order=5)] + public BriefResidentialPremisesType[] ResidentialPremises { + get { + return this.residentialPremisesField; + } + set { + this.residentialPremisesField = value; + this.RaisePropertyChanged("ResidentialPremises"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("NonResidentialPremises", Order=6)] + public BriefNonResidentialPremisesType[] NonResidentialPremises { + get { + return this.nonResidentialPremisesField; + } + set { + this.nonResidentialPremisesField = value; + this.RaisePropertyChanged("NonResidentialPremises"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public nsiRef HouseManagementType { + get { + return this.houseManagementTypeField; + } + set { + this.houseManagementTypeField = value; + this.RaisePropertyChanged("HouseManagementType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=8)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=11)] + public System.DateTime DemolishionDate { + get { + return this.demolishionDateField; + } + set { + this.demolishionDateField = value; + this.RaisePropertyChanged("DemolishionDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool DemolishionDateSpecified { + get { + return this.demolishionDateFieldSpecified; + } + set { + this.demolishionDateFieldSpecified = value; + this.RaisePropertyChanged("DemolishionDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=12)] + public string DemolishionReason { + get { + return this.demolishionReasonField; + } + set { + this.demolishionReasonField = value; + this.RaisePropertyChanged("DemolishionReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=13)] + public bool IsAsyncProcessed { + get { + return this.isAsyncProcessedField; + } + set { + this.isAsyncProcessedField = value; + this.RaisePropertyChanged("IsAsyncProcessed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsAsyncProcessedSpecified { + get { + return this.isAsyncProcessedFieldSpecified; + } + set { + this.isAsyncProcessedFieldSpecified = value; + this.RaisePropertyChanged("IsAsyncProcessedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=14)] + public ExportHostelDataType ExportHostelData { + get { + return this.exportHostelDataField; + } + set { + this.exportHostelDataField = value; + this.RaisePropertyChanged("ExportHostelData"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportHostelDataType : object, System.ComponentModel.INotifyPropertyChanged { + + private bool isMunicipalPropertyField; + + private bool isMunicipalPropertyFieldSpecified; + + private bool isRegionPropertyField; + + private bool isRegionPropertyFieldSpecified; + + private nsiRef hostelTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool IsMunicipalProperty { + get { + return this.isMunicipalPropertyField; + } + set { + this.isMunicipalPropertyField = value; + this.RaisePropertyChanged("IsMunicipalProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsMunicipalPropertySpecified { + get { + return this.isMunicipalPropertyFieldSpecified; + } + set { + this.isMunicipalPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsMunicipalPropertySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool IsRegionProperty { + get { + return this.isRegionPropertyField; + } + set { + this.isRegionPropertyField = value; + this.RaisePropertyChanged("IsRegionProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsRegionPropertySpecified { + get { + return this.isRegionPropertyFieldSpecified; + } + set { + this.isRegionPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsRegionPropertySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef HostelType { + get { + return this.hostelTypeField; + } + set { + this.hostelTypeField = value; + this.RaisePropertyChanged("HostelType"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BriefBlockType : object, System.ComponentModel.INotifyPropertyChanged { + + private string blockGUIDField; + + private string blockUniqueNumberField; + + private string blockNumField; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + private BlockCategoryType categoryField; + + private bool categoryFieldSpecified; + + private BriefLivingRoomType[] livingRoomField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string BlockGUID { + get { + return this.blockGUIDField; + } + set { + this.blockGUIDField = value; + this.RaisePropertyChanged("BlockGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string BlockUniqueNumber { + get { + return this.blockUniqueNumberField; + } + set { + this.blockUniqueNumberField = value; + this.RaisePropertyChanged("BlockUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string BlockNum { + get { + return this.blockNumField; + } + set { + this.blockNumField = value; + this.RaisePropertyChanged("BlockNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public BlockCategoryType Category { + get { + return this.categoryField; + } + set { + this.categoryField = value; + this.RaisePropertyChanged("Category"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CategorySpecified { + get { + return this.categoryFieldSpecified; + } + set { + this.categoryFieldSpecified = value; + this.RaisePropertyChanged("CategorySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoom", Order=8)] + public BriefLivingRoomType[] LivingRoom { + get { + return this.livingRoomField; + } + set { + this.livingRoomField = value; + this.RaisePropertyChanged("LivingRoom"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BriefLivingHouseType : object, System.ComponentModel.INotifyPropertyChanged { + + private string hCSHouseGUIDField; + + private string fIASHouseGUIDField; + + private string houseUniqueNumberField; + + private System.DateTime modificationDateField; + + private bool hasBlocksField; + + private bool isMultipleHousesAddressField; + + private object[] itemsField; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private System.DateTime demolishionDateField; + + private bool demolishionDateFieldSpecified; + + private string demolishionReasonField; + + private bool isAsyncProcessedField; + + private bool isAsyncProcessedFieldSpecified; + + private ExportHostelDataType exportHostelDataField; + + public BriefLivingHouseType() { + this.isAsyncProcessedField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string HCSHouseGUID { + get { + return this.hCSHouseGUIDField; + } + set { + this.hCSHouseGUIDField = value; + this.RaisePropertyChanged("HCSHouseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASHouseGUID { + get { + return this.fIASHouseGUIDField; + } + set { + this.fIASHouseGUIDField = value; + this.RaisePropertyChanged("FIASHouseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string HouseUniqueNumber { + get { + return this.houseUniqueNumberField; + } + set { + this.houseUniqueNumberField = value; + this.RaisePropertyChanged("HouseUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public System.DateTime ModificationDate { + get { + return this.modificationDateField; + } + set { + this.modificationDateField = value; + this.RaisePropertyChanged("ModificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool HasBlocks { + get { + return this.hasBlocksField; + } + set { + this.hasBlocksField = value; + this.RaisePropertyChanged("HasBlocks"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public bool IsMultipleHousesAddress { + get { + return this.isMultipleHousesAddressField; + } + set { + this.isMultipleHousesAddressField = value; + this.RaisePropertyChanged("IsMultipleHousesAddress"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Block", typeof(BriefBlockType), Order=6)] + [System.Xml.Serialization.XmlElementAttribute("LivingRoom", typeof(BriefLivingRoomType), Order=6)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=7)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=10)] + public System.DateTime DemolishionDate { + get { + return this.demolishionDateField; + } + set { + this.demolishionDateField = value; + this.RaisePropertyChanged("DemolishionDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool DemolishionDateSpecified { + get { + return this.demolishionDateFieldSpecified; + } + set { + this.demolishionDateFieldSpecified = value; + this.RaisePropertyChanged("DemolishionDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public string DemolishionReason { + get { + return this.demolishionReasonField; + } + set { + this.demolishionReasonField = value; + this.RaisePropertyChanged("DemolishionReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=12)] + public bool IsAsyncProcessed { + get { + return this.isAsyncProcessedField; + } + set { + this.isAsyncProcessedField = value; + this.RaisePropertyChanged("IsAsyncProcessed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsAsyncProcessedSpecified { + get { + return this.isAsyncProcessedFieldSpecified; + } + set { + this.isAsyncProcessedFieldSpecified = value; + this.RaisePropertyChanged("IsAsyncProcessedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=13)] + public ExportHostelDataType ExportHostelData { + get { + return this.exportHostelDataField; + } + set { + this.exportHostelDataField = value; + this.RaisePropertyChanged("ExportHostelData"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportBriefLivingHouseResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Error", typeof(ErrorMessageType), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("LivingHouseInfo", typeof(BriefLivingHouseType), Order=1)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportBriefLivingHouseRequestType : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private string houseGuidField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string HouseGuid { + get { + return this.houseGuidField; + } + set { + this.houseGuidField = value; + this.RaisePropertyChanged("HouseGuid"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BriefBasicCharactericticsType : object, System.ComponentModel.INotifyPropertyChanged { + + private string houseUniqueNumberField; + + private nsiRef stateField; + + private nsiRef lifeCycleStageField; + + private OKTMORefType oKTMOField; + + private string orgPPAGUIDField; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private System.DateTime demolishionDateField; + + private bool demolishionDateFieldSpecified; + + private string demolishionReasonField; + + private bool isAsyncProcessedField; + + private bool isAsyncProcessedFieldSpecified; + + private ExportHostelDataType exportHostelDataField; + + public BriefBasicCharactericticsType() { + this.isAsyncProcessedField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string HouseUniqueNumber { + get { + return this.houseUniqueNumberField; + } + set { + this.houseUniqueNumberField = value; + this.RaisePropertyChanged("HouseUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef State { + get { + return this.stateField; + } + set { + this.stateField = value; + this.RaisePropertyChanged("State"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef LifeCycleStage { + get { + return this.lifeCycleStageField; + } + set { + this.lifeCycleStageField = value; + this.RaisePropertyChanged("LifeCycleStage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public OKTMORefType OKTMO { + get { + return this.oKTMOField; + } + set { + this.oKTMOField = value; + this.RaisePropertyChanged("OKTMO"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string orgPPAGUID { + get { + return this.orgPPAGUIDField; + } + set { + this.orgPPAGUIDField = value; + this.RaisePropertyChanged("orgPPAGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=5)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=8)] + public System.DateTime DemolishionDate { + get { + return this.demolishionDateField; + } + set { + this.demolishionDateField = value; + this.RaisePropertyChanged("DemolishionDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool DemolishionDateSpecified { + get { + return this.demolishionDateFieldSpecified; + } + set { + this.demolishionDateFieldSpecified = value; + this.RaisePropertyChanged("DemolishionDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public string DemolishionReason { + get { + return this.demolishionReasonField; + } + set { + this.demolishionReasonField = value; + this.RaisePropertyChanged("DemolishionReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public bool IsAsyncProcessed { + get { + return this.isAsyncProcessedField; + } + set { + this.isAsyncProcessedField = value; + this.RaisePropertyChanged("IsAsyncProcessed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsAsyncProcessedSpecified { + get { + return this.isAsyncProcessedFieldSpecified; + } + set { + this.isAsyncProcessedFieldSpecified = value; + this.RaisePropertyChanged("IsAsyncProcessedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public ExportHostelDataType ExportHostelData { + get { + return this.exportHostelDataField; + } + set { + this.exportHostelDataField = value; + this.RaisePropertyChanged("ExportHostelData"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BriefLocationType : object, System.ComponentModel.INotifyPropertyChanged { + + private string hCSHouseGUIDField; + + private string fIASHouseGUIDField; + + private string addressField; + + private string aOGUIDField; + + private string hOUSENUMField; + + private string bUILDNUMField; + + private string sTRUCNUMField; + + private sbyte eSTSTATUSField; + + private sbyte sTRSTATUSField; + + private bool sTRSTATUSFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string HCSHouseGUID { + get { + return this.hCSHouseGUIDField; + } + set { + this.hCSHouseGUIDField = value; + this.RaisePropertyChanged("HCSHouseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASHouseGUID { + get { + return this.fIASHouseGUIDField; + } + set { + this.fIASHouseGUIDField = value; + this.RaisePropertyChanged("FIASHouseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Address { + get { + return this.addressField; + } + set { + this.addressField = value; + this.RaisePropertyChanged("Address"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AOGUID { + get { + return this.aOGUIDField; + } + set { + this.aOGUIDField = value; + this.RaisePropertyChanged("AOGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string HOUSENUM { + get { + return this.hOUSENUMField; + } + set { + this.hOUSENUMField = value; + this.RaisePropertyChanged("HOUSENUM"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string BUILDNUM { + get { + return this.bUILDNUMField; + } + set { + this.bUILDNUMField = value; + this.RaisePropertyChanged("BUILDNUM"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string STRUCNUM { + get { + return this.sTRUCNUMField; + } + set { + this.sTRUCNUMField = value; + this.RaisePropertyChanged("STRUCNUM"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public sbyte ESTSTATUS { + get { + return this.eSTSTATUSField; + } + set { + this.eSTSTATUSField = value; + this.RaisePropertyChanged("ESTSTATUS"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public sbyte STRSTATUS { + get { + return this.sTRSTATUSField; + } + set { + this.sTRSTATUSField = value; + this.RaisePropertyChanged("STRSTATUS"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool STRSTATUSSpecified { + get { + return this.sTRSTATUSFieldSpecified; + } + set { + this.sTRSTATUSFieldSpecified = value; + this.RaisePropertyChanged("STRSTATUSSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BriefBasicHouseType : object, System.ComponentModel.INotifyPropertyChanged { + + private BriefLocationType locationInfoField; + + private BriefBasicCharactericticsType basicCharacteristictsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BriefLocationType LocationInfo { + get { + return this.locationInfoField; + } + set { + this.locationInfoField = value; + this.RaisePropertyChanged("LocationInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public BriefBasicCharactericticsType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportBriefBasicHouseResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("BasicHouseInfo", typeof(BriefBasicHouseType), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("Error", typeof(ErrorMessageType), Order=1)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportBriefBasicCriteriaType : object, System.ComponentModel.INotifyPropertyChanged { + + private string itemField; + + private ItemChoiceType2 itemElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("BlockUniqueNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("HouseUniqueNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LivingRoomUniqueNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("PremisesUniqueNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType2 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType2 { + + /// + BlockUniqueNumber, + + /// + FIASHouseGuid, + + /// + HouseUniqueNumber, + + /// + LivingRoomUniqueNumber, + + /// + PremisesUniqueNumber, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ExportBriefBasicHouseRequestType : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private ExportBriefBasicCriteriaType criteriaField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public ExportBriefBasicCriteriaType Criteria { + get { + return this.criteriaField; + } + set { + this.criteriaField = value; + this.RaisePropertyChanged("Criteria"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LivingHouseExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private HouseBasicExportType basicCharacteristictsField; + + private bool hasBlocksField; + + private bool hasBlocksFieldSpecified; + + private bool hasMultipleHousesWithSameAddressField; + + private bool hasMultipleHousesWithSameAddressFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public HouseBasicExportType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool HasBlocks { + get { + return this.hasBlocksField; + } + set { + this.hasBlocksField = value; + this.RaisePropertyChanged("HasBlocks"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HasBlocksSpecified { + get { + return this.hasBlocksFieldSpecified; + } + set { + this.hasBlocksFieldSpecified = value; + this.RaisePropertyChanged("HasBlocksSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool HasMultipleHousesWithSameAddress { + get { + return this.hasMultipleHousesWithSameAddressField; + } + set { + this.hasMultipleHousesWithSameAddressField = value; + this.RaisePropertyChanged("HasMultipleHousesWithSameAddress"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool HasMultipleHousesWithSameAddressSpecified { + get { + return this.hasMultipleHousesWithSameAddressFieldSpecified; + } + set { + this.hasMultipleHousesWithSameAddressFieldSpecified = value; + this.RaisePropertyChanged("HasMultipleHousesWithSameAddressSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class HouseBasicExportType : OGFExportStatusType { + + private string fIASHouseGuidField; + + private decimal totalSquareField; + + private bool totalSquareFieldSpecified; + + private nsiRef stateField; + + private nsiRef lifeCycleStageField; + + private short usedYearField; + + private bool usedYearFieldSpecified; + + private string floorCountField; + + private OKTMORefType oKTMOField; + + private nsiRef olsonTZField; + + private bool culturalHeritageField; + + private bool culturalHeritageFieldSpecified; + + private OGFData[] oGFDataField; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private System.DateTime demolishionDateField; + + private bool demolishionDateFieldSpecified; + + private DemolishionReasonType demolishionReasonField; + + private ExportHostelDataType exportHostelDataField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalSquare { + get { + return this.totalSquareField; + } + set { + this.totalSquareField = value; + this.RaisePropertyChanged("TotalSquare"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalSquareSpecified { + get { + return this.totalSquareFieldSpecified; + } + set { + this.totalSquareFieldSpecified = value; + this.RaisePropertyChanged("TotalSquareSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef State { + get { + return this.stateField; + } + set { + this.stateField = value; + this.RaisePropertyChanged("State"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef LifeCycleStage { + get { + return this.lifeCycleStageField; + } + set { + this.lifeCycleStageField = value; + this.RaisePropertyChanged("LifeCycleStage"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public short UsedYear { + get { + return this.usedYearField; + } + set { + this.usedYearField = value; + this.RaisePropertyChanged("UsedYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool UsedYearSpecified { + get { + return this.usedYearFieldSpecified; + } + set { + this.usedYearFieldSpecified = value; + this.RaisePropertyChanged("UsedYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string FloorCount { + get { + return this.floorCountField; + } + set { + this.floorCountField = value; + this.RaisePropertyChanged("FloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public OKTMORefType OKTMO { + get { + return this.oKTMOField; + } + set { + this.oKTMOField = value; + this.RaisePropertyChanged("OKTMO"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public nsiRef OlsonTZ { + get { + return this.olsonTZField; + } + set { + this.olsonTZField = value; + this.RaisePropertyChanged("OlsonTZ"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool CulturalHeritage { + get { + return this.culturalHeritageField; + } + set { + this.culturalHeritageField = value; + this.RaisePropertyChanged("CulturalHeritage"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CulturalHeritageSpecified { + get { + return this.culturalHeritageFieldSpecified; + } + set { + this.culturalHeritageFieldSpecified = value; + this.RaisePropertyChanged("CulturalHeritageSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=9)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=10)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=11)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=12)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=13)] + public System.DateTime DemolishionDate { + get { + return this.demolishionDateField; + } + set { + this.demolishionDateField = value; + this.RaisePropertyChanged("DemolishionDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool DemolishionDateSpecified { + get { + return this.demolishionDateFieldSpecified; + } + set { + this.demolishionDateFieldSpecified = value; + this.RaisePropertyChanged("DemolishionDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=14)] + public DemolishionReasonType DemolishionReason { + get { + return this.demolishionReasonField; + } + set { + this.demolishionReasonField = value; + this.RaisePropertyChanged("DemolishionReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=15)] + public ExportHostelDataType ExportHostelData { + get { + return this.exportHostelDataField; + } + set { + this.exportHostelDataField = value; + this.RaisePropertyChanged("ExportHostelData"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DemolishionReasonType : object, System.ComponentModel.INotifyPropertyChanged { + + private AttachmentType[] documentField; + + private string descriptionField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Document", Order=0)] + public AttachmentType[] Document { + get { + return this.documentField; + } + set { + this.documentField = value; + this.RaisePropertyChanged("Document"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Description { + get { + return this.descriptionField; + } + set { + this.descriptionField = value; + this.RaisePropertyChanged("Description"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PremisesBasicExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BlockExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(HouseBasicExportType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class OGFExportStatusType : GKN_EGRP_KeyExportType { + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OGFExportStatusType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PremisesBasicExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BlockExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(HouseBasicExportType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class GKN_EGRP_KeyExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private ItemChoiceType itemElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("CadastralNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("No_RSO_GKN_EGRP_Data", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("No_RSO_GKN_EGRP_Registered", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType { + + /// + CadastralNumber, + + /// + No_RSO_GKN_EGRP_Data, + + /// + No_RSO_GKN_EGRP_Registered, + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(NonResidentialPremisesExportType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ResidentialPremisesExportType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class PremisesBasicExportType : OGFExportStatusType { + + private string premisesNumField; + + private string floorField; + + private OGFData[] oGFDataField; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesNum { + get { + return this.premisesNumField; + } + set { + this.premisesNumField = value; + this.RaisePropertyChanged("PremisesNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Floor { + get { + return this.floorField; + } + set { + this.floorField = value; + this.RaisePropertyChanged("Floor"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=2)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=3)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class NonResidentialPremisesExportType : PremisesBasicExportType { + + private string fIASChildHouseGuidField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private bool isCommonPropertyField; + + private bool isCommonPropertyFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool IsCommonProperty { + get { + return this.isCommonPropertyField; + } + set { + this.isCommonPropertyField = value; + this.RaisePropertyChanged("IsCommonProperty"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsCommonPropertySpecified { + get { + return this.isCommonPropertyFieldSpecified; + } + set { + this.isCommonPropertyFieldSpecified = value; + this.RaisePropertyChanged("IsCommonPropertySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ResidentialPremisesExportType : PremisesBasicExportType { + + private object item1Field; + + private string fIASChildHouseGuidField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private object item2Field; + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceNum", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("HasNoEntrance", typeof(bool), Order=0)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("GrossArea", typeof(decimal), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("NoGrossArea", typeof(bool), Order=4)] + public object Item2 { + get { + return this.item2Field; + } + set { + this.item2Field = value; + this.RaisePropertyChanged("Item2"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class BlockExportType : OGFExportStatusType { + + private string blockNumField; + + private nsiRef premisesCharacteristicField; + + private decimal totalAreaField; + + private bool totalAreaFieldSpecified; + + private object item1Field; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private OGFData[] oGFDataField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + private BlockCategoryType categoryField; + + private bool categoryFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string BlockNum { + get { + return this.blockNumField; + } + set { + this.blockNumField = value; + this.RaisePropertyChanged("BlockNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef PremisesCharacteristic { + get { + return this.premisesCharacteristicField; + } + set { + this.premisesCharacteristicField = value; + this.RaisePropertyChanged("PremisesCharacteristic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal TotalArea { + get { + return this.totalAreaField; + } + set { + this.totalAreaField = value; + this.RaisePropertyChanged("TotalArea"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TotalAreaSpecified { + get { + return this.totalAreaFieldSpecified; + } + set { + this.totalAreaFieldSpecified = value; + this.RaisePropertyChanged("TotalAreaSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("GrossArea", typeof(decimal), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("NoGrossArea", typeof(bool), Order=3)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=4)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=7)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public BlockCategoryType Category { + get { + return this.categoryField; + } + set { + this.categoryField = value; + this.RaisePropertyChanged("Category"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CategorySpecified { + get { + return this.categoryFieldSpecified; + } + set { + this.categoryFieldSpecified = value; + this.RaisePropertyChanged("CategorySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class LiftExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private string factoryNumField; + + private nsiRef typeField; + + private OGFData[] oGFDataField; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string FactoryNum { + get { + return this.factoryNumField; + } + set { + this.factoryNumField = value; + this.RaisePropertyChanged("FactoryNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public nsiRef Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OGFData", Order=4)] + public OGFData[] OGFData { + get { + return this.oGFDataField; + } + set { + this.oGFDataField = value; + this.RaisePropertyChanged("OGFData"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=5)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class EntranceExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private string entranceNumField; + + private string fIASChildHouseGuidField; + + private int storeysCountField; + + private bool storeysCountFieldSpecified; + + private short creationYearField; + + private bool creationYearFieldSpecified; + + private System.DateTime terminationDateField; + + private bool terminationDateFieldSpecified; + + private nsiRef annulmentReasonField; + + private string annulmentInfoField; + + private bool informationConfirmedField; + + private bool informationConfirmedFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string EntranceNum { + get { + return this.entranceNumField; + } + set { + this.entranceNumField = value; + this.RaisePropertyChanged("EntranceNum"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FIASChildHouseGuid { + get { + return this.fIASChildHouseGuidField; + } + set { + this.fIASChildHouseGuidField = value; + this.RaisePropertyChanged("FIASChildHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public int StoreysCount { + get { + return this.storeysCountField; + } + set { + this.storeysCountField = value; + this.RaisePropertyChanged("StoreysCount"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool StoreysCountSpecified { + get { + return this.storeysCountFieldSpecified; + } + set { + this.storeysCountFieldSpecified = value; + this.RaisePropertyChanged("StoreysCountSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public short CreationYear { + get { + return this.creationYearField; + } + set { + this.creationYearField = value; + this.RaisePropertyChanged("CreationYear"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CreationYearSpecified { + get { + return this.creationYearFieldSpecified; + } + set { + this.creationYearFieldSpecified = value; + this.RaisePropertyChanged("CreationYearSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=4)] + public System.DateTime TerminationDate { + get { + return this.terminationDateField; + } + set { + this.terminationDateField = value; + this.RaisePropertyChanged("TerminationDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TerminationDateSpecified { + get { + return this.terminationDateFieldSpecified; + } + set { + this.terminationDateFieldSpecified = value; + this.RaisePropertyChanged("TerminationDateSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public nsiRef AnnulmentReason { + get { + return this.annulmentReasonField; + } + set { + this.annulmentReasonField = value; + this.RaisePropertyChanged("AnnulmentReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public string AnnulmentInfo { + get { + return this.annulmentInfoField; + } + set { + this.annulmentInfoField = value; + this.RaisePropertyChanged("AnnulmentInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public bool InformationConfirmed { + get { + return this.informationConfirmedField; + } + set { + this.informationConfirmedField = value; + this.RaisePropertyChanged("InformationConfirmed"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InformationConfirmedSpecified { + get { + return this.informationConfirmedFieldSpecified; + } + set { + this.informationConfirmedFieldSpecified = value; + this.RaisePropertyChanged("InformationConfirmedSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class ApartmentHouseExportType : object, System.ComponentModel.INotifyPropertyChanged { + + private HouseBasicExportType basicCharacteristictsField; + + private string undergroundFloorCountField; + + private nsiRef overhaulFormingKindField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public HouseBasicExportType BasicCharacteristicts { + get { + return this.basicCharacteristictsField; + } + set { + this.basicCharacteristictsField = value; + this.RaisePropertyChanged("BasicCharacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string UndergroundFloorCount { + get { + return this.undergroundFloorCountField; + } + set { + this.undergroundFloorCountField = value; + this.RaisePropertyChanged("UndergroundFloorCount"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public nsiRef OverhaulFormingKind { + get { + return this.overhaulFormingKindField; + } + set { + this.overhaulFormingKindField = value; + this.RaisePropertyChanged("OverhaulFormingKind"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportHouseResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private string houseUniqueNumberField; + + private System.DateTime modificationDateField; + + private string houseGUIDField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string HouseUniqueNumber { + get { + return this.houseUniqueNumberField; + } + set { + this.houseUniqueNumberField = value; + this.RaisePropertyChanged("HouseUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime ModificationDate { + get { + return this.modificationDateField; + } + set { + this.modificationDateField = value; + this.RaisePropertyChanged("ModificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string HouseGUID { + get { + return this.houseGUIDField; + } + set { + this.houseGUIDField = value; + this.RaisePropertyChanged("HouseGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ApartmentHouse", typeof(exportHouseResultTypeApartmentHouse), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("LivingHouse", typeof(exportHouseResultTypeLivingHouse), Order=3)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportHouseResultTypeApartmentHouse : ApartmentHouseExportType { + + private exportHouseResultTypeApartmentHouseEntrance[] entranceField; + + private exportHouseResultTypeApartmentHouseResidentialPremises[] residentialPremisesField; + + private exportHouseResultTypeApartmentHouseLift[] liftField; + + private exportHouseResultTypeApartmentHouseNonResidentialPremises[] nonResidentialPremisesField; + + private nsiRef houseManagementTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Entrance", Order=0)] + public exportHouseResultTypeApartmentHouseEntrance[] Entrance { + get { + return this.entranceField; + } + set { + this.entranceField = value; + this.RaisePropertyChanged("Entrance"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremises", Order=1)] + public exportHouseResultTypeApartmentHouseResidentialPremises[] ResidentialPremises { + get { + return this.residentialPremisesField; + } + set { + this.residentialPremisesField = value; + this.RaisePropertyChanged("ResidentialPremises"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Lift", Order=2)] + public exportHouseResultTypeApartmentHouseLift[] Lift { + get { + return this.liftField; + } + set { + this.liftField = value; + this.RaisePropertyChanged("Lift"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("NonResidentialPremises", Order=3)] + public exportHouseResultTypeApartmentHouseNonResidentialPremises[] NonResidentialPremises { + get { + return this.nonResidentialPremisesField; + } + set { + this.nonResidentialPremisesField = value; + this.RaisePropertyChanged("NonResidentialPremises"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public nsiRef HouseManagementType { + get { + return this.houseManagementTypeField; + } + set { + this.houseManagementTypeField = value; + this.RaisePropertyChanged("HouseManagementType"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportHouseResultTypeApartmentHouseEntrance : EntranceExportType { + + private System.DateTime modificationDateField; + + private string entranceGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime ModificationDate { + get { + return this.modificationDateField; + } + set { + this.modificationDateField = value; + this.RaisePropertyChanged("ModificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string EntranceGUID { + get { + return this.entranceGUIDField; + } + set { + this.entranceGUIDField = value; + this.RaisePropertyChanged("EntranceGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportHouseResultTypeApartmentHouseResidentialPremises : ResidentialPremisesExportType { + + private string premisesUniqueNumberField; + + private System.DateTime modificationDateField; + + private exportHouseResultTypeApartmentHouseResidentialPremisesLivingRoom[] livingRoomField; + + private string premisesGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesUniqueNumber { + get { + return this.premisesUniqueNumberField; + } + set { + this.premisesUniqueNumberField = value; + this.RaisePropertyChanged("PremisesUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime ModificationDate { + get { + return this.modificationDateField; + } + set { + this.modificationDateField = value; + this.RaisePropertyChanged("ModificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoom", Order=2)] + public exportHouseResultTypeApartmentHouseResidentialPremisesLivingRoom[] LivingRoom { + get { + return this.livingRoomField; + } + set { + this.livingRoomField = value; + this.RaisePropertyChanged("LivingRoom"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string PremisesGUID { + get { + return this.premisesGUIDField; + } + set { + this.premisesGUIDField = value; + this.RaisePropertyChanged("PremisesGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportHouseResultTypeApartmentHouseResidentialPremisesLivingRoom : RoomExportType { + + private string livingRoomUniqueNumberField; + + private System.DateTime modificationDateField; + + private string livingRoomGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string LivingRoomUniqueNumber { + get { + return this.livingRoomUniqueNumberField; + } + set { + this.livingRoomUniqueNumberField = value; + this.RaisePropertyChanged("LivingRoomUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime ModificationDate { + get { + return this.modificationDateField; + } + set { + this.modificationDateField = value; + this.RaisePropertyChanged("ModificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportHouseResultTypeApartmentHouseLift : LiftExportType { + + private System.DateTime modificationDateField; + + private string liftGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public System.DateTime ModificationDate { + get { + return this.modificationDateField; + } + set { + this.modificationDateField = value; + this.RaisePropertyChanged("ModificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string LiftGUID { + get { + return this.liftGUIDField; + } + set { + this.liftGUIDField = value; + this.RaisePropertyChanged("LiftGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportHouseResultTypeApartmentHouseNonResidentialPremises : NonResidentialPremisesExportType { + + private string premisesUniqueNumberField; + + private System.DateTime modificationDateField; + + private string premisesGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PremisesUniqueNumber { + get { + return this.premisesUniqueNumberField; + } + set { + this.premisesUniqueNumberField = value; + this.RaisePropertyChanged("PremisesUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime ModificationDate { + get { + return this.modificationDateField; + } + set { + this.modificationDateField = value; + this.RaisePropertyChanged("ModificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string PremisesGUID { + get { + return this.premisesGUIDField; + } + set { + this.premisesGUIDField = value; + this.RaisePropertyChanged("PremisesGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportHouseResultTypeLivingHouse : LivingHouseExportType { + + private object[] itemsField; + + private string houseGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Block", typeof(exportHouseResultTypeLivingHouseBlock), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LivingRoom", typeof(exportHouseResultTypeLivingHouseLivingRoom), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string HouseGUID { + get { + return this.houseGUIDField; + } + set { + this.houseGUIDField = value; + this.RaisePropertyChanged("HouseGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportHouseResultTypeLivingHouseBlock : BlockExportType { + + private string blockUniqueNumberField; + + private System.DateTime modificationDateField; + + private string blockGUIDField; + + private exportHouseResultTypeLivingHouseBlockLivingRoom[] livingRoomField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string BlockUniqueNumber { + get { + return this.blockUniqueNumberField; + } + set { + this.blockUniqueNumberField = value; + this.RaisePropertyChanged("BlockUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime ModificationDate { + get { + return this.modificationDateField; + } + set { + this.modificationDateField = value; + this.RaisePropertyChanged("ModificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string BlockGUID { + get { + return this.blockGUIDField; + } + set { + this.blockGUIDField = value; + this.RaisePropertyChanged("BlockGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoom", Order=3)] + public exportHouseResultTypeLivingHouseBlockLivingRoom[] LivingRoom { + get { + return this.livingRoomField; + } + set { + this.livingRoomField = value; + this.RaisePropertyChanged("LivingRoom"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportHouseResultTypeLivingHouseBlockLivingRoom : RoomExportType { + + private string livingRoomUniqueNumberField; + + private System.DateTime modificationDateField; + + private string livingRoomGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string LivingRoomUniqueNumber { + get { + return this.livingRoomUniqueNumberField; + } + set { + this.livingRoomUniqueNumberField = value; + this.RaisePropertyChanged("LivingRoomUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime ModificationDate { + get { + return this.modificationDateField; + } + set { + this.modificationDateField = value; + this.RaisePropertyChanged("ModificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportHouseResultTypeLivingHouseLivingRoom : RoomExportType { + + private string livingRoomUniqueNumberField; + + private System.DateTime modificationDateField; + + private string livingRoomGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string LivingRoomUniqueNumber { + get { + return this.livingRoomUniqueNumberField; + } + set { + this.livingRoomUniqueNumberField = value; + this.RaisePropertyChanged("LivingRoomUniqueNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime ModificationDate { + get { + return this.modificationDateField; + } + set { + this.modificationDateField = value; + this.RaisePropertyChanged("ModificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceFullInformationType : object, System.ComponentModel.INotifyPropertyChanged { + + private MeteringDeviceBasicCharacteristicsType basicChatacteristictsField; + + private object itemField; + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public MeteringDeviceBasicCharacteristicsType BasicChatacteristicts { + get { + return this.basicChatacteristictsField; + } + set { + this.basicChatacteristictsField = value; + this.RaisePropertyChanged("BasicChatacteristicts"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LinkedWithMetering", typeof(MeteringDeviceFullInformationTypeLinkedWithMetering), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NotLinkedWithMetering", typeof(bool), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("MunicipalResourceEnergy", typeof(MunicipalResourceElectricBaseType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("MunicipalResourceNotEnergy", typeof(MunicipalResourceNotElectricBaseType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("MunicipalResources", typeof(DeviceMunicipalResourceType), Order=2)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class MeteringDeviceFullInformationTypeLinkedWithMetering : object, System.ComponentModel.INotifyPropertyChanged { + + private MeteringDeviceFullInformationTypeLinkedWithMeteringInstallationPlace installationPlaceField; + + private string[] linkedMeteringDeviceVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public MeteringDeviceFullInformationTypeLinkedWithMeteringInstallationPlace InstallationPlace { + get { + return this.installationPlaceField; + } + set { + this.installationPlaceField = value; + this.RaisePropertyChanged("InstallationPlace"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LinkedMeteringDeviceVersionGUID", Order=1)] + public string[] LinkedMeteringDeviceVersionGUID { + get { + return this.linkedMeteringDeviceVersionGUIDField; + } + set { + this.linkedMeteringDeviceVersionGUIDField = value; + this.RaisePropertyChanged("LinkedMeteringDeviceVersionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum MeteringDeviceFullInformationTypeLinkedWithMeteringInstallationPlace { + + /// + @in, + + /// + @out, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class HouseToDemolishType : object, System.ComponentModel.INotifyPropertyChanged { + + private string fIASHouseGuidField; + + private System.DateTime demolishionDateField; + + private DemolishionReasonType demolishionReasonField; + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime DemolishionDate { + get { + return this.demolishionDateField; + } + set { + this.demolishionDateField = value; + this.RaisePropertyChanged("DemolishionDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public DemolishionReasonType DemolishionReason { + get { + return this.demolishionReasonField; + } + set { + this.demolishionReasonField = value; + this.RaisePropertyChanged("DemolishionReason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=3)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class ObjectType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.Xml.XmlNode[] anyField; + + private string idField; + + private string mimeTypeField; + + private string encodingField; + + /// + [System.Xml.Serialization.XmlTextAttribute()] + [System.Xml.Serialization.XmlAnyElementAttribute(Order=0)] + public System.Xml.XmlNode[] Any { + get { + return this.anyField; + } + set { + this.anyField = value; + this.RaisePropertyChanged("Any"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="ID")] + public string Id { + get { + return this.idField; + } + set { + this.idField = value; + this.RaisePropertyChanged("Id"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute()] + public string MimeType { + get { + return this.mimeTypeField; + } + set { + this.mimeTypeField = value; + this.RaisePropertyChanged("MimeType"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="anyURI")] + public string Encoding { + get { + return this.encodingField; + } + set { + this.encodingField = value; + this.RaisePropertyChanged("Encoding"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class SPKIDataType : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlAnyElementAttribute(Order=0)] + [System.Xml.Serialization.XmlElementAttribute("SPKISexp", typeof(byte[]), DataType="base64Binary", Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class PGPDataType : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType1[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlAnyElementAttribute(Order=0)] + [System.Xml.Serialization.XmlElementAttribute("PGPKeyID", typeof(byte[]), DataType="base64Binary", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("PGPKeyPacket", typeof(byte[]), DataType="base64Binary", Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType1[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#", IncludeInSchema=false)] + public enum ItemsChoiceType1 { + + /// + [System.Xml.Serialization.XmlEnumAttribute("##any:")] + Item, + + /// + PGPKeyID, + + /// + PGPKeyPacket, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class X509IssuerSerialType : object, System.ComponentModel.INotifyPropertyChanged { + + private string x509IssuerNameField; + + private string x509SerialNumberField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string X509IssuerName { + get { + return this.x509IssuerNameField; + } + set { + this.x509IssuerNameField = value; + this.RaisePropertyChanged("X509IssuerName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=1)] + public string X509SerialNumber { + get { + return this.x509SerialNumberField; + } + set { + this.x509SerialNumberField = value; + this.RaisePropertyChanged("X509SerialNumber"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class X509DataType : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlAnyElementAttribute(Order=0)] + [System.Xml.Serialization.XmlElementAttribute("X509CRL", typeof(byte[]), DataType="base64Binary", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("X509Certificate", typeof(byte[]), DataType="base64Binary", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("X509IssuerSerial", typeof(X509IssuerSerialType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("X509SKI", typeof(byte[]), DataType="base64Binary", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("X509SubjectName", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#", IncludeInSchema=false)] + public enum ItemsChoiceType { + + /// + [System.Xml.Serialization.XmlEnumAttribute("##any:")] + Item, + + /// + X509CRL, + + /// + X509Certificate, + + /// + X509IssuerSerial, + + /// + X509SKI, + + /// + X509SubjectName, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class RetrievalMethodType : object, System.ComponentModel.INotifyPropertyChanged { + + private TransformType[] transformsField; + + private string uRIField; + + private string typeField; + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=0)] + [System.Xml.Serialization.XmlArrayItemAttribute("Transform", IsNullable=false)] + public TransformType[] Transforms { + get { + return this.transformsField; + } + set { + this.transformsField = value; + this.RaisePropertyChanged("Transforms"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="anyURI")] + public string URI { + get { + return this.uRIField; + } + set { + this.uRIField = value; + this.RaisePropertyChanged("URI"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="anyURI")] + public string Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class RSAKeyValueType : object, System.ComponentModel.INotifyPropertyChanged { + + private byte[] modulusField; + + private byte[] exponentField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", Order=0)] + public byte[] Modulus { + get { + return this.modulusField; + } + set { + this.modulusField = value; + this.RaisePropertyChanged("Modulus"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", Order=1)] + public byte[] Exponent { + get { + return this.exponentField; + } + set { + this.exponentField = value; + this.RaisePropertyChanged("Exponent"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class DSAKeyValueType : object, System.ComponentModel.INotifyPropertyChanged { + + private byte[] pField; + + private byte[] qField; + + private byte[] gField; + + private byte[] yField; + + private byte[] jField; + + private byte[] seedField; + + private byte[] pgenCounterField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", Order=0)] + public byte[] P { + get { + return this.pField; + } + set { + this.pField = value; + this.RaisePropertyChanged("P"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", Order=1)] + public byte[] Q { + get { + return this.qField; + } + set { + this.qField = value; + this.RaisePropertyChanged("Q"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", Order=2)] + public byte[] G { + get { + return this.gField; + } + set { + this.gField = value; + this.RaisePropertyChanged("G"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", Order=3)] + public byte[] Y { + get { + return this.yField; + } + set { + this.yField = value; + this.RaisePropertyChanged("Y"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", Order=4)] + public byte[] J { + get { + return this.jField; + } + set { + this.jField = value; + this.RaisePropertyChanged("J"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", Order=5)] + public byte[] Seed { + get { + return this.seedField; + } + set { + this.seedField = value; + this.RaisePropertyChanged("Seed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary", Order=6)] + public byte[] PgenCounter { + get { + return this.pgenCounterField; + } + set { + this.pgenCounterField = value; + this.RaisePropertyChanged("PgenCounter"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class KeyValueType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private string[] textField; + + /// + [System.Xml.Serialization.XmlAnyElementAttribute(Order=0)] + [System.Xml.Serialization.XmlElementAttribute("DSAKeyValue", typeof(DSAKeyValueType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RSAKeyValue", typeof(RSAKeyValueType), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlTextAttribute()] + public string[] Text { + get { + return this.textField; + } + set { + this.textField = value; + this.RaisePropertyChanged("Text"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class KeyInfoType : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType2[] itemsElementNameField; + + private string[] textField; + + private string idField; + + /// + [System.Xml.Serialization.XmlAnyElementAttribute(Order=0)] + [System.Xml.Serialization.XmlElementAttribute("KeyName", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("KeyValue", typeof(KeyValueType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("MgmtData", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("PGPData", typeof(PGPDataType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RetrievalMethod", typeof(RetrievalMethodType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("SPKIData", typeof(SPKIDataType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("X509Data", typeof(X509DataType), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType2[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlTextAttribute()] + public string[] Text { + get { + return this.textField; + } + set { + this.textField = value; + this.RaisePropertyChanged("Text"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="ID")] + public string Id { + get { + return this.idField; + } + set { + this.idField = value; + this.RaisePropertyChanged("Id"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#", IncludeInSchema=false)] + public enum ItemsChoiceType2 { + + /// + [System.Xml.Serialization.XmlEnumAttribute("##any:")] + Item, + + /// + KeyName, + + /// + KeyValue, + + /// + MgmtData, + + /// + PGPData, + + /// + RetrievalMethod, + + /// + SPKIData, + + /// + X509Data, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class SignatureValueType : object, System.ComponentModel.INotifyPropertyChanged { + + private string idField; + + private byte[] valueField; + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="ID")] + public string Id { + get { + return this.idField; + } + set { + this.idField = value; + this.RaisePropertyChanged("Id"); + } + } + + /// + [System.Xml.Serialization.XmlTextAttribute(DataType="base64Binary")] + public byte[] Value { + get { + return this.valueField; + } + set { + this.valueField = value; + this.RaisePropertyChanged("Value"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class SignatureMethodType : object, System.ComponentModel.INotifyPropertyChanged { + + private string hMACOutputLengthField; + + private System.Xml.XmlNode[] anyField; + + private string algorithmField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)] + public string HMACOutputLength { + get { + return this.hMACOutputLengthField; + } + set { + this.hMACOutputLengthField = value; + this.RaisePropertyChanged("HMACOutputLength"); + } + } + + /// + [System.Xml.Serialization.XmlTextAttribute()] + [System.Xml.Serialization.XmlAnyElementAttribute(Order=1)] + public System.Xml.XmlNode[] Any { + get { + return this.anyField; + } + set { + this.anyField = value; + this.RaisePropertyChanged("Any"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="anyURI")] + public string Algorithm { + get { + return this.algorithmField; + } + set { + this.algorithmField = value; + this.RaisePropertyChanged("Algorithm"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class CanonicalizationMethodType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.Xml.XmlNode[] anyField; + + private string algorithmField; + + /// + [System.Xml.Serialization.XmlTextAttribute()] + [System.Xml.Serialization.XmlAnyElementAttribute(Order=0)] + public System.Xml.XmlNode[] Any { + get { + return this.anyField; + } + set { + this.anyField = value; + this.RaisePropertyChanged("Any"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="anyURI")] + public string Algorithm { + get { + return this.algorithmField; + } + set { + this.algorithmField = value; + this.RaisePropertyChanged("Algorithm"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class SignedInfoType : object, System.ComponentModel.INotifyPropertyChanged { + + private CanonicalizationMethodType canonicalizationMethodField; + + private SignatureMethodType signatureMethodField; + + private ReferenceType[] referenceField; + + private string idField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public CanonicalizationMethodType CanonicalizationMethod { + get { + return this.canonicalizationMethodField; + } + set { + this.canonicalizationMethodField = value; + this.RaisePropertyChanged("CanonicalizationMethod"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public SignatureMethodType SignatureMethod { + get { + return this.signatureMethodField; + } + set { + this.signatureMethodField = value; + this.RaisePropertyChanged("SignatureMethod"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Reference", Order=2)] + public ReferenceType[] Reference { + get { + return this.referenceField; + } + set { + this.referenceField = value; + this.RaisePropertyChanged("Reference"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="ID")] + public string Id { + get { + return this.idField; + } + set { + this.idField = value; + this.RaisePropertyChanged("Id"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#")] + public partial class SignatureType : object, System.ComponentModel.INotifyPropertyChanged { + + private SignedInfoType signedInfoField; + + private SignatureValueType signatureValueField; + + private KeyInfoType keyInfoField; + + private ObjectType[] objectField; + + private string idField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SignedInfoType SignedInfo { + get { + return this.signedInfoField; + } + set { + this.signedInfoField = value; + this.RaisePropertyChanged("SignedInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public SignatureValueType SignatureValue { + get { + return this.signatureValueField; + } + set { + this.signatureValueField = value; + this.RaisePropertyChanged("SignatureValue"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public KeyInfoType KeyInfo { + get { + return this.keyInfoField; + } + set { + this.keyInfoField = value; + this.RaisePropertyChanged("KeyInfo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Object", Order=3)] + public ObjectType[] Object { + get { + return this.objectField; + } + set { + this.objectField = value; + this.RaisePropertyChanged("Object"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(DataType="ID")] + public string Id { + get { + return this.idField; + } + set { + this.idField = value; + this.RaisePropertyChanged("Id"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BaseAsyncResponseType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(DemolishHouseRequestType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class BaseType : object, System.ComponentModel.INotifyPropertyChanged { + + private SignatureType signatureField; + + private string idField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://www.w3.org/2000/09/xmldsig#", Order=0)] + public SignatureType Signature { + get { + return this.signatureField; + } + set { + this.signatureField = value; + this.RaisePropertyChanged("Signature"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute()] + public string Id { + get { + return this.idField; + } + set { + this.idField = value; + this.RaisePropertyChanged("Id"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class BaseAsyncResponseType : BaseType { + + private sbyte requestStateField; + + private string messageGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public sbyte RequestState { + get { + return this.requestStateField; + } + set { + this.requestStateField = value; + this.RaisePropertyChanged("RequestState"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string MessageGUID { + get { + return this.messageGUIDField; + } + set { + this.messageGUIDField = value; + this.RaisePropertyChanged("MessageGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class DemolishHouseRequestType : BaseType { + + private HouseToDemolishType[] houseToDemolishField; + + private string versionField; + + public DemolishHouseRequestType() { + this.versionField = "11.1.0.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("HouseToDemolish", Order=0)] + public HouseToDemolishType[] HouseToDemolish { + get { + return this.houseToDemolishField; + } + set { + this.houseToDemolishField = value; + this.RaisePropertyChanged("HouseToDemolish"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ServiceModel.ServiceContractAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management-service-async/", ConfigurationName="Service.Async.HouseManagement.HouseManagementPortsTypeAsync")] + public interface HouseManagementPortsTypeAsync { + + // CODEGEN: Контракт генерации сообщений с операцией importMeteringDeviceData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importMeteringDeviceData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importMeteringDeviceData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importMeteringDeviceDataResponse importMeteringDeviceData(Hcs.Service.Async.HouseManagement.importMeteringDeviceDataRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importMeteringDeviceData", ReplyAction="*")] + System.Threading.Tasks.Task importMeteringDeviceDataAsync(Hcs.Service.Async.HouseManagement.importMeteringDeviceDataRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportMeteringDeviceData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportMeteringDeviceData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportMeteringDeviceData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataResponse exportMeteringDeviceData(Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportMeteringDeviceData", ReplyAction="*")] + System.Threading.Tasks.Task exportMeteringDeviceDataAsync(Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportODSPMeteringDeviceData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportODSPMeteringDeviceData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportODSPMeteringDeviceData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataResponse exportODSPMeteringDeviceData(Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportODSPMeteringDeviceData", ReplyAction="*")] + System.Threading.Tasks.Task exportODSPMeteringDeviceDataAsync(Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией getState не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:getState", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:getState", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.getStateResponse getState(Hcs.Service.Async.HouseManagement.getStateRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:getState", ReplyAction="*")] + System.Threading.Tasks.Task getStateAsync(Hcs.Service.Async.HouseManagement.getStateRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией importContractData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importContractData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importContractData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importContractDataResponse importContractData(Hcs.Service.Async.HouseManagement.importContractDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importContractData", ReplyAction="*")] + System.Threading.Tasks.Task importContractDataAsync(Hcs.Service.Async.HouseManagement.importContractDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией importCharterData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importCharterData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importCharterData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importCharterDataResponse importCharterData(Hcs.Service.Async.HouseManagement.importCharterDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importCharterData", ReplyAction="*")] + System.Threading.Tasks.Task importCharterDataAsync(Hcs.Service.Async.HouseManagement.importCharterDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией exportStatusCAChData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportStatusCAChData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportStatusCAChData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportStatusCAChDataResponse exportStatusCAChData(Hcs.Service.Async.HouseManagement.exportStatusCAChDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportStatusCAChData", ReplyAction="*")] + System.Threading.Tasks.Task exportStatusCAChDataAsync(Hcs.Service.Async.HouseManagement.exportStatusCAChDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией exportHouseData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportHouseData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportHouseData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportHouseDataResponse exportHouseData(Hcs.Service.Async.HouseManagement.exportHouseDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportHouseData", ReplyAction="*")] + System.Threading.Tasks.Task exportHouseDataAsync(Hcs.Service.Async.HouseManagement.exportHouseDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией importAccountData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importAccountData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importAccountData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importAccountDataResponse importAccountData(Hcs.Service.Async.HouseManagement.importAccountDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importAccountData", ReplyAction="*")] + System.Threading.Tasks.Task importAccountDataAsync(Hcs.Service.Async.HouseManagement.importAccountDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией exportAccountData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportAccountData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportAccountData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportAccountDataResponse exportAccountData(Hcs.Service.Async.HouseManagement.exportAccountDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportAccountData", ReplyAction="*")] + System.Threading.Tasks.Task exportAccountDataAsync(Hcs.Service.Async.HouseManagement.exportAccountDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией importPublicPropertyContract не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importPublicPropertyContract", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importPublicPropertyContract", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importPublicPropertyContractResponse importPublicPropertyContract(Hcs.Service.Async.HouseManagement.importPublicPropertyContractRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importPublicPropertyContract", ReplyAction="*")] + System.Threading.Tasks.Task importPublicPropertyContractAsync(Hcs.Service.Async.HouseManagement.importPublicPropertyContractRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportStatusPublicPropertyContract не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportStatusPublicPropertyContract", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportStatusPublicPropertyContract", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractResponse exportStatusPublicPropertyContract(Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportStatusPublicPropertyContract", ReplyAction="*")] + System.Threading.Tasks.Task exportStatusPublicPropertyContractAsync(Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией importNotificationData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importNotificationData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importNotificationData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importNotificationDataResponse importNotificationData(Hcs.Service.Async.HouseManagement.importNotificationDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importNotificationData", ReplyAction="*")] + System.Threading.Tasks.Task importNotificationDataAsync(Hcs.Service.Async.HouseManagement.importNotificationDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией importVotingProtocol не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importVotingProtocol", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importVotingProtocol", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importVotingProtocolResponse importVotingProtocol(Hcs.Service.Async.HouseManagement.importVotingProtocolRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importVotingProtocol", ReplyAction="*")] + System.Threading.Tasks.Task importVotingProtocolAsync(Hcs.Service.Async.HouseManagement.importVotingProtocolRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportVotingProtocol не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportVotingProtocol", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportVotingProtocol", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportVotingProtocolResponse exportVotingProtocol(Hcs.Service.Async.HouseManagement.exportVotingProtocolRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportVotingProtocol", ReplyAction="*")] + System.Threading.Tasks.Task exportVotingProtocolAsync(Hcs.Service.Async.HouseManagement.exportVotingProtocolRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией importOwnerDecision не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importOwnerDecision", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importOwnerDecision", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importOwnerDecisionResponse importOwnerDecision(Hcs.Service.Async.HouseManagement.importOwnerDecisionRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importOwnerDecision", ReplyAction="*")] + System.Threading.Tasks.Task importOwnerDecisionAsync(Hcs.Service.Async.HouseManagement.importOwnerDecisionRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportOwnerDecision не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportOwnerDecision", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportOwnerDecision", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportOwnerDecisionResponse exportOwnerDecision(Hcs.Service.Async.HouseManagement.exportOwnerDecisionRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportOwnerDecision", ReplyAction="*")] + System.Threading.Tasks.Task exportOwnerDecisionAsync(Hcs.Service.Async.HouseManagement.exportOwnerDecisionRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportCAChData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportCAChData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportCAChData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportCAChDataResponse exportCAChData(Hcs.Service.Async.HouseManagement.exportCAChDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportCAChData", ReplyAction="*")] + System.Threading.Tasks.Task exportCAChDataAsync(Hcs.Service.Async.HouseManagement.exportCAChDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией importHouseUOData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importHouseUOData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importHouseUOData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importHouseUODataResponse importHouseUOData(Hcs.Service.Async.HouseManagement.importHouseUODataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importHouseUOData", ReplyAction="*")] + System.Threading.Tasks.Task importHouseUODataAsync(Hcs.Service.Async.HouseManagement.importHouseUODataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией importHouseOMSData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importHouseOMSData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importHouseOMSData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importHouseOMSDataResponse importHouseOMSData(Hcs.Service.Async.HouseManagement.importHouseOMSDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importHouseOMSData", ReplyAction="*")] + System.Threading.Tasks.Task importHouseOMSDataAsync(Hcs.Service.Async.HouseManagement.importHouseOMSDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией importHouseESPData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importHouseESPData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importHouseESPData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importHouseESPDataResponse importHouseESPData(Hcs.Service.Async.HouseManagement.importHouseESPDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importHouseESPData", ReplyAction="*")] + System.Threading.Tasks.Task importHouseESPDataAsync(Hcs.Service.Async.HouseManagement.importHouseESPDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией importSupplyResourceContractData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importSupplyResourceContractData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importSupplyResourceContractData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataResponse importSupplyResourceContractData(Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importSupplyResourceContractData", ReplyAction="*")] + System.Threading.Tasks.Task importSupplyResourceContractDataAsync(Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией exportSupplyResourceContractData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportSupplyResourceContractData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportSupplyResourceContractData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataResponse exportSupplyResourceContractData(Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportSupplyResourceContractData", ReplyAction="*")] + System.Threading.Tasks.Task exportSupplyResourceContractDataAsync(Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией importAccountIndividualServices не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importAccountIndividualServices", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importAccountIndividualServices", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importAccountIndividualServicesResponse importAccountIndividualServices(Hcs.Service.Async.HouseManagement.importAccountIndividualServicesRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importAccountIndividualServices", ReplyAction="*")] + System.Threading.Tasks.Task importAccountIndividualServicesAsync(Hcs.Service.Async.HouseManagement.importAccountIndividualServicesRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportAccountIndividualServices не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportAccountIndividualServices", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportAccountIndividualServices", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesResponse exportAccountIndividualServices(Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportAccountIndividualServices", ReplyAction="*")] + System.Threading.Tasks.Task exportAccountIndividualServicesAsync(Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportSupplyResourceContractObjectAddressData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportSupplyResourceContractObjectAddressData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportSupplyResourceContractObjectAddressData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataResponse exportSupplyResourceContractObjectAddressData(Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportSupplyResourceContractObjectAddressData", ReplyAction="*")] + System.Threading.Tasks.Task exportSupplyResourceContractObjectAddressDataAsync(Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией importSupplyResourceContractObjectAddressData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importSupplyResourceContractObjectAddressData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importSupplyResourceContractObjectAddressData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataResponse importSupplyResourceContractObjectAddressData(Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importSupplyResourceContractObjectAddressData", ReplyAction="*")] + System.Threading.Tasks.Task importSupplyResourceContractObjectAddressDataAsync(Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией importSupplyResourceContractProjectData не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importSupplyResourceContractProjectData", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importSupplyResourceContractProjectData", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataResponse importSupplyResourceContractProjectData(Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importSupplyResourceContractProjectData", ReplyAction="*")] + System.Threading.Tasks.Task importSupplyResourceContractProjectDataAsync(Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией exportRolloverStatusCACh не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportRolloverStatusCACh", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportRolloverStatusCACh", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChResponse exportRolloverStatusCACh(Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportRolloverStatusCACh", ReplyAction="*")] + System.Threading.Tasks.Task exportRolloverStatusCAChAsync(Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportBriefSupplyResourceContract не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportBriefSupplyResourceContract", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportBriefSupplyResourceContract", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractResponse exportBriefSupplyResourceContract(Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportBriefSupplyResourceContract", ReplyAction="*")] + System.Threading.Tasks.Task exportBriefSupplyResourceContractAsync(Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportBriefSocialHireContract не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportBriefSocialHireContract", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportBriefSocialHireContract", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractResponse exportBriefSocialHireContract(Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportBriefSocialHireContract", ReplyAction="*")] + System.Threading.Tasks.Task exportBriefSocialHireContractAsync(Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией demolishHouse не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:demolishHouse", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:demolishHouse", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.demolishHouseResponse demolishHouse(Hcs.Service.Async.HouseManagement.demolishHouseRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:demolishHouse", ReplyAction="*")] + System.Threading.Tasks.Task demolishHouseAsync(Hcs.Service.Async.HouseManagement.demolishHouseRequest request); + + // CODEGEN: Контракт генерации сообщений с операцией exportBriefBasicHouse не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportBriefBasicHouse", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportBriefBasicHouse", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportBriefBasicHouseResponse exportBriefBasicHouse(Hcs.Service.Async.HouseManagement.exportBriefBasicHouseRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportBriefBasicHouse", ReplyAction="*")] + System.Threading.Tasks.Task exportBriefBasicHouseAsync(Hcs.Service.Async.HouseManagement.exportBriefBasicHouseRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportBriefLivingHouse не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportBriefLivingHouse", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportBriefLivingHouse", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportBriefLivingHouseResponse exportBriefLivingHouse(Hcs.Service.Async.HouseManagement.exportBriefLivingHouseRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportBriefLivingHouse", ReplyAction="*")] + System.Threading.Tasks.Task exportBriefLivingHouseAsync(Hcs.Service.Async.HouseManagement.exportBriefLivingHouseRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportBriefApartmentHouse не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportBriefApartmentHouse", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportBriefApartmentHouse", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseResponse exportBriefApartmentHouse(Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportBriefApartmentHouse", ReplyAction="*")] + System.Threading.Tasks.Task exportBriefApartmentHouseAsync(Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией importExternalVotingProtocol не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importExternalVotingProtocol", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importExternalVotingProtocol", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importExternalVotingProtocolResponse importExternalVotingProtocol(Hcs.Service.Async.HouseManagement.importExternalVotingProtocolRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importExternalVotingProtocol", ReplyAction="*")] + System.Threading.Tasks.Task importExternalVotingProtocolAsync(Hcs.Service.Async.HouseManagement.importExternalVotingProtocolRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией importVotingMessage не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importVotingMessage", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importVotingMessage", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importVotingMessageResponse importVotingMessage(Hcs.Service.Async.HouseManagement.importVotingMessageRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importVotingMessage", ReplyAction="*")] + System.Threading.Tasks.Task importVotingMessageAsync(Hcs.Service.Async.HouseManagement.importVotingMessageRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportVotingMessage не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportVotingMessage", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportVotingMessage", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportVotingMessageResponse exportVotingMessage(Hcs.Service.Async.HouseManagement.exportVotingMessageRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportVotingMessage", ReplyAction="*")] + System.Threading.Tasks.Task exportVotingMessageAsync(Hcs.Service.Async.HouseManagement.exportVotingMessageRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией importOwnerRefusal не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:importOwnerRefusal", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:importOwnerRefusal", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.importOwnerRefusalResponse importOwnerRefusal(Hcs.Service.Async.HouseManagement.importOwnerRefusalRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:importOwnerRefusal", ReplyAction="*")] + System.Threading.Tasks.Task importOwnerRefusalAsync(Hcs.Service.Async.HouseManagement.importOwnerRefusalRequest1 request); + + // CODEGEN: Контракт генерации сообщений с операцией exportOwnerRefusal не является ни RPC, ни упакованным документом. + [System.ServiceModel.OperationContractAttribute(Action="urn:exportOwnerRefusal", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Hcs.Service.Async.HouseManagement.Fault), Action="urn:exportOwnerRefusal", Name="Fault", Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiItemType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(NsiListType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignaturePropertiesType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManifestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntpsType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ForeignBranchType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SubsidiaryType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LegalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PaymentReasonType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DocumentPortalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PeriodOpen))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(Period))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(YearMonth))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CommonResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SignedAttachmentType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(HeaderType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MeteringDeviceFullInformationExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerRefusalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportQuestionOnDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OwnerDecisionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExternalVotingProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AnnulmentProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MessageType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(VoitingType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseServiceCharterType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApprovalType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DeleteDocType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RollOverType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ProtocolOKType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(DaySelectionType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(MainInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountIndividualServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountUpdateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountReasonsImportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(AccountType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUpdateUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseESPType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseOMSType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseUOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OGFImportStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKNRelationshipStatusType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyRSOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSocialHireContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportOwnerDecisionResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportBriefSupplyResourceContractResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractProjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportSupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(IndicatorValueType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectObjectAdressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ObjectAddressType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractSubjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SupplyResourceContractType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FIOType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(PublicPropertyContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChRequestCriteriaType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(CharterExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractPaymentsInfoType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractServiceType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ManageObjectType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(TerminateType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ContractExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportRolloverStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportStatusCAChResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportODSPMeteringDeviceDataResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BriefApartmentHouseType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefLivingHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ExportBriefBasicHouseRequestType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LivingHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(LiftExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(EntranceExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(GKN_EGRP_KeyExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(ApartmentHouseExportType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(exportHouseResultType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BaseType))] + Hcs.Service.Async.HouseManagement.exportOwnerRefusalResponse exportOwnerRefusal(Hcs.Service.Async.HouseManagement.exportOwnerRefusalRequest1 request); + + [System.ServiceModel.OperationContractAttribute(Action="urn:exportOwnerRefusal", ReplyAction="*")] + System.Threading.Tasks.Task exportOwnerRefusalAsync(Hcs.Service.Async.HouseManagement.exportOwnerRefusalRequest1 request); + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class RequestHeader : HeaderType { + + private object itemField; + + private ItemChoiceType25 itemElementNameField; + + private bool isOperatorSignatureField; + + private bool isOperatorSignatureFieldSpecified; + + private ISCreator[] iSCreatorField; + + public RequestHeader() { + this.isOperatorSignatureField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Citizen", typeof(RequestHeaderCitizen), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("SenderID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("orgPPAGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType25 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool IsOperatorSignature { + get { + return this.isOperatorSignatureField; + } + set { + this.isOperatorSignatureField = value; + this.RaisePropertyChanged("IsOperatorSignature"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsOperatorSignatureSpecified { + get { + return this.isOperatorSignatureFieldSpecified; + } + set { + this.isOperatorSignatureFieldSpecified = value; + this.RaisePropertyChanged("IsOperatorSignatureSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ISCreator", Order=3)] + public ISCreator[] ISCreator { + get { + return this.iSCreatorField; + } + set { + this.iSCreatorField = value; + this.RaisePropertyChanged("ISCreator"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class RequestHeaderCitizen : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType23[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("CitizenPPAGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Document", typeof(RequestHeaderCitizenDocument), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("SNILS", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType23[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class RequestHeaderCitizenDocument : object, System.ComponentModel.INotifyPropertyChanged { + + private RequestHeaderCitizenDocumentDocumentType documentTypeField; + + private string seriesField; + + private string numberField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public RequestHeaderCitizenDocumentDocumentType DocumentType { + get { + return this.documentTypeField; + } + set { + this.documentTypeField = value; + this.RaisePropertyChanged("DocumentType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Series { + get { + return this.seriesField; + } + set { + this.seriesField = value; + this.RaisePropertyChanged("Series"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Number { + get { + return this.numberField; + } + set { + this.numberField = value; + this.RaisePropertyChanged("Number"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class RequestHeaderCitizenDocumentDocumentType : object, System.ComponentModel.INotifyPropertyChanged { + + private string codeField; + + private string gUIDField; + + private string nameField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Code { + get { + return this.codeField; + } + set { + this.codeField = value; + this.RaisePropertyChanged("Code"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string GUID { + get { + return this.gUIDField; + } + set { + this.gUIDField = value; + this.RaisePropertyChanged("GUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Name { + get { + return this.nameField; + } + set { + this.nameField = value; + this.RaisePropertyChanged("Name"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", IncludeInSchema=false)] + public enum ItemsChoiceType23 { + + /// + CitizenPPAGUID, + + /// + Document, + + /// + SNILS, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", IncludeInSchema=false)] + public enum ItemChoiceType25 { + + /// + Citizen, + + /// + SenderID, + + /// + orgPPAGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class ISCreator : object, System.ComponentModel.INotifyPropertyChanged { + + private string iSNameField; + + private string iSOperatorNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ISName { + get { + return this.iSNameField; + } + set { + this.iSNameField = value; + this.RaisePropertyChanged("ISName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ISOperatorName { + get { + return this.iSOperatorNameField; + } + set { + this.iSOperatorNameField = value; + this.RaisePropertyChanged("ISOperatorName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importMeteringDeviceDataRequest : BaseType { + + private string fIASHouseGuidField; + + private importMeteringDeviceDataRequestMeteringDevice[] meteringDeviceField; + + private string versionField; + + public importMeteringDeviceDataRequest() { + this.versionField = "11.1.0.8"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("MeteringDevice", Order=1)] + public importMeteringDeviceDataRequestMeteringDevice[] MeteringDevice { + get { + return this.meteringDeviceField; + } + set { + this.meteringDeviceField = value; + this.RaisePropertyChanged("MeteringDevice"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importMeteringDeviceDataRequestMeteringDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("DeviceDataToCreate", typeof(MeteringDeviceFullInformationType), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("DeviceDataToUpdate", typeof(importMeteringDeviceDataRequestMeteringDeviceDeviceDataToUpdate), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importMeteringDeviceDataRequestMeteringDeviceDeviceDataToUpdate : object, System.ComponentModel.INotifyPropertyChanged { + + private string meteringDeviceVersionGUIDField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MeteringDeviceVersionGUID { + get { + return this.meteringDeviceVersionGUIDField; + } + set { + this.meteringDeviceVersionGUIDField = value; + this.RaisePropertyChanged("MeteringDeviceVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ArchiveDevice", typeof(importMeteringDeviceDataRequestMeteringDeviceDeviceDataToUpdateArchiveDevice), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("LinkedWithMetering", typeof(importMeteringDeviceDataRequestMeteringDeviceDeviceDataToUpdateLinkedWithMetering), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ReplaceDevice", typeof(importMeteringDeviceDataRequestMeteringDeviceDeviceDataToUpdateReplaceDevice), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("UpdateAfterDevicesValues", typeof(MeteringDeviceToUpdateAfterDevicesValuesType), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("UpdateBeforeDevicesValues", typeof(MeteringDeviceFullInformationType), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importMeteringDeviceDataRequestMeteringDeviceDeviceDataToUpdateArchiveDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private nsiRef archivingReasonField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef ArchivingReason { + get { + return this.archivingReasonField; + } + set { + this.archivingReasonField = value; + this.RaisePropertyChanged("ArchivingReason"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importMeteringDeviceDataRequestMeteringDeviceDeviceDataToUpdateLinkedWithMetering : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] linkedMeteringDeviceVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LinkedMeteringDeviceVersionGUID", Order=0)] + public string[] LinkedMeteringDeviceVersionGUID { + get { + return this.linkedMeteringDeviceVersionGUIDField; + } + set { + this.linkedMeteringDeviceVersionGUIDField = value; + this.RaisePropertyChanged("LinkedMeteringDeviceVersionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importMeteringDeviceDataRequestMeteringDeviceDeviceDataToUpdateReplaceDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime verificationDateField; + + private object itemField; + + private object[] itemsField; + + private string replacingMeteringDeviceVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime VerificationDate { + get { + return this.verificationDateField; + } + set { + this.verificationDateField = value; + this.RaisePropertyChanged("VerificationDate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("PlannedVerification", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ReasonVerification", typeof(nsiRef), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("DeviceValueMunicipalResourceElectric", typeof(ElectricMeteringValueBaseType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("DeviceValueMunicipalResourceNotElectric", typeof(OneRateMeteringValueBaseType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("VolumeDeviceValues", typeof(VolumeMeteringValueBaseType), Order=2)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string ReplacingMeteringDeviceVersionGUID { + get { + return this.replacingMeteringDeviceVersionGUIDField; + } + set { + this.replacingMeteringDeviceVersionGUIDField = value; + this.RaisePropertyChanged("ReplacingMeteringDeviceVersionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class ResultHeader : HeaderType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class AckRequest : object, System.ComponentModel.INotifyPropertyChanged { + + private AckRequestAck ackField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AckRequestAck Ack { + get { + return this.ackField; + } + set { + this.ackField = value; + this.RaisePropertyChanged("Ack"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class AckRequestAck : object, System.ComponentModel.INotifyPropertyChanged { + + private string messageGUIDField; + + private string requesterMessageGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MessageGUID { + get { + return this.messageGUIDField; + } + set { + this.messageGUIDField = value; + this.RaisePropertyChanged("MessageGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string RequesterMessageGUID { + get { + return this.requesterMessageGUIDField; + } + set { + this.requesterMessageGUIDField = value; + this.RaisePropertyChanged("RequesterMessageGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importMeteringDeviceDataRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importMeteringDeviceDataRequest importMeteringDeviceDataRequest; + + public importMeteringDeviceDataRequest1() { + } + + public importMeteringDeviceDataRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importMeteringDeviceDataRequest importMeteringDeviceDataRequest) { + this.RequestHeader = RequestHeader; + this.importMeteringDeviceDataRequest = importMeteringDeviceDataRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importMeteringDeviceDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importMeteringDeviceDataResponse() { + } + + public importMeteringDeviceDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportMeteringDeviceDataRequest : BaseType { + + private object[] itemsField; + + private ItemsChoiceType24[] itemsElementNameField; + + private bool includeFIASHouseGuidField; + + private bool includeFIASHouseGuidFieldSpecified; + + private string versionField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ArchiveDateFrom", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ArchiveDateTo", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CommissioningDateFrom", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CommissioningDateTo", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("IsCurrentOrganization", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("MeteringDeviceRootGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("MeteringDeviceType", typeof(nsiRef), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("MeteringDeviceVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("MunicipalResource", typeof(nsiRef), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("SearchArchived", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("UpdateDateTime", typeof(System.DateTime), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType24[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public bool IncludeFIASHouseGuid { + get { + return this.includeFIASHouseGuidField; + } + set { + this.includeFIASHouseGuidField = value; + this.RaisePropertyChanged("IncludeFIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IncludeFIASHouseGuidSpecified { + get { + return this.includeFIASHouseGuidFieldSpecified; + } + set { + this.includeFIASHouseGuidFieldSpecified = value; + this.RaisePropertyChanged("IncludeFIASHouseGuidSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType24 { + + /// + ArchiveDateFrom, + + /// + ArchiveDateTo, + + /// + CommissioningDateFrom, + + /// + CommissioningDateTo, + + /// + FIASHouseGuid, + + /// + IsCurrentOrganization, + + /// + MeteringDeviceRootGUID, + + /// + MeteringDeviceType, + + /// + MeteringDeviceVersionGUID, + + /// + MunicipalResource, + + /// + SearchArchived, + + /// + UpdateDateTime, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportMeteringDeviceDataRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataRequest exportMeteringDeviceDataRequest; + + public exportMeteringDeviceDataRequest1() { + } + + public exportMeteringDeviceDataRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataRequest exportMeteringDeviceDataRequest) { + this.RequestHeader = RequestHeader; + this.exportMeteringDeviceDataRequest = exportMeteringDeviceDataRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportMeteringDeviceDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportMeteringDeviceDataResponse() { + } + + public exportMeteringDeviceDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportODSPMeteringDeviceDataRequest : BaseType { + + private string accountNumberField; + + private string versionField; + + public exportODSPMeteringDeviceDataRequest() { + this.versionField = "15.3.0.0"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string AccountNumber { + get { + return this.accountNumberField; + } + set { + this.accountNumberField = value; + this.RaisePropertyChanged("AccountNumber"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportODSPMeteringDeviceDataRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataRequest exportODSPMeteringDeviceDataRequest; + + public exportODSPMeteringDeviceDataRequest1() { + } + + public exportODSPMeteringDeviceDataRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataRequest exportODSPMeteringDeviceDataRequest) { + this.RequestHeader = RequestHeader; + this.exportODSPMeteringDeviceDataRequest = exportODSPMeteringDeviceDataRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportODSPMeteringDeviceDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportODSPMeteringDeviceDataResponse() { + } + + public exportODSPMeteringDeviceDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class getStateRequest : object, System.ComponentModel.INotifyPropertyChanged { + + private string messageGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MessageGUID { + get { + return this.messageGUIDField; + } + set { + this.messageGUIDField = value; + this.RaisePropertyChanged("MessageGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResult : BaseAsyncResponseType { + + private object[] itemsField; + + private string versionField; + + public getStateResult() { + this.versionField = "11.0.0.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ErrorMessage", typeof(ErrorMessageType), Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ImportResult", typeof(getStateResultImportResult), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("VotingMessage", typeof(exportVotingMessageResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("VotingProtocol", typeof(exportVotingProtocolResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportAccountIndividualServicesResult", typeof(exportAccountIndividualServicesResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportAccountResult", typeof(exportAccountResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportBriefApartmentHouseResult", typeof(getStateResultExportBriefApartmentHouseResult), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportBriefBasicHouseResult", typeof(getStateResultExportBriefBasicHouseResult), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportBriefLivingHouseResult", typeof(getStateResultExportBriefLivingHouseResult), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportBriefSocialHireContract", typeof(exportBriefSocialHireContractResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportBriefSupplyResourceContractResult", typeof(getStateResultExportBriefSupplyResourceContractResult), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportCAChResult", typeof(exportCAChResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportHouseResult", typeof(exportHouseResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportMeteringDeviceDataResult", typeof(exportMeteringDeviceDataResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportODSPMeteringDeviceDataResult", typeof(exportODSPMeteringDeviceDataResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportOwnerDecision", typeof(exportOwnerDecisionResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportOwnerRefusal", typeof(OwnerRefusalExportType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportStatusCAChResult", typeof(exportStatusCAChResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportStatusPublicPropertyContractResult", typeof(exportStatusPublicPropertyContractResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportSupplyResourceContractObjectAddress", typeof(getStateResultExportSupplyResourceContractObjectAddress), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("exportSupplyResourceContractResult", typeof(getStateResultExportSupplyResourceContractResult), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("rolloverCAChStatus", typeof(exportRolloverStatusCAChResultType), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultImportResult : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private string versionField; + + public getStateResultImportResult() { + this.versionField = "10.0.1.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ErrorMessage", typeof(ErrorMessageType), Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CommonResult", typeof(getStateResultImportResultCommonResult), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultImportResultCommonResult : CommonResultType { + + private object itemField; + + private ItemChoiceType26 itemElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ImportAccount", typeof(getStateResultImportResultCommonResultImportAccount), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ImportHouseESP", typeof(OGFImportStatusType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ImportHouseOMS", typeof(OGFImportStatusType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ImportHouseUO", typeof(OGFImportStatusType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ImportSupplyResourceContract", typeof(getStateResultImportResultCommonResultImportSupplyResourceContract), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ImportSupplyResourceContractObjectAddress", typeof(getStateResultImportResultCommonResultImportSupplyResourceContractObjectAddress), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ImportSupplyResourceContractProject", typeof(getStateResultImportResultCommonResultImportSupplyResourceContractProject), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("importCharter", typeof(importCharterResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("importContract", typeof(importContractResultType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("importMeteringDevice", typeof(getStateResultImportResultCommonResultImportMeteringDevice), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType26 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultImportResultCommonResultImportAccount : object, System.ComponentModel.INotifyPropertyChanged { + + private string unifiedAccountNumberField; + + private string serviceIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/account-base/", Order=0)] + public string UnifiedAccountNumber { + get { + return this.unifiedAccountNumberField; + } + set { + this.unifiedAccountNumberField = value; + this.RaisePropertyChanged("UnifiedAccountNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/account-base/", Order=1)] + public string ServiceID { + get { + return this.serviceIDField; + } + set { + this.serviceIDField = value; + this.RaisePropertyChanged("ServiceID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultImportResultCommonResultImportSupplyResourceContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractGUIDField; + + private string contractRootGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractGUID { + get { + return this.contractGUIDField; + } + set { + this.contractGUIDField = value; + this.RaisePropertyChanged("ContractGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ContractRootGUID { + get { + return this.contractRootGUIDField; + } + set { + this.contractRootGUIDField = value; + this.RaisePropertyChanged("ContractRootGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultImportResultCommonResultImportSupplyResourceContractObjectAddress : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractGUID { + get { + return this.contractGUIDField; + } + set { + this.contractGUIDField = value; + this.RaisePropertyChanged("ContractGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultImportResultCommonResultImportSupplyResourceContractProject : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractGUID { + get { + return this.contractGUIDField; + } + set { + this.contractGUIDField = value; + this.RaisePropertyChanged("ContractGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultImportResultCommonResultImportMeteringDevice : object, System.ComponentModel.INotifyPropertyChanged { + + private string meteringDeviceGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MeteringDeviceGUID { + get { + return this.meteringDeviceGUIDField; + } + set { + this.meteringDeviceGUIDField = value; + this.RaisePropertyChanged("MeteringDeviceGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType26 { + + /// + ImportAccount, + + /// + ImportHouseESP, + + /// + ImportHouseOMS, + + /// + ImportHouseUO, + + /// + ImportSupplyResourceContract, + + /// + ImportSupplyResourceContractObjectAddress, + + /// + ImportSupplyResourceContractProject, + + /// + importCharter, + + /// + importContract, + + /// + importMeteringDevice, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultExportBriefApartmentHouseResult : object, System.ComponentModel.INotifyPropertyChanged { + + private BriefApartmentHouseType apartmentHouseInfoField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BriefApartmentHouseType ApartmentHouseInfo { + get { + return this.apartmentHouseInfoField; + } + set { + this.apartmentHouseInfoField = value; + this.RaisePropertyChanged("ApartmentHouseInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultExportBriefBasicHouseResult : object, System.ComponentModel.INotifyPropertyChanged { + + private ExportBriefBasicHouseResultType[] resultItemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ResultItem", Order=0)] + public ExportBriefBasicHouseResultType[] ResultItem { + get { + return this.resultItemField; + } + set { + this.resultItemField = value; + this.RaisePropertyChanged("ResultItem"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultExportBriefLivingHouseResult : object, System.ComponentModel.INotifyPropertyChanged { + + private ExportBriefLivingHouseResultType[] resultItemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ResultItem", Order=0)] + public ExportBriefLivingHouseResultType[] ResultItem { + get { + return this.resultItemField; + } + set { + this.resultItemField = value; + this.RaisePropertyChanged("ResultItem"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultExportBriefSupplyResourceContractResult : object, System.ComponentModel.INotifyPropertyChanged { + + private exportBriefSupplyResourceContractResultType[] contractField; + + private object[] itemsField; + + private ItemsChoiceType25[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Contract", Order=0)] + public exportBriefSupplyResourceContractResultType[] Contract { + get { + return this.contractField; + } + set { + this.contractField = value; + this.RaisePropertyChanged("Contract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("IsLastPage", typeof(bool), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NextPageContractRootGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("NextPageObjectGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType25[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType25 { + + /// + IsLastPage, + + /// + NextPageContractRootGUID, + + /// + NextPageObjectGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportStatusPublicPropertyContractResultType : object, System.ComponentModel.INotifyPropertyChanged { + + private exportStatusPublicPropertyContractResultTypePublicPropertyContract[] publicPropertyContractField; + + /// + [System.Xml.Serialization.XmlElementAttribute("PublicPropertyContract", Order=0)] + public exportStatusPublicPropertyContractResultTypePublicPropertyContract[] PublicPropertyContract { + get { + return this.publicPropertyContractField; + } + set { + this.publicPropertyContractField = value; + this.RaisePropertyChanged("PublicPropertyContract"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportStatusPublicPropertyContractResultTypePublicPropertyContract : PublicPropertyContractExportType { + + private string contractGUIDField; + + private string statusContractField; + + private string contractVersionGUIDField; + + private string versionNumberField; + + private string statusVersionField; + + private exportStatusPublicPropertyContractResultTypePublicPropertyContractPaymentInterval paymentIntervalField; + + private exportStatusPublicPropertyContractResultTypePublicPropertyContractAgreementPayment[] agreementPaymentField; + + private bool isGratuitousBasisField; + + private bool isGratuitousBasisFieldSpecified; + + public exportStatusPublicPropertyContractResultTypePublicPropertyContract() { + this.isGratuitousBasisField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractGUID { + get { + return this.contractGUIDField; + } + set { + this.contractGUIDField = value; + this.RaisePropertyChanged("ContractGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string StatusContract { + get { + return this.statusContractField; + } + set { + this.statusContractField = value; + this.RaisePropertyChanged("StatusContract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ContractVersionGUID { + get { + return this.contractVersionGUIDField; + } + set { + this.contractVersionGUIDField = value; + this.RaisePropertyChanged("ContractVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=3)] + public string VersionNumber { + get { + return this.versionNumberField; + } + set { + this.versionNumberField = value; + this.RaisePropertyChanged("VersionNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string StatusVersion { + get { + return this.statusVersionField; + } + set { + this.statusVersionField = value; + this.RaisePropertyChanged("StatusVersion"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public exportStatusPublicPropertyContractResultTypePublicPropertyContractPaymentInterval PaymentInterval { + get { + return this.paymentIntervalField; + } + set { + this.paymentIntervalField = value; + this.RaisePropertyChanged("PaymentInterval"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AgreementPayment", Order=6)] + public exportStatusPublicPropertyContractResultTypePublicPropertyContractAgreementPayment[] AgreementPayment { + get { + return this.agreementPaymentField; + } + set { + this.agreementPaymentField = value; + this.RaisePropertyChanged("AgreementPayment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public bool IsGratuitousBasis { + get { + return this.isGratuitousBasisField; + } + set { + this.isGratuitousBasisField = value; + this.RaisePropertyChanged("IsGratuitousBasis"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsGratuitousBasisSpecified { + get { + return this.isGratuitousBasisFieldSpecified; + } + set { + this.isGratuitousBasisFieldSpecified = value; + this.RaisePropertyChanged("IsGratuitousBasisSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportStatusPublicPropertyContractResultTypePublicPropertyContractPaymentInterval : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType8[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("EndDate", typeof(DaySelectionExportType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Other", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(DaySelectionExportType), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType8[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType8 { + + /// + EndDate, + + /// + Other, + + /// + StartDate, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportStatusPublicPropertyContractResultTypePublicPropertyContractAgreementPayment : object, System.ComponentModel.INotifyPropertyChanged { + + private string agreementPaymentVersionGUIDField; + + private exportStatusPublicPropertyContractResultTypePublicPropertyContractAgreementPaymentDatePeriod datePeriodField; + + private decimal billField; + + private decimal debtField; + + private decimal paidField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string AgreementPaymentVersionGUID { + get { + return this.agreementPaymentVersionGUIDField; + } + set { + this.agreementPaymentVersionGUIDField = value; + this.RaisePropertyChanged("AgreementPaymentVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public exportStatusPublicPropertyContractResultTypePublicPropertyContractAgreementPaymentDatePeriod DatePeriod { + get { + return this.datePeriodField; + } + set { + this.datePeriodField = value; + this.RaisePropertyChanged("DatePeriod"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal Bill { + get { + return this.billField; + } + set { + this.billField = value; + this.RaisePropertyChanged("Bill"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public decimal Debt { + get { + return this.debtField; + } + set { + this.debtField = value; + this.RaisePropertyChanged("Debt"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public decimal Paid { + get { + return this.paidField; + } + set { + this.paidField = value; + this.RaisePropertyChanged("Paid"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportStatusPublicPropertyContractResultTypePublicPropertyContractAgreementPaymentDatePeriod : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime dateFromField; + + private System.DateTime dateToField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime DateFrom { + get { + return this.dateFromField; + } + set { + this.dateFromField = value; + this.RaisePropertyChanged("DateFrom"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime DateTo { + get { + return this.dateToField; + } + set { + this.dateToField = value; + this.RaisePropertyChanged("DateTo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultExportSupplyResourceContractObjectAddress : object, System.ComponentModel.INotifyPropertyChanged { + + private exportSupplyResourceContractObjectAddressResultType[] objectAddressField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ObjectAddress", Order=0)] + public exportSupplyResourceContractObjectAddressResultType[] ObjectAddress { + get { + return this.objectAddressField; + } + set { + this.objectAddressField = value; + this.RaisePropertyChanged("ObjectAddress"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ExportObjectGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("IsLastPage", typeof(bool), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class getStateResultExportSupplyResourceContractResult : object, System.ComponentModel.INotifyPropertyChanged { + + private exportSupplyResourceContractResultType[] contractField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Contract", Order=0)] + public exportSupplyResourceContractResultType[] Contract { + get { + return this.contractField; + } + set { + this.contractField = value; + this.RaisePropertyChanged("Contract"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ExportContractRootGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("IsLastPage", typeof(bool), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class getStateRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.getStateRequest getStateRequest; + + public getStateRequest1() { + } + + public getStateRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.getStateRequest getStateRequest) { + this.RequestHeader = RequestHeader; + this.getStateRequest = getStateRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class getStateResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.getStateResult getStateResult; + + public getStateResponse() { + } + + public getStateResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.getStateResult getStateResult) { + this.ResultHeader = ResultHeader; + this.getStateResult = getStateResult; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequest : BaseType { + + private importContractRequestContract[] contractField; + + private string versionField; + + public importContractRequest() { + this.versionField = "11.9.0.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Contract", Order=0)] + public importContractRequestContract[] Contract { + get { + return this.contractField; + } + set { + this.contractField = value; + this.RaisePropertyChanged("Contract"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AnnulmentContract", typeof(importContractRequestContractAnnulmentContract), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("AnnulmentContractPaymentsInfo", typeof(importContractRequestContractAnnulmentContractPaymentsInfo), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ApprovalContract", typeof(importContractRequestContractApprovalContract), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("EditContract", typeof(importContractRequestContractEditContract), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("PlaceContractPaymentsInfo", typeof(importContractRequestContractPlaceContractPaymentsInfo), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("PlacingContract", typeof(importContractRequestContractPlacingContract), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("RollOverContract", typeof(importContractRequestContractRollOverContract), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("TerminateContract", typeof(importContractRequestContractTerminateContract), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractAnnulmentContract : AnnulmentType { + + private bool licenseRequestField; + + private bool licenseRequestFieldSpecified; + + private string contractVersionGUIDField; + + public importContractRequestContractAnnulmentContract() { + this.licenseRequestField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool LicenseRequest { + get { + return this.licenseRequestField; + } + set { + this.licenseRequestField = value; + this.RaisePropertyChanged("LicenseRequest"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool LicenseRequestSpecified { + get { + return this.licenseRequestFieldSpecified; + } + set { + this.licenseRequestFieldSpecified = value; + this.RaisePropertyChanged("LicenseRequestSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ContractVersionGUID { + get { + return this.contractVersionGUIDField; + } + set { + this.contractVersionGUIDField = value; + this.RaisePropertyChanged("ContractVersionGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractAnnulmentContractPaymentsInfo : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractPaymentsInfoVersionGUIDField; + + private string reasonField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractPaymentsInfoVersionGUID { + get { + return this.contractPaymentsInfoVersionGUIDField; + } + set { + this.contractPaymentsInfoVersionGUIDField = value; + this.RaisePropertyChanged("ContractPaymentsInfoVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string Reason { + get { + return this.reasonField; + } + set { + this.reasonField = value; + this.RaisePropertyChanged("Reason"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractApprovalContract : ApprovalType { + + private string contractVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractVersionGUID { + get { + return this.contractVersionGUIDField; + } + set { + this.contractVersionGUIDField = value; + this.RaisePropertyChanged("ContractVersionGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractEditContract : ContractType { + + private bool licenseRequestField; + + private bool licenseRequestFieldSpecified; + + private importContractRequestContractEditContractContractObject[] contractObjectField; + + private string contractVersionGUIDField; + + private bool indicationsAnyDayField; + + private bool indicationsAnyDayFieldSpecified; + + public importContractRequestContractEditContract() { + this.licenseRequestField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool LicenseRequest { + get { + return this.licenseRequestField; + } + set { + this.licenseRequestField = value; + this.RaisePropertyChanged("LicenseRequest"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool LicenseRequestSpecified { + get { + return this.licenseRequestFieldSpecified; + } + set { + this.licenseRequestFieldSpecified = value; + this.RaisePropertyChanged("LicenseRequestSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractObject", Order=1)] + public importContractRequestContractEditContractContractObject[] ContractObject { + get { + return this.contractObjectField; + } + set { + this.contractObjectField = value; + this.RaisePropertyChanged("ContractObject"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string ContractVersionGUID { + get { + return this.contractVersionGUIDField; + } + set { + this.contractVersionGUIDField = value; + this.RaisePropertyChanged("ContractVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public bool IndicationsAnyDay { + get { + return this.indicationsAnyDayField; + } + set { + this.indicationsAnyDayField = value; + this.RaisePropertyChanged("IndicationsAnyDay"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IndicationsAnyDaySpecified { + get { + return this.indicationsAnyDayFieldSpecified; + } + set { + this.indicationsAnyDayFieldSpecified = value; + this.RaisePropertyChanged("IndicationsAnyDaySpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractEditContractContractObject : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Add", typeof(importContractRequestContractEditContractContractObjectAdd), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("Annulment", typeof(importContractRequestContractEditContractContractObjectAnnulment), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("Edit", typeof(importContractRequestContractEditContractContractObjectEdit), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractEditContractContractObjectAdd : ManageObjectType { + + private BaseServiceType baseMServiceField; + + private importContractRequestContractEditContractContractObjectAddHouseService[] houseServiceField; + + private importContractRequestContractEditContractContractObjectAddAddService[] addServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseMService { + get { + return this.baseMServiceField; + } + set { + this.baseMServiceField = value; + this.RaisePropertyChanged("BaseMService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("HouseService", Order=1)] + public importContractRequestContractEditContractContractObjectAddHouseService[] HouseService { + get { + return this.houseServiceField; + } + set { + this.houseServiceField = value; + this.RaisePropertyChanged("HouseService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AddService", Order=2)] + public importContractRequestContractEditContractContractObjectAddAddService[] AddService { + get { + return this.addServiceField; + } + set { + this.addServiceField = value; + this.RaisePropertyChanged("AddService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractEditContractContractObjectAddHouseService : ContractServiceType { + + private BaseServiceType baseServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseService { + get { + return this.baseServiceField; + } + set { + this.baseServiceField = value; + this.RaisePropertyChanged("BaseService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractEditContractContractObjectAddAddService : ContractServiceType { + + private BaseServiceType baseServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseService { + get { + return this.baseServiceField; + } + set { + this.baseServiceField = value; + this.RaisePropertyChanged("BaseService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractEditContractContractObjectAnnulment : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractObjectVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractObjectVersionGUID { + get { + return this.contractObjectVersionGUIDField; + } + set { + this.contractObjectVersionGUIDField = value; + this.RaisePropertyChanged("ContractObjectVersionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractEditContractContractObjectEdit : ManageObjectType { + + private string contractObjectVersionGUIDField; + + private BaseServiceType baseMServiceField; + + private importContractRequestContractEditContractContractObjectEditHouseService[] houseServiceField; + + private importContractRequestContractEditContractContractObjectEditAddService[] addServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractObjectVersionGUID { + get { + return this.contractObjectVersionGUIDField; + } + set { + this.contractObjectVersionGUIDField = value; + this.RaisePropertyChanged("ContractObjectVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public BaseServiceType BaseMService { + get { + return this.baseMServiceField; + } + set { + this.baseMServiceField = value; + this.RaisePropertyChanged("BaseMService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("HouseService", Order=2)] + public importContractRequestContractEditContractContractObjectEditHouseService[] HouseService { + get { + return this.houseServiceField; + } + set { + this.houseServiceField = value; + this.RaisePropertyChanged("HouseService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AddService", Order=3)] + public importContractRequestContractEditContractContractObjectEditAddService[] AddService { + get { + return this.addServiceField; + } + set { + this.addServiceField = value; + this.RaisePropertyChanged("AddService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractEditContractContractObjectEditHouseService : ContractServiceType { + + private BaseServiceType baseServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseService { + get { + return this.baseServiceField; + } + set { + this.baseServiceField = value; + this.RaisePropertyChanged("BaseService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractEditContractContractObjectEditAddService : ContractServiceType { + + private BaseServiceType baseServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseService { + get { + return this.baseServiceField; + } + set { + this.baseServiceField = value; + this.RaisePropertyChanged("BaseService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractPlaceContractPaymentsInfo : ContractPaymentsInfoType { + + private string contractVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractVersionGUID { + get { + return this.contractVersionGUIDField; + } + set { + this.contractVersionGUIDField = value; + this.RaisePropertyChanged("ContractVersionGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractPlacingContract : ContractType { + + private bool licenseRequestField; + + private bool licenseRequestFieldSpecified; + + private importContractRequestContractPlacingContractContractObject[] contractObjectField; + + public importContractRequestContractPlacingContract() { + this.licenseRequestField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool LicenseRequest { + get { + return this.licenseRequestField; + } + set { + this.licenseRequestField = value; + this.RaisePropertyChanged("LicenseRequest"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool LicenseRequestSpecified { + get { + return this.licenseRequestFieldSpecified; + } + set { + this.licenseRequestFieldSpecified = value; + this.RaisePropertyChanged("LicenseRequestSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractObject", Order=1)] + public importContractRequestContractPlacingContractContractObject[] ContractObject { + get { + return this.contractObjectField; + } + set { + this.contractObjectField = value; + this.RaisePropertyChanged("ContractObject"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractPlacingContractContractObject : ManageObjectType { + + private string transportGUIDField; + + private BaseServiceType baseMServiceField; + + private importContractRequestContractPlacingContractContractObjectHouseService[] houseServiceField; + + private importContractRequestContractPlacingContractContractObjectAddService[] addServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public BaseServiceType BaseMService { + get { + return this.baseMServiceField; + } + set { + this.baseMServiceField = value; + this.RaisePropertyChanged("BaseMService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("HouseService", Order=2)] + public importContractRequestContractPlacingContractContractObjectHouseService[] HouseService { + get { + return this.houseServiceField; + } + set { + this.houseServiceField = value; + this.RaisePropertyChanged("HouseService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AddService", Order=3)] + public importContractRequestContractPlacingContractContractObjectAddService[] AddService { + get { + return this.addServiceField; + } + set { + this.addServiceField = value; + this.RaisePropertyChanged("AddService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractPlacingContractContractObjectHouseService : ContractServiceType { + + private BaseServiceType baseServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseService { + get { + return this.baseServiceField; + } + set { + this.baseServiceField = value; + this.RaisePropertyChanged("BaseService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractPlacingContractContractObjectAddService : ContractServiceType { + + private BaseServiceType baseServiceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceType BaseService { + get { + return this.baseServiceField; + } + set { + this.baseServiceField = value; + this.RaisePropertyChanged("BaseService"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractRollOverContract : RollOverType { + + private bool licenseRequestField; + + private bool licenseRequestFieldSpecified; + + private string contractVersionGUIDField; + + private System.DateTime rollToDateField; + + private bool rollToDateFieldSpecified; + + public importContractRequestContractRollOverContract() { + this.licenseRequestField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool LicenseRequest { + get { + return this.licenseRequestField; + } + set { + this.licenseRequestField = value; + this.RaisePropertyChanged("LicenseRequest"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool LicenseRequestSpecified { + get { + return this.licenseRequestFieldSpecified; + } + set { + this.licenseRequestFieldSpecified = value; + this.RaisePropertyChanged("LicenseRequestSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ContractVersionGUID { + get { + return this.contractVersionGUIDField; + } + set { + this.contractVersionGUIDField = value; + this.RaisePropertyChanged("ContractVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime RollToDate { + get { + return this.rollToDateField; + } + set { + this.rollToDateField = value; + this.RaisePropertyChanged("RollToDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool RollToDateSpecified { + get { + return this.rollToDateFieldSpecified; + } + set { + this.rollToDateFieldSpecified = value; + this.RaisePropertyChanged("RollToDateSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importContractRequestContractTerminateContract : TerminateType { + + private bool licenseRequestField; + + private bool licenseRequestFieldSpecified; + + private nsiRef reasonRefField; + + private AttachmentType[] terminateAttachmentField; + + private string contractVersionGUIDField; + + public importContractRequestContractTerminateContract() { + this.licenseRequestField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool LicenseRequest { + get { + return this.licenseRequestField; + } + set { + this.licenseRequestField = value; + this.RaisePropertyChanged("LicenseRequest"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool LicenseRequestSpecified { + get { + return this.licenseRequestFieldSpecified; + } + set { + this.licenseRequestFieldSpecified = value; + this.RaisePropertyChanged("LicenseRequestSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef ReasonRef { + get { + return this.reasonRefField; + } + set { + this.reasonRefField = value; + this.RaisePropertyChanged("ReasonRef"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TerminateAttachment", Order=2)] + public AttachmentType[] TerminateAttachment { + get { + return this.terminateAttachmentField; + } + set { + this.terminateAttachmentField = value; + this.RaisePropertyChanged("TerminateAttachment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string ContractVersionGUID { + get { + return this.contractVersionGUIDField; + } + set { + this.contractVersionGUIDField = value; + this.RaisePropertyChanged("ContractVersionGUID"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importContractDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importContractRequest importContractRequest; + + public importContractDataRequest() { + } + + public importContractDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importContractRequest importContractRequest) { + this.RequestHeader = RequestHeader; + this.importContractRequest = importContractRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importContractDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importContractDataResponse() { + } + + public importContractDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequest : BaseType { + + private string transportGUIDField; + + private object itemField; + + private string versionField; + + public importCharterRequest() { + this.versionField = "11.9.0.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AnnulmentCharter", typeof(importCharterRequestAnnulmentCharter), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("AnnulmentCharterPaymentsInfo", typeof(importCharterRequestAnnulmentCharterPaymentsInfo), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("EditCharter", typeof(importCharterRequestEditCharter), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("PlaceCharterPaymentsInfo", typeof(importCharterRequestPlaceCharterPaymentsInfo), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("PlacingCharter", typeof(importCharterRequestPlacingCharter), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("RollOverCharter", typeof(importCharterRequestRollOverCharter), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("TerminateCharter", typeof(importCharterRequestTerminateCharter), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestAnnulmentCharter : AnnulmentType { + + private string charterVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string CharterVersionGUID { + get { + return this.charterVersionGUIDField; + } + set { + this.charterVersionGUIDField = value; + this.RaisePropertyChanged("CharterVersionGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestAnnulmentCharterPaymentsInfo : object, System.ComponentModel.INotifyPropertyChanged { + + private string charterPaymentsInfoVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string CharterPaymentsInfoVersionGUID { + get { + return this.charterPaymentsInfoVersionGUIDField; + } + set { + this.charterPaymentsInfoVersionGUIDField = value; + this.RaisePropertyChanged("CharterPaymentsInfoVersionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestEditCharter : CharterType { + + private importCharterRequestEditCharterContractObject[] contractObjectField; + + private string charterVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractObject", Order=0)] + public importCharterRequestEditCharterContractObject[] ContractObject { + get { + return this.contractObjectField; + } + set { + this.contractObjectField = value; + this.RaisePropertyChanged("ContractObject"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string CharterVersionGUID { + get { + return this.charterVersionGUIDField; + } + set { + this.charterVersionGUIDField = value; + this.RaisePropertyChanged("CharterVersionGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestEditCharterContractObject : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Add", typeof(importCharterRequestEditCharterContractObjectAdd), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("Annulment", typeof(importCharterRequestEditCharterContractObjectAnnulment), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("Edit", typeof(importCharterRequestEditCharterContractObjectEdit), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestEditCharterContractObjectAdd : ManageObjectType { + + private BaseServiceCharterType baseMServiceField; + + private importCharterRequestEditCharterContractObjectAddHouseService[] houseServiceField; + + private importCharterRequestEditCharterContractObjectAddAddService[] addServiceField; + + private bool isManagedByContractField; + + private bool isManagedByContractFieldSpecified; + + public importCharterRequestEditCharterContractObjectAdd() { + this.isManagedByContractField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceCharterType BaseMService { + get { + return this.baseMServiceField; + } + set { + this.baseMServiceField = value; + this.RaisePropertyChanged("BaseMService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("HouseService", Order=1)] + public importCharterRequestEditCharterContractObjectAddHouseService[] HouseService { + get { + return this.houseServiceField; + } + set { + this.houseServiceField = value; + this.RaisePropertyChanged("HouseService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AddService", Order=2)] + public importCharterRequestEditCharterContractObjectAddAddService[] AddService { + get { + return this.addServiceField; + } + set { + this.addServiceField = value; + this.RaisePropertyChanged("AddService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public bool IsManagedByContract { + get { + return this.isManagedByContractField; + } + set { + this.isManagedByContractField = value; + this.RaisePropertyChanged("IsManagedByContract"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsManagedByContractSpecified { + get { + return this.isManagedByContractFieldSpecified; + } + set { + this.isManagedByContractFieldSpecified = value; + this.RaisePropertyChanged("IsManagedByContractSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestEditCharterContractObjectAddHouseService : ContractServiceType { + + private BaseServiceCharterType baseServiceCharterField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceCharterType BaseServiceCharter { + get { + return this.baseServiceCharterField; + } + set { + this.baseServiceCharterField = value; + this.RaisePropertyChanged("BaseServiceCharter"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestEditCharterContractObjectAddAddService : ContractServiceType { + + private BaseServiceCharterType baseServiceCharterField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceCharterType BaseServiceCharter { + get { + return this.baseServiceCharterField; + } + set { + this.baseServiceCharterField = value; + this.RaisePropertyChanged("BaseServiceCharter"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestEditCharterContractObjectAnnulment : object, System.ComponentModel.INotifyPropertyChanged { + + private string contractObjectVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractObjectVersionGUID { + get { + return this.contractObjectVersionGUIDField; + } + set { + this.contractObjectVersionGUIDField = value; + this.RaisePropertyChanged("ContractObjectVersionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestEditCharterContractObjectEdit : ManageObjectType { + + private string contractObjectVersionGUIDField; + + private BaseServiceCharterType baseMServiceField; + + private importCharterRequestEditCharterContractObjectEditHouseService[] houseServiceField; + + private importCharterRequestEditCharterContractObjectEditAddService[] addServiceField; + + private bool isManagedByContractField; + + private bool isManagedByContractFieldSpecified; + + public importCharterRequestEditCharterContractObjectEdit() { + this.isManagedByContractField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string ContractObjectVersionGUID { + get { + return this.contractObjectVersionGUIDField; + } + set { + this.contractObjectVersionGUIDField = value; + this.RaisePropertyChanged("ContractObjectVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public BaseServiceCharterType BaseMService { + get { + return this.baseMServiceField; + } + set { + this.baseMServiceField = value; + this.RaisePropertyChanged("BaseMService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("HouseService", Order=2)] + public importCharterRequestEditCharterContractObjectEditHouseService[] HouseService { + get { + return this.houseServiceField; + } + set { + this.houseServiceField = value; + this.RaisePropertyChanged("HouseService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AddService", Order=3)] + public importCharterRequestEditCharterContractObjectEditAddService[] AddService { + get { + return this.addServiceField; + } + set { + this.addServiceField = value; + this.RaisePropertyChanged("AddService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool IsManagedByContract { + get { + return this.isManagedByContractField; + } + set { + this.isManagedByContractField = value; + this.RaisePropertyChanged("IsManagedByContract"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsManagedByContractSpecified { + get { + return this.isManagedByContractFieldSpecified; + } + set { + this.isManagedByContractFieldSpecified = value; + this.RaisePropertyChanged("IsManagedByContractSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestEditCharterContractObjectEditHouseService : ContractServiceType { + + private BaseServiceCharterType baseServiceCharterField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceCharterType BaseServiceCharter { + get { + return this.baseServiceCharterField; + } + set { + this.baseServiceCharterField = value; + this.RaisePropertyChanged("BaseServiceCharter"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestEditCharterContractObjectEditAddService : ContractServiceType { + + private BaseServiceCharterType baseServiceCharterField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceCharterType BaseServiceCharter { + get { + return this.baseServiceCharterField; + } + set { + this.baseServiceCharterField = value; + this.RaisePropertyChanged("BaseServiceCharter"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestPlaceCharterPaymentsInfo : CharterPaymentsInfoType { + + private string charterVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string CharterVersionGUID { + get { + return this.charterVersionGUIDField; + } + set { + this.charterVersionGUIDField = value; + this.RaisePropertyChanged("CharterVersionGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestPlacingCharter : CharterType { + + private importCharterRequestPlacingCharterContractObject[] contractObjectField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractObject", Order=0)] + public importCharterRequestPlacingCharterContractObject[] ContractObject { + get { + return this.contractObjectField; + } + set { + this.contractObjectField = value; + this.RaisePropertyChanged("ContractObject"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestPlacingCharterContractObject : ManageObjectType { + + private string transportGUIDField; + + private BaseServiceCharterType baseMServiceField; + + private importCharterRequestPlacingCharterContractObjectHouseService[] houseServiceField; + + private importCharterRequestPlacingCharterContractObjectAddService[] addServiceField; + + private bool isManagedByContractField; + + private bool isManagedByContractFieldSpecified; + + public importCharterRequestPlacingCharterContractObject() { + this.isManagedByContractField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public BaseServiceCharterType BaseMService { + get { + return this.baseMServiceField; + } + set { + this.baseMServiceField = value; + this.RaisePropertyChanged("BaseMService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("HouseService", Order=2)] + public importCharterRequestPlacingCharterContractObjectHouseService[] HouseService { + get { + return this.houseServiceField; + } + set { + this.houseServiceField = value; + this.RaisePropertyChanged("HouseService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AddService", Order=3)] + public importCharterRequestPlacingCharterContractObjectAddService[] AddService { + get { + return this.addServiceField; + } + set { + this.addServiceField = value; + this.RaisePropertyChanged("AddService"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public bool IsManagedByContract { + get { + return this.isManagedByContractField; + } + set { + this.isManagedByContractField = value; + this.RaisePropertyChanged("IsManagedByContract"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsManagedByContractSpecified { + get { + return this.isManagedByContractFieldSpecified; + } + set { + this.isManagedByContractFieldSpecified = value; + this.RaisePropertyChanged("IsManagedByContractSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestPlacingCharterContractObjectHouseService : ContractServiceType { + + private BaseServiceCharterType baseServiceCharterField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceCharterType BaseServiceCharter { + get { + return this.baseServiceCharterField; + } + set { + this.baseServiceCharterField = value; + this.RaisePropertyChanged("BaseServiceCharter"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestPlacingCharterContractObjectAddService : ContractServiceType { + + private BaseServiceCharterType baseServiceCharterField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public BaseServiceCharterType BaseServiceCharter { + get { + return this.baseServiceCharterField; + } + set { + this.baseServiceCharterField = value; + this.RaisePropertyChanged("BaseServiceCharter"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestRollOverCharter : RollOverType { + + private string charterVersionGUIDField; + + private System.DateTime rollToDateField; + + private bool rollToDateFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string CharterVersionGUID { + get { + return this.charterVersionGUIDField; + } + set { + this.charterVersionGUIDField = value; + this.RaisePropertyChanged("CharterVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime RollToDate { + get { + return this.rollToDateField; + } + set { + this.rollToDateField = value; + this.RaisePropertyChanged("RollToDate"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool RollToDateSpecified { + get { + return this.rollToDateFieldSpecified; + } + set { + this.rollToDateFieldSpecified = value; + this.RaisePropertyChanged("RollToDateSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importCharterRequestTerminateCharter : TerminateType { + + private string reasonField; + + private string charterVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Reason { + get { + return this.reasonField; + } + set { + this.reasonField = value; + this.RaisePropertyChanged("Reason"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string CharterVersionGUID { + get { + return this.charterVersionGUIDField; + } + set { + this.charterVersionGUIDField = value; + this.RaisePropertyChanged("CharterVersionGUID"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importCharterDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importCharterRequest importCharterRequest; + + public importCharterDataRequest() { + } + + public importCharterDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importCharterRequest importCharterRequest) { + this.RequestHeader = RequestHeader; + this.importCharterRequest = importCharterRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importCharterDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importCharterDataResponse() { + } + + public importCharterDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportStatusCAChRequest : BaseType { + + private exportStatusCAChRequestCriteria[] criteriaField; + + private string versionField; + + public exportStatusCAChRequest() { + this.versionField = "10.0.1.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Criteria", Order=0)] + public exportStatusCAChRequestCriteria[] Criteria { + get { + return this.criteriaField; + } + set { + this.criteriaField = value; + this.RaisePropertyChanged("Criteria"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportStatusCAChRequestCriteria : object, System.ComponentModel.INotifyPropertyChanged { + + private string itemField; + + private ItemChoiceType27 itemElementNameField; + + private exportStatusCAChRequestCriteriaControlObjects controlObjectsField; + + /// + [System.Xml.Serialization.XmlElementAttribute("CharterGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("CharterVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType27 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public exportStatusCAChRequestCriteriaControlObjects ControlObjects { + get { + return this.controlObjectsField; + } + set { + this.controlObjectsField = value; + this.RaisePropertyChanged("ControlObjects"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType27 { + + /// + CharterGUID, + + /// + CharterVersionGUID, + + /// + ContractGUID, + + /// + ContractVersionGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportStatusCAChRequestCriteriaControlObjects : object, System.ComponentModel.INotifyPropertyChanged { + + private bool isConflictedField; + + private bool isConflictedFieldSpecified; + + private bool isBlockedField; + + private bool isBlockedFieldSpecified; + + public exportStatusCAChRequestCriteriaControlObjects() { + this.isConflictedField = true; + this.isBlockedField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool IsConflicted { + get { + return this.isConflictedField; + } + set { + this.isConflictedField = value; + this.RaisePropertyChanged("IsConflicted"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsConflictedSpecified { + get { + return this.isConflictedFieldSpecified; + } + set { + this.isConflictedFieldSpecified = value; + this.RaisePropertyChanged("IsConflictedSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool IsBlocked { + get { + return this.isBlockedField; + } + set { + this.isBlockedField = value; + this.RaisePropertyChanged("IsBlocked"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsBlockedSpecified { + get { + return this.isBlockedFieldSpecified; + } + set { + this.isBlockedFieldSpecified = value; + this.RaisePropertyChanged("IsBlockedSpecified"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportStatusCAChDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportStatusCAChRequest exportStatusCAChRequest; + + public exportStatusCAChDataRequest() { + } + + public exportStatusCAChDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportStatusCAChRequest exportStatusCAChRequest) { + this.RequestHeader = RequestHeader; + this.exportStatusCAChRequest = exportStatusCAChRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportStatusCAChDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportStatusCAChDataResponse() { + } + + public exportStatusCAChDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportHouseRequest : BaseType { + + private string fIASHouseGuidField; + + private string versionField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportHouseDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportHouseRequest exportHouseRequest; + + public exportHouseDataRequest() { + } + + public exportHouseDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportHouseRequest exportHouseRequest) { + this.RequestHeader = RequestHeader; + this.exportHouseRequest = exportHouseRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportHouseDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportHouseDataResponse() { + } + + public exportHouseDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importAccountRequest : BaseType { + + private importAccountRequestAccount[] accountField; + + private string versionField; + + public importAccountRequest() { + this.versionField = "10.0.1.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Account", Order=0)] + public importAccountRequestAccount[] Account { + get { + return this.accountField; + } + set { + this.accountField = value; + this.RaisePropertyChanged("Account"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importAccountRequestAccount : AccountType { + + private string transportGUIDField; + + private string accountNumberField; + + private string accountGUIDField; + + private AccountReasonsImportType accountReasonsField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/account-base/", Order=1)] + public string AccountNumber { + get { + return this.accountNumberField; + } + set { + this.accountNumberField = value; + this.RaisePropertyChanged("AccountNumber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string AccountGUID { + get { + return this.accountGUIDField; + } + set { + this.accountGUIDField = value; + this.RaisePropertyChanged("AccountGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public AccountReasonsImportType AccountReasons { + get { + return this.accountReasonsField; + } + set { + this.accountReasonsField = value; + this.RaisePropertyChanged("AccountReasons"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importAccountDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importAccountRequest importAccountRequest; + + public importAccountDataRequest() { + } + + public importAccountDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importAccountRequest importAccountRequest) { + this.RequestHeader = RequestHeader; + this.importAccountRequest = importAccountRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importAccountDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importAccountDataResponse() { + } + + public importAccountDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportAccountRequest : BaseType { + + private string[] itemsField; + + private ItemsChoiceType26[] itemsElementNameField; + + private string versionField; + + public exportAccountRequest() { + this.versionField = "10.0.1.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ServiceID", typeof(string), Namespace="http://dom.gosuslugi.ru/schema/integration/account-base/", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("UnifiedAccountNumber", typeof(string), Namespace="http://dom.gosuslugi.ru/schema/integration/account-base/", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("AccountGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public string[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType26[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType26 { + + /// + [System.Xml.Serialization.XmlEnumAttribute("http://dom.gosuslugi.ru/schema/integration/account-base/:ServiceID")] + ServiceID, + + /// + [System.Xml.Serialization.XmlEnumAttribute("http://dom.gosuslugi.ru/schema/integration/account-base/:UnifiedAccountNumber")] + UnifiedAccountNumber, + + /// + AccountGUID, + + /// + FIASHouseGuid, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportAccountDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportAccountRequest exportAccountRequest; + + public exportAccountDataRequest() { + } + + public exportAccountDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportAccountRequest exportAccountRequest) { + this.RequestHeader = RequestHeader; + this.exportAccountRequest = exportAccountRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportAccountDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportAccountDataResponse() { + } + + public exportAccountDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importPublicPropertyContractRequest : BaseType { + + private object[] itemsField; + + private string versionField; + + public importPublicPropertyContractRequest() { + this.versionField = "11.2.0.10"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AddAgreementPayment", typeof(importPublicPropertyContractRequestAddAgreementPayment), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("AnnulAgreementPayment", typeof(importPublicPropertyContractRequestAnnulAgreementPayment), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Contract", typeof(importPublicPropertyContractRequestContract), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("DelAgreementPayment", typeof(importPublicPropertyContractRequestDelAgreementPayment), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importPublicPropertyContractRequestAddAgreementPayment : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private string itemField; + + private ItemChoiceType28 itemElementNameField; + + private importPublicPropertyContractRequestAddAgreementPaymentDatePeriod datePeriodField; + + private decimal billField; + + private decimal debtField; + + private decimal paidField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AgreementPaymentVersionGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ContractVersionGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType28 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public importPublicPropertyContractRequestAddAgreementPaymentDatePeriod DatePeriod { + get { + return this.datePeriodField; + } + set { + this.datePeriodField = value; + this.RaisePropertyChanged("DatePeriod"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public decimal Bill { + get { + return this.billField; + } + set { + this.billField = value; + this.RaisePropertyChanged("Bill"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public decimal Debt { + get { + return this.debtField; + } + set { + this.debtField = value; + this.RaisePropertyChanged("Debt"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public decimal Paid { + get { + return this.paidField; + } + set { + this.paidField = value; + this.RaisePropertyChanged("Paid"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType28 { + + /// + AgreementPaymentVersionGUID, + + /// + ContractVersionGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importPublicPropertyContractRequestAddAgreementPaymentDatePeriod : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime dateFromField; + + private System.DateTime dateToField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime DateFrom { + get { + return this.dateFromField; + } + set { + this.dateFromField = value; + this.RaisePropertyChanged("DateFrom"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime DateTo { + get { + return this.dateToField; + } + set { + this.dateToField = value; + this.RaisePropertyChanged("DateTo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importPublicPropertyContractRequestAnnulAgreementPayment : AnnulmentType { + + private string transportGUIDField; + + private string agreementPaymentVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string AgreementPaymentVersionGUID { + get { + return this.agreementPaymentVersionGUIDField; + } + set { + this.agreementPaymentVersionGUIDField = value; + this.RaisePropertyChanged("AgreementPaymentVersionGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importPublicPropertyContractRequestContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private string contractVersionGUIDField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ContractVersionGUID { + get { + return this.contractVersionGUIDField; + } + set { + this.contractVersionGUIDField = value; + this.RaisePropertyChanged("ContractVersionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AnnulmentContract", typeof(AnnulmentType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("PublicPropertyContract", typeof(importPublicPropertyContractRequestContractPublicPropertyContract), Order=2)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importPublicPropertyContractRequestContractPublicPropertyContract : PublicPropertyContractType { + + private importPublicPropertyContractRequestContractPublicPropertyContractPaymentInterval paymentIntervalField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public importPublicPropertyContractRequestContractPublicPropertyContractPaymentInterval PaymentInterval { + get { + return this.paymentIntervalField; + } + set { + this.paymentIntervalField = value; + this.RaisePropertyChanged("PaymentInterval"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importPublicPropertyContractRequestContractPublicPropertyContractPaymentInterval : object, System.ComponentModel.INotifyPropertyChanged { + + private object[] itemsField; + + private ItemsChoiceType27[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("EndDate", typeof(DaySelectionType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("Other", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(DaySelectionType), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType27[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType27 { + + /// + EndDate, + + /// + Other, + + /// + StartDate, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importPublicPropertyContractRequestDelAgreementPayment : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private string agreementPaymentVersionGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string AgreementPaymentVersionGUID { + get { + return this.agreementPaymentVersionGUIDField; + } + set { + this.agreementPaymentVersionGUIDField = value; + this.RaisePropertyChanged("AgreementPaymentVersionGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importPublicPropertyContractRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importPublicPropertyContractRequest importPublicPropertyContractRequest; + + public importPublicPropertyContractRequest1() { + } + + public importPublicPropertyContractRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importPublicPropertyContractRequest importPublicPropertyContractRequest) { + this.RequestHeader = RequestHeader; + this.importPublicPropertyContractRequest = importPublicPropertyContractRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importPublicPropertyContractResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importPublicPropertyContractResponse() { + } + + public importPublicPropertyContractResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportStatusPublicPropertyContractRequest : BaseType { + + private object[] itemsField; + + private ItemsChoiceType28[] itemsElementNameField; + + private string versionField; + + public exportStatusPublicPropertyContractRequest() { + this.versionField = "10.0.2.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractVersionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("EndDate", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType28[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType28 { + + /// + ContractGUID, + + /// + ContractNumber, + + /// + ContractVersionGUID, + + /// + EndDate, + + /// + FIASHouseGuid, + + /// + StartDate, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportStatusPublicPropertyContractRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractRequest exportStatusPublicPropertyContractRequest; + + public exportStatusPublicPropertyContractRequest1() { + } + + public exportStatusPublicPropertyContractRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractRequest exportStatusPublicPropertyContractRequest) { + this.RequestHeader = RequestHeader; + this.exportStatusPublicPropertyContractRequest = exportStatusPublicPropertyContractRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportStatusPublicPropertyContractResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportStatusPublicPropertyContractResponse() { + } + + public exportStatusPublicPropertyContractResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importNotificationRequest : BaseType { + + private importNotificationRequestNotification[] notificationField; + + private string versionField; + + /// + [System.Xml.Serialization.XmlElementAttribute("notification", Order=0)] + public importNotificationRequestNotification[] notification { + get { + return this.notificationField; + } + set { + this.notificationField = value; + this.RaisePropertyChanged("notification"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importNotificationRequestNotification : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private string notificationGUIDField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string NotificationGUID { + get { + return this.notificationGUIDField; + } + set { + this.notificationGUIDField = value; + this.RaisePropertyChanged("NotificationGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Create", typeof(importNotificationRequestNotificationCreate), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("DeleteNotification", typeof(DeleteDocType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("IsShipOff", typeof(bool), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("RecallNotification", typeof(importNotificationRequestNotificationRecallNotification), Order=2)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importNotificationRequestNotificationCreate : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private bool isImportantField; + + private bool isImportantFieldSpecified; + + private string contentField; + + private object[] itemsField; + + private ItemsChoiceType29[] itemsElementNameField; + + private object[] items1Field; + + private Items1ChoiceType[] items1ElementNameField; + + private AttachmentType[] attachmentField; + + private bool isShipOffField; + + private bool isShipOffFieldSpecified; + + private bool isForPublishToMobileAppField; + + private bool isForPublishToMobileAppFieldSpecified; + + private importNotificationRequestNotificationCreateMobileAppData mobileAppDataField; + + public importNotificationRequestNotificationCreate() { + this.isImportantField = true; + this.isShipOffField = true; + this.isForPublishToMobileAppField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Topic", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("TopicNSIRef", typeof(nsiRef), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool IsImportant { + get { + return this.isImportantField; + } + set { + this.isImportantField = value; + this.RaisePropertyChanged("IsImportant"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsImportantSpecified { + get { + return this.isImportantFieldSpecified; + } + set { + this.isImportantFieldSpecified = value; + this.RaisePropertyChanged("IsImportantSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string content { + get { + return this.contentField; + } + set { + this.contentField = value; + this.RaisePropertyChanged("content"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("InspectionAuthority", typeof(RegOrgType), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("IsAll", typeof(bool), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("RoomOwners", typeof(importNotificationRequestNotificationCreateRoomOwners), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("SpecialAccountOwner", typeof(RegOrgType), Order=3)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=4)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType29[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("EndDate", typeof(System.DateTime), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("IsNotLimit", typeof(bool), Order=5)] + [System.Xml.Serialization.XmlElementAttribute("StartDate", typeof(System.DateTime), Order=5)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("Items1ElementName")] + public object[] Items1 { + get { + return this.items1Field; + } + set { + this.items1Field = value; + this.RaisePropertyChanged("Items1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Items1ElementName", Order=6)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public Items1ChoiceType[] Items1ElementName { + get { + return this.items1ElementNameField; + } + set { + this.items1ElementNameField = value; + this.RaisePropertyChanged("Items1ElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Attachment", Order=7)] + public AttachmentType[] Attachment { + get { + return this.attachmentField; + } + set { + this.attachmentField = value; + this.RaisePropertyChanged("Attachment"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=8)] + public bool IsShipOff { + get { + return this.isShipOffField; + } + set { + this.isShipOffField = value; + this.RaisePropertyChanged("IsShipOff"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsShipOffSpecified { + get { + return this.isShipOffFieldSpecified; + } + set { + this.isShipOffFieldSpecified = value; + this.RaisePropertyChanged("IsShipOffSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=9)] + public bool IsForPublishToMobileApp { + get { + return this.isForPublishToMobileAppField; + } + set { + this.isForPublishToMobileAppField = value; + this.RaisePropertyChanged("IsForPublishToMobileApp"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool IsForPublishToMobileAppSpecified { + get { + return this.isForPublishToMobileAppFieldSpecified; + } + set { + this.isForPublishToMobileAppFieldSpecified = value; + this.RaisePropertyChanged("IsForPublishToMobileAppSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=10)] + public importNotificationRequestNotificationCreateMobileAppData MobileAppData { + get { + return this.mobileAppDataField; + } + set { + this.mobileAppDataField = value; + this.RaisePropertyChanged("MobileAppData"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importNotificationRequestNotificationCreateRoomOwners : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private ItemChoiceType29 itemElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("AccountOpening", typeof(importNotificationRequestNotificationCreateRoomOwnersAccountOpening), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("DeptsInforming", typeof(importNotificationRequestNotificationCreateRoomOwnersDeptsInforming), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("OtherOrganizationSelection", typeof(importNotificationRequestNotificationCreateRoomOwnersOtherOrganizationSelection), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType29 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importNotificationRequestNotificationCreateRoomOwnersAccountOpening : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] fIASHouseGuidField; + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", Order=0)] + public string[] FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importNotificationRequestNotificationCreateRoomOwnersDeptsInforming : object, System.ComponentModel.INotifyPropertyChanged { + + private importNotificationRequestNotificationCreateRoomOwnersDeptsInformingAccount[] accountField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Account", Order=0)] + public importNotificationRequestNotificationCreateRoomOwnersDeptsInformingAccount[] Account { + get { + return this.accountField; + } + set { + this.accountField = value; + this.RaisePropertyChanged("Account"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importNotificationRequestNotificationCreateRoomOwnersDeptsInformingAccount : object, System.ComponentModel.INotifyPropertyChanged { + + private decimal totalDebtField; + + private string unifiedAccountNumberField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public decimal TotalDebt { + get { + return this.totalDebtField; + } + set { + this.totalDebtField = value; + this.RaisePropertyChanged("TotalDebt"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/account-base/", Order=1)] + public string UnifiedAccountNumber { + get { + return this.unifiedAccountNumberField; + } + set { + this.unifiedAccountNumberField = value; + this.RaisePropertyChanged("UnifiedAccountNumber"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importNotificationRequestNotificationCreateRoomOwnersOtherOrganizationSelection : object, System.ComponentModel.INotifyPropertyChanged { + + private string[] fIASHouseGuidField; + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", Order=0)] + public string[] FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType29 { + + /// + AccountOpening, + + /// + DeptsInforming, + + /// + OtherOrganizationSelection, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType29 { + + /// + FIASHouseGuid, + + /// + InspectionAuthority, + + /// + IsAll, + + /// + RoomOwners, + + /// + SpecialAccountOwner, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum Items1ChoiceType { + + /// + EndDate, + + /// + IsNotLimit, + + /// + StartDate, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importNotificationRequestNotificationCreateMobileAppData : object, System.ComponentModel.INotifyPropertyChanged { + + private bool isShortTopicField; + + private bool isPinField; + + private string urlField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool IsShortTopic { + get { + return this.isShortTopicField; + } + set { + this.isShortTopicField = value; + this.RaisePropertyChanged("IsShortTopic"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool IsPin { + get { + return this.isPinField; + } + set { + this.isPinField = value; + this.RaisePropertyChanged("IsPin"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string url { + get { + return this.urlField; + } + set { + this.urlField = value; + this.RaisePropertyChanged("url"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importNotificationRequestNotificationRecallNotification : object, System.ComponentModel.INotifyPropertyChanged { + + private string recallReasonField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string RecallReason { + get { + return this.recallReasonField; + } + set { + this.recallReasonField = value; + this.RaisePropertyChanged("RecallReason"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importNotificationDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importNotificationRequest importNotificationRequest; + + public importNotificationDataRequest() { + } + + public importNotificationDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importNotificationRequest importNotificationRequest) { + this.RequestHeader = RequestHeader; + this.importNotificationRequest = importNotificationRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importNotificationDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importNotificationDataResponse() { + } + + public importNotificationDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importVotingProtocolRequest : BaseType { + + private string transportGUIDField; + + private string protocolGUIDField; + + private object itemField; + + private ItemChoiceType30 itemElementNameField; + + private string versionField; + + public importVotingProtocolRequest() { + this.versionField = "15.4.0.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ProtocolGUID { + get { + return this.protocolGUIDField; + } + set { + this.protocolGUIDField = value; + this.RaisePropertyChanged("ProtocolGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Annulment", typeof(AnnulmentProtocolType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Delete", typeof(bool), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Placing", typeof(bool), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Protocol", typeof(importVotingProtocolRequestProtocol), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Revert", typeof(bool), Order=2)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType30 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importVotingProtocolRequestProtocol : ProtocolType { + + private bool placingField; + + private bool placingFieldSpecified; + + public importVotingProtocolRequestProtocol() { + this.placingField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public bool Placing { + get { + return this.placingField; + } + set { + this.placingField = value; + this.RaisePropertyChanged("Placing"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool PlacingSpecified { + get { + return this.placingFieldSpecified; + } + set { + this.placingFieldSpecified = value; + this.RaisePropertyChanged("PlacingSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType30 { + + /// + Annulment, + + /// + Delete, + + /// + Placing, + + /// + Protocol, + + /// + Revert, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importVotingProtocolRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importVotingProtocolRequest importVotingProtocolRequest; + + public importVotingProtocolRequest1() { + } + + public importVotingProtocolRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importVotingProtocolRequest importVotingProtocolRequest) { + this.RequestHeader = RequestHeader; + this.importVotingProtocolRequest = importVotingProtocolRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importVotingProtocolResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importVotingProtocolResponse() { + } + + public importVotingProtocolResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportVotingProtocolRequest : BaseType { + + private object[] itemsField; + + private ItemsChoiceType30[] itemsElementNameField; + + private string versionField; + + public exportVotingProtocolRequest() { + this.versionField = "15.4.0.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RootProtocolGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("StatusVersionProtocol", typeof(exportVotingProtocolRequestStatusVersionProtocol), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("VotingProtocolGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType30[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportVotingProtocolRequestStatusVersionProtocol { + + /// + Created, + + /// + Posted, + + /// + Edited, + + /// + Annuled, + + /// + PostedFromAnotherSystem, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType30 { + + /// + FIASHouseGuid, + + /// + RootProtocolGUID, + + /// + StatusVersionProtocol, + + /// + VotingProtocolGUID, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportVotingProtocolRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportVotingProtocolRequest exportVotingProtocolRequest; + + public exportVotingProtocolRequest1() { + } + + public exportVotingProtocolRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportVotingProtocolRequest exportVotingProtocolRequest) { + this.RequestHeader = RequestHeader; + this.exportVotingProtocolRequest = exportVotingProtocolRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportVotingProtocolResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportVotingProtocolResponse() { + } + + public exportVotingProtocolResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importOwnerDecisionRequest : BaseType { + + private importOwnerDecisionRequestOwnerDecision[] ownerDecisionField; + + private string versionField; + + public importOwnerDecisionRequest() { + this.versionField = "13.0.0.2"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OwnerDecision", Order=0)] + public importOwnerDecisionRequestOwnerDecision[] OwnerDecision { + get { + return this.ownerDecisionField; + } + set { + this.ownerDecisionField = value; + this.RaisePropertyChanged("OwnerDecision"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importOwnerDecisionRequestOwnerDecision : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private string itemField; + + private ItemChoiceType31 itemElementNameField; + + private string rootOwnerDecisionGUIDField; + + private object item1Field; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("MessageGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ProtocolGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType31 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string RootOwnerDecisionGUID { + get { + return this.rootOwnerDecisionGUIDField; + } + set { + this.rootOwnerDecisionGUIDField = value; + this.RaisePropertyChanged("RootOwnerDecisionGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AnnulDecision", typeof(bool), Order=4)] + [System.Xml.Serialization.XmlElementAttribute("Decision", typeof(OwnerDecisionType), Order=4)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType31 { + + /// + MessageGUID, + + /// + ProtocolGUID, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importOwnerDecisionRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importOwnerDecisionRequest importOwnerDecisionRequest; + + public importOwnerDecisionRequest1() { + } + + public importOwnerDecisionRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importOwnerDecisionRequest importOwnerDecisionRequest) { + this.RequestHeader = RequestHeader; + this.importOwnerDecisionRequest = importOwnerDecisionRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importOwnerDecisionResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importOwnerDecisionResponse() { + } + + public importOwnerDecisionResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportOwnerDecisionRequest : BaseType { + + private string[] itemsField; + + private ItemsChoiceType31[] itemsElementNameField; + + private string versionField; + + /// + [System.Xml.Serialization.XmlElementAttribute("MessageGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RootOwnerDecisionGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("RootProtocolGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("VotingProtocolGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public string[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType31[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType31 { + + /// + MessageGUID, + + /// + RootOwnerDecisionGUID, + + /// + RootProtocolGUID, + + /// + VotingProtocolGUID, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportOwnerDecisionRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportOwnerDecisionRequest exportOwnerDecisionRequest; + + public exportOwnerDecisionRequest1() { + } + + public exportOwnerDecisionRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportOwnerDecisionRequest exportOwnerDecisionRequest) { + this.RequestHeader = RequestHeader; + this.exportOwnerDecisionRequest = exportOwnerDecisionRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportOwnerDecisionResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportOwnerDecisionResponse() { + } + + public exportOwnerDecisionResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportCAChAsyncRequest : BaseType { + + private exportCAChRequestCriteriaType[] criteriaField; + + private string versionField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Criteria", Order=0)] + public exportCAChRequestCriteriaType[] Criteria { + get { + return this.criteriaField; + } + set { + this.criteriaField = value; + this.RaisePropertyChanged("Criteria"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportCAChDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportCAChAsyncRequest exportCAChAsyncRequest; + + public exportCAChDataRequest() { + } + + public exportCAChDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportCAChAsyncRequest exportCAChAsyncRequest) { + this.RequestHeader = RequestHeader; + this.exportCAChAsyncRequest = exportCAChAsyncRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportCAChDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportCAChDataResponse() { + } + + public exportCAChDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequest : BaseType { + + private object itemField; + + private bool inheritMissingValuesField; + + private bool inheritMissingValuesFieldSpecified; + + private string versionField; + + public importHouseUORequest() { + this.inheritMissingValuesField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ApartmentHouse", typeof(importHouseUORequestApartmentHouse), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LivingHouse", typeof(importHouseUORequestLivingHouse), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool InheritMissingValues { + get { + return this.inheritMissingValuesField; + } + set { + this.inheritMissingValuesField = value; + this.RaisePropertyChanged("InheritMissingValues"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InheritMissingValuesSpecified { + get { + return this.inheritMissingValuesFieldSpecified; + } + set { + this.inheritMissingValuesFieldSpecified = value; + this.RaisePropertyChanged("InheritMissingValuesSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouse : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private importHouseUORequestApartmentHouseNonResidentialPremiseToCreate[] nonResidentialPremiseToCreateField; + + private importHouseUORequestApartmentHouseNonResidentialPremiseToUpdate[] nonResidentialPremiseToUpdateField; + + private importHouseUORequestApartmentHouseEntranceToCreate[] entranceToCreateField; + + private importHouseUORequestApartmentHouseEntranceToUpdate[] entranceToUpdateField; + + private importHouseUORequestApartmentHouseResidentialPremises[] residentialPremisesField; + + private importHouseUORequestApartmentHouseLiftToCreate[] liftToCreateField; + + private importHouseUORequestApartmentHouseLiftToUpdate[] liftToUpdateField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ApartmentHouseToCreate", typeof(importHouseUORequestApartmentHouseApartmentHouseToCreate), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ApartmentHouseToUpdate", typeof(importHouseUORequestApartmentHouseApartmentHouseToUpdate), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("NonResidentialPremiseToCreate", Order=1)] + public importHouseUORequestApartmentHouseNonResidentialPremiseToCreate[] NonResidentialPremiseToCreate { + get { + return this.nonResidentialPremiseToCreateField; + } + set { + this.nonResidentialPremiseToCreateField = value; + this.RaisePropertyChanged("NonResidentialPremiseToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("NonResidentialPremiseToUpdate", Order=2)] + public importHouseUORequestApartmentHouseNonResidentialPremiseToUpdate[] NonResidentialPremiseToUpdate { + get { + return this.nonResidentialPremiseToUpdateField; + } + set { + this.nonResidentialPremiseToUpdateField = value; + this.RaisePropertyChanged("NonResidentialPremiseToUpdate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceToCreate", Order=3)] + public importHouseUORequestApartmentHouseEntranceToCreate[] EntranceToCreate { + get { + return this.entranceToCreateField; + } + set { + this.entranceToCreateField = value; + this.RaisePropertyChanged("EntranceToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceToUpdate", Order=4)] + public importHouseUORequestApartmentHouseEntranceToUpdate[] EntranceToUpdate { + get { + return this.entranceToUpdateField; + } + set { + this.entranceToUpdateField = value; + this.RaisePropertyChanged("EntranceToUpdate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremises", Order=5)] + public importHouseUORequestApartmentHouseResidentialPremises[] ResidentialPremises { + get { + return this.residentialPremisesField; + } + set { + this.residentialPremisesField = value; + this.RaisePropertyChanged("ResidentialPremises"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LiftToCreate", Order=6)] + public importHouseUORequestApartmentHouseLiftToCreate[] LiftToCreate { + get { + return this.liftToCreateField; + } + set { + this.liftToCreateField = value; + this.RaisePropertyChanged("LiftToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LiftToUpdate", Order=7)] + public importHouseUORequestApartmentHouseLiftToUpdate[] LiftToUpdate { + get { + return this.liftToUpdateField; + } + set { + this.liftToUpdateField = value; + this.RaisePropertyChanged("LiftToUpdate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseApartmentHouseToCreate : ApartmentHouseUOType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseApartmentHouseToUpdate : ApartmentHouseUpdateUOType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseNonResidentialPremiseToCreate : NonResidentialPremisesUOType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseNonResidentialPremiseToUpdate : NonResidentialPremisesUpdateUOType { + + private string transportGUIDField; + + private string premisesGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PremisesGUID { + get { + return this.premisesGUIDField; + } + set { + this.premisesGUIDField = value; + this.RaisePropertyChanged("PremisesGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseEntranceToCreate : EntranceUOType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseEntranceToUpdate : EntranceUpdateUOType { + + private string transportGUIDField; + + private string entranceGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string EntranceGUID { + get { + return this.entranceGUIDField; + } + set { + this.entranceGUIDField = value; + this.RaisePropertyChanged("EntranceGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseResidentialPremises : object, System.ComponentModel.INotifyPropertyChanged { + + private GKN_EGRP_KeyType itemField; + + private importHouseUORequestApartmentHouseResidentialPremisesLivingRoomToCreate[] livingRoomToCreateField; + + private importHouseUORequestApartmentHouseResidentialPremisesLivingRoomToUpdate[] livingRoomToUpdateField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremisesToCreate", typeof(importHouseUORequestApartmentHouseResidentialPremisesResidentialPremisesToCreate), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremisesToUpdate", typeof(importHouseUORequestApartmentHouseResidentialPremisesResidentialPremisesToUpdate), Order=0)] + public GKN_EGRP_KeyType Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToCreate", Order=1)] + public importHouseUORequestApartmentHouseResidentialPremisesLivingRoomToCreate[] LivingRoomToCreate { + get { + return this.livingRoomToCreateField; + } + set { + this.livingRoomToCreateField = value; + this.RaisePropertyChanged("LivingRoomToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToUpdate", Order=2)] + public importHouseUORequestApartmentHouseResidentialPremisesLivingRoomToUpdate[] LivingRoomToUpdate { + get { + return this.livingRoomToUpdateField; + } + set { + this.livingRoomToUpdateField = value; + this.RaisePropertyChanged("LivingRoomToUpdate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseResidentialPremisesResidentialPremisesToCreate : ResidentialPremisesUOType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseResidentialPremisesResidentialPremisesToUpdate : ResidentialPremisesUpdateUOType { + + private string transportGUIDField; + + private string premisesGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PremisesGUID { + get { + return this.premisesGUIDField; + } + set { + this.premisesGUIDField = value; + this.RaisePropertyChanged("PremisesGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseResidentialPremisesLivingRoomToCreate : RoomUOType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseResidentialPremisesLivingRoomToUpdate : RoomUpdateUOType { + + private string transportGUIDField; + + private string livingRoomGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseLiftToCreate : LiftUOType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestApartmentHouseLiftToUpdate : LiftUpdateUOType { + + private string transportGUIDField; + + private string liftGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string LiftGUID { + get { + return this.liftGUIDField; + } + set { + this.liftGUIDField = value; + this.RaisePropertyChanged("LiftGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestLivingHouse : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingHouseToCreate", typeof(importHouseUORequestLivingHouseLivingHouseToCreate), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LivingHouseToUpdate", typeof(importHouseUORequestLivingHouseLivingHouseToUpdate), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Blocks", typeof(importHouseUORequestLivingHouseBlocks), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToCreate", typeof(importHouseUORequestLivingHouseLivingRoomToCreate), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToUpdate", typeof(importHouseUORequestLivingHouseLivingRoomToUpdate), Order=1)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestLivingHouseLivingHouseToCreate : LivingHouseUOType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestLivingHouseLivingHouseToUpdate : LivingHouseUpdateUOType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestLivingHouseBlocks : object, System.ComponentModel.INotifyPropertyChanged { + + private GKN_EGRP_KeyType itemField; + + private importHouseUORequestLivingHouseBlocksLivingRoomToCreate[] livingRoomToCreateField; + + private importHouseUORequestLivingHouseBlocksLivingRoomToUpdate[] livingRoomToUpdateField; + + /// + [System.Xml.Serialization.XmlElementAttribute("BlockToCreate", typeof(importHouseUORequestLivingHouseBlocksBlockToCreate), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("BlockToUpdate", typeof(importHouseUORequestLivingHouseBlocksBlockToUpdate), Order=0)] + public GKN_EGRP_KeyType Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToCreate", Order=1)] + public importHouseUORequestLivingHouseBlocksLivingRoomToCreate[] LivingRoomToCreate { + get { + return this.livingRoomToCreateField; + } + set { + this.livingRoomToCreateField = value; + this.RaisePropertyChanged("LivingRoomToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToUpdate", Order=2)] + public importHouseUORequestLivingHouseBlocksLivingRoomToUpdate[] LivingRoomToUpdate { + get { + return this.livingRoomToUpdateField; + } + set { + this.livingRoomToUpdateField = value; + this.RaisePropertyChanged("LivingRoomToUpdate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestLivingHouseBlocksBlockToCreate : BlockUOType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestLivingHouseBlocksBlockToUpdate : BlockUpdateUOType { + + private string transportGUIDField; + + private string blockGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string BlockGUID { + get { + return this.blockGUIDField; + } + set { + this.blockGUIDField = value; + this.RaisePropertyChanged("BlockGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestLivingHouseBlocksLivingRoomToCreate : RoomUOType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestLivingHouseBlocksLivingRoomToUpdate : RoomUpdateUOType { + + private string transportGUIDField; + + private string livingRoomGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestLivingHouseLivingRoomToCreate : RoomUOType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseUORequestLivingHouseLivingRoomToUpdate : RoomUpdateUOType { + + private string transportGUIDField; + + private string livingRoomGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importHouseUODataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importHouseUORequest importHouseUORequest; + + public importHouseUODataRequest() { + } + + public importHouseUODataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importHouseUORequest importHouseUORequest) { + this.RequestHeader = RequestHeader; + this.importHouseUORequest = importHouseUORequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importHouseUODataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importHouseUODataResponse() { + } + + public importHouseUODataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequest : BaseType { + + private object itemField; + + private bool inheritMissingValuesField; + + private bool inheritMissingValuesFieldSpecified; + + private string versionField; + + public importHouseOMSRequest() { + this.inheritMissingValuesField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ApartmentHouse", typeof(importHouseOMSRequestApartmentHouse), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LivingHouse", typeof(importHouseOMSRequestLivingHouse), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool InheritMissingValues { + get { + return this.inheritMissingValuesField; + } + set { + this.inheritMissingValuesField = value; + this.RaisePropertyChanged("InheritMissingValues"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InheritMissingValuesSpecified { + get { + return this.inheritMissingValuesFieldSpecified; + } + set { + this.inheritMissingValuesFieldSpecified = value; + this.RaisePropertyChanged("InheritMissingValuesSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouse : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private importHouseOMSRequestApartmentHouseNonResidentialPremiseToCreate[] nonResidentialPremiseToCreateField; + + private importHouseOMSRequestApartmentHouseNonResidentialPremiseToUpdate[] nonResidentialPremiseToUpdateField; + + private importHouseOMSRequestApartmentHouseEntranceToCreate[] entranceToCreateField; + + private importHouseOMSRequestApartmentHouseEntranceToUpdate[] entranceToUpdateField; + + private importHouseOMSRequestApartmentHouseResidentialPremises[] residentialPremisesField; + + private importHouseOMSRequestApartmentHouseLiftToCreate[] liftToCreateField; + + private importHouseOMSRequestApartmentHouseLiftToUpdate[] liftToUpdateField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ApartmentHouseToCreate", typeof(importHouseOMSRequestApartmentHouseApartmentHouseToCreate), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ApartmentHouseToUpdate", typeof(importHouseOMSRequestApartmentHouseApartmentHouseToUpdate), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("NonResidentialPremiseToCreate", Order=1)] + public importHouseOMSRequestApartmentHouseNonResidentialPremiseToCreate[] NonResidentialPremiseToCreate { + get { + return this.nonResidentialPremiseToCreateField; + } + set { + this.nonResidentialPremiseToCreateField = value; + this.RaisePropertyChanged("NonResidentialPremiseToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("NonResidentialPremiseToUpdate", Order=2)] + public importHouseOMSRequestApartmentHouseNonResidentialPremiseToUpdate[] NonResidentialPremiseToUpdate { + get { + return this.nonResidentialPremiseToUpdateField; + } + set { + this.nonResidentialPremiseToUpdateField = value; + this.RaisePropertyChanged("NonResidentialPremiseToUpdate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceToCreate", Order=3)] + public importHouseOMSRequestApartmentHouseEntranceToCreate[] EntranceToCreate { + get { + return this.entranceToCreateField; + } + set { + this.entranceToCreateField = value; + this.RaisePropertyChanged("EntranceToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceToUpdate", Order=4)] + public importHouseOMSRequestApartmentHouseEntranceToUpdate[] EntranceToUpdate { + get { + return this.entranceToUpdateField; + } + set { + this.entranceToUpdateField = value; + this.RaisePropertyChanged("EntranceToUpdate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremises", Order=5)] + public importHouseOMSRequestApartmentHouseResidentialPremises[] ResidentialPremises { + get { + return this.residentialPremisesField; + } + set { + this.residentialPremisesField = value; + this.RaisePropertyChanged("ResidentialPremises"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LiftToCreate", Order=6)] + public importHouseOMSRequestApartmentHouseLiftToCreate[] LiftToCreate { + get { + return this.liftToCreateField; + } + set { + this.liftToCreateField = value; + this.RaisePropertyChanged("LiftToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LiftToUpdate", Order=7)] + public importHouseOMSRequestApartmentHouseLiftToUpdate[] LiftToUpdate { + get { + return this.liftToUpdateField; + } + set { + this.liftToUpdateField = value; + this.RaisePropertyChanged("LiftToUpdate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseApartmentHouseToCreate : ApartmentHouseOMSType { + + private nsiRef houseManagementTypeField; + + private string transportGUIDField; + + private System.DateTime managementPeriodFromField; + + private bool managementPeriodFromFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef HouseManagementType { + get { + return this.houseManagementTypeField; + } + set { + this.houseManagementTypeField = value; + this.RaisePropertyChanged("HouseManagementType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=1)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime ManagementPeriodFrom { + get { + return this.managementPeriodFromField; + } + set { + this.managementPeriodFromField = value; + this.RaisePropertyChanged("ManagementPeriodFrom"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ManagementPeriodFromSpecified { + get { + return this.managementPeriodFromFieldSpecified; + } + set { + this.managementPeriodFromFieldSpecified = value; + this.RaisePropertyChanged("ManagementPeriodFromSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseApartmentHouseToUpdate : ApartmentHouseUpdateOMSType { + + private string transportGUIDField; + + private nsiRef houseManagementTypeField; + + private System.DateTime managementPeriodFromField; + + private bool managementPeriodFromFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef HouseManagementType { + get { + return this.houseManagementTypeField; + } + set { + this.houseManagementTypeField = value; + this.RaisePropertyChanged("HouseManagementType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime ManagementPeriodFrom { + get { + return this.managementPeriodFromField; + } + set { + this.managementPeriodFromField = value; + this.RaisePropertyChanged("ManagementPeriodFrom"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ManagementPeriodFromSpecified { + get { + return this.managementPeriodFromFieldSpecified; + } + set { + this.managementPeriodFromFieldSpecified = value; + this.RaisePropertyChanged("ManagementPeriodFromSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseNonResidentialPremiseToCreate : NonResidentialPremisesOMSType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseNonResidentialPremiseToUpdate : NonResidentialPremisesUpdateOMSType { + + private string transportGUIDField; + + private string premisesGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PremisesGUID { + get { + return this.premisesGUIDField; + } + set { + this.premisesGUIDField = value; + this.RaisePropertyChanged("PremisesGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseEntranceToCreate : EntranceOMSType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseEntranceToUpdate : EntranceUpdateOMSType { + + private string transportGUIDField; + + private string entranceGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string EntranceGUID { + get { + return this.entranceGUIDField; + } + set { + this.entranceGUIDField = value; + this.RaisePropertyChanged("EntranceGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseResidentialPremises : object, System.ComponentModel.INotifyPropertyChanged { + + private GKN_EGRP_KeyType itemField; + + private importHouseOMSRequestApartmentHouseResidentialPremisesLivingRoomToCreate[] livingRoomToCreateField; + + private importHouseOMSRequestApartmentHouseResidentialPremisesLivingRoomToUpdate[] livingRoomToUpdateField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremisesToCreate", typeof(importHouseOMSRequestApartmentHouseResidentialPremisesResidentialPremisesToCreate), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremisesToUpdate", typeof(importHouseOMSRequestApartmentHouseResidentialPremisesResidentialPremisesToUpdate), Order=0)] + public GKN_EGRP_KeyType Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToCreate", Order=1)] + public importHouseOMSRequestApartmentHouseResidentialPremisesLivingRoomToCreate[] LivingRoomToCreate { + get { + return this.livingRoomToCreateField; + } + set { + this.livingRoomToCreateField = value; + this.RaisePropertyChanged("LivingRoomToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToUpdate", Order=2)] + public importHouseOMSRequestApartmentHouseResidentialPremisesLivingRoomToUpdate[] LivingRoomToUpdate { + get { + return this.livingRoomToUpdateField; + } + set { + this.livingRoomToUpdateField = value; + this.RaisePropertyChanged("LivingRoomToUpdate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseResidentialPremisesResidentialPremisesToCreate : ResidentialPremisesOMSType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseResidentialPremisesResidentialPremisesToUpdate : ResidentialPremisesUpdateOMSType { + + private string transportGUIDField; + + private string premisesGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PremisesGUID { + get { + return this.premisesGUIDField; + } + set { + this.premisesGUIDField = value; + this.RaisePropertyChanged("PremisesGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseResidentialPremisesLivingRoomToCreate : RoomOMSType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseResidentialPremisesLivingRoomToUpdate : RoomUpdateOMSType { + + private string transportGUIDField; + + private string livingRoomGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseLiftToCreate : LiftOMSType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestApartmentHouseLiftToUpdate : LiftUpdateOMSType { + + private string transportGUIDField; + + private string liftGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string LiftGUID { + get { + return this.liftGUIDField; + } + set { + this.liftGUIDField = value; + this.RaisePropertyChanged("LiftGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestLivingHouse : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private object[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingHouseToCreate", typeof(importHouseOMSRequestLivingHouseLivingHouseToCreate), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("LivingHouseToUpdate", typeof(importHouseOMSRequestLivingHouseLivingHouseToUpdate), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Blocks", typeof(importHouseOMSRequestLivingHouseBlocks), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToCreate", typeof(importHouseOMSRequestLivingHouseLivingRoomToCreate), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToUpdate", typeof(importHouseOMSRequestLivingHouseLivingRoomToUpdate), Order=1)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestLivingHouseLivingHouseToCreate : LivingHouseOMSType { + + private string transportGUIDField; + + private nsiRef houseManagementTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef HouseManagementType { + get { + return this.houseManagementTypeField; + } + set { + this.houseManagementTypeField = value; + this.RaisePropertyChanged("HouseManagementType"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestLivingHouseLivingHouseToUpdate : LivingHouseUpdateOMSType { + + private string transportGUIDField; + + private nsiRef houseManagementTypeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef HouseManagementType { + get { + return this.houseManagementTypeField; + } + set { + this.houseManagementTypeField = value; + this.RaisePropertyChanged("HouseManagementType"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestLivingHouseBlocks : object, System.ComponentModel.INotifyPropertyChanged { + + private GKN_EGRP_KeyType itemField; + + private importHouseOMSRequestLivingHouseBlocksLivingRoomToCreate[] livingRoomToCreateField; + + private importHouseOMSRequestLivingHouseBlocksLivingRoomToUpdate[] livingRoomToUpdateField; + + /// + [System.Xml.Serialization.XmlElementAttribute("BlockToCreate", typeof(importHouseOMSRequestLivingHouseBlocksBlockToCreate), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("BlockToUpdate", typeof(importHouseOMSRequestLivingHouseBlocksBlockToUpdate), Order=0)] + public GKN_EGRP_KeyType Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToCreate", Order=1)] + public importHouseOMSRequestLivingHouseBlocksLivingRoomToCreate[] LivingRoomToCreate { + get { + return this.livingRoomToCreateField; + } + set { + this.livingRoomToCreateField = value; + this.RaisePropertyChanged("LivingRoomToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToUpdate", Order=2)] + public importHouseOMSRequestLivingHouseBlocksLivingRoomToUpdate[] LivingRoomToUpdate { + get { + return this.livingRoomToUpdateField; + } + set { + this.livingRoomToUpdateField = value; + this.RaisePropertyChanged("LivingRoomToUpdate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestLivingHouseBlocksBlockToCreate : BlockOMSType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestLivingHouseBlocksBlockToUpdate : BlockUpdateOMSType { + + private string transportGUIDField; + + private string blockGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string BlockGUID { + get { + return this.blockGUIDField; + } + set { + this.blockGUIDField = value; + this.RaisePropertyChanged("BlockGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestLivingHouseBlocksLivingRoomToCreate : RoomOMSType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestLivingHouseBlocksLivingRoomToUpdate : RoomUpdateOMSType { + + private string transportGUIDField; + + private string livingRoomGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestLivingHouseLivingRoomToCreate : RoomOMSType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseOMSRequestLivingHouseLivingRoomToUpdate : RoomUpdateOMSType { + + private string transportGUIDField; + + private string livingRoomGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importHouseOMSDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importHouseOMSRequest importHouseOMSRequest; + + public importHouseOMSDataRequest() { + } + + public importHouseOMSDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importHouseOMSRequest importHouseOMSRequest) { + this.RequestHeader = RequestHeader; + this.importHouseOMSRequest = importHouseOMSRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importHouseOMSDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importHouseOMSDataResponse() { + } + + public importHouseOMSDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequest : BaseType { + + private importHouseESPRequestApartmentHouse apartmentHouseField; + + private bool inheritMissingValuesField; + + private bool inheritMissingValuesFieldSpecified; + + private string versionField; + + public importHouseESPRequest() { + this.inheritMissingValuesField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public importHouseESPRequestApartmentHouse ApartmentHouse { + get { + return this.apartmentHouseField; + } + set { + this.apartmentHouseField = value; + this.RaisePropertyChanged("ApartmentHouse"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool InheritMissingValues { + get { + return this.inheritMissingValuesField; + } + set { + this.inheritMissingValuesField = value; + this.RaisePropertyChanged("InheritMissingValues"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool InheritMissingValuesSpecified { + get { + return this.inheritMissingValuesFieldSpecified; + } + set { + this.inheritMissingValuesFieldSpecified = value; + this.RaisePropertyChanged("InheritMissingValuesSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouse : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + private importHouseESPRequestApartmentHouseNonResidentialPremiseToCreate[] nonResidentialPremiseToCreateField; + + private importHouseESPRequestApartmentHouseNonResidentialPremiseToUpdate[] nonResidentialPremiseToUpdateField; + + private importHouseESPRequestApartmentHouseEntranceToCreate[] entranceToCreateField; + + private importHouseESPRequestApartmentHouseEntranceToUpdate[] entranceToUpdateField; + + private importHouseESPRequestApartmentHouseResidentialPremises[] residentialPremisesField; + + private importHouseESPRequestApartmentHouseLiftToCreate[] liftToCreateField; + + private importHouseESPRequestApartmentHouseLiftToUpdate[] liftToUpdateField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ApartmentHouseToCreate", typeof(importHouseESPRequestApartmentHouseApartmentHouseToCreate), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ApartmentHouseToUpdate", typeof(importHouseESPRequestApartmentHouseApartmentHouseToUpdate), Order=0)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("NonResidentialPremiseToCreate", Order=1)] + public importHouseESPRequestApartmentHouseNonResidentialPremiseToCreate[] NonResidentialPremiseToCreate { + get { + return this.nonResidentialPremiseToCreateField; + } + set { + this.nonResidentialPremiseToCreateField = value; + this.RaisePropertyChanged("NonResidentialPremiseToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("NonResidentialPremiseToUpdate", Order=2)] + public importHouseESPRequestApartmentHouseNonResidentialPremiseToUpdate[] NonResidentialPremiseToUpdate { + get { + return this.nonResidentialPremiseToUpdateField; + } + set { + this.nonResidentialPremiseToUpdateField = value; + this.RaisePropertyChanged("NonResidentialPremiseToUpdate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceToCreate", Order=3)] + public importHouseESPRequestApartmentHouseEntranceToCreate[] EntranceToCreate { + get { + return this.entranceToCreateField; + } + set { + this.entranceToCreateField = value; + this.RaisePropertyChanged("EntranceToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("EntranceToUpdate", Order=4)] + public importHouseESPRequestApartmentHouseEntranceToUpdate[] EntranceToUpdate { + get { + return this.entranceToUpdateField; + } + set { + this.entranceToUpdateField = value; + this.RaisePropertyChanged("EntranceToUpdate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremises", Order=5)] + public importHouseESPRequestApartmentHouseResidentialPremises[] ResidentialPremises { + get { + return this.residentialPremisesField; + } + set { + this.residentialPremisesField = value; + this.RaisePropertyChanged("ResidentialPremises"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LiftToCreate", Order=6)] + public importHouseESPRequestApartmentHouseLiftToCreate[] LiftToCreate { + get { + return this.liftToCreateField; + } + set { + this.liftToCreateField = value; + this.RaisePropertyChanged("LiftToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LiftToUpdate", Order=7)] + public importHouseESPRequestApartmentHouseLiftToUpdate[] LiftToUpdate { + get { + return this.liftToUpdateField; + } + set { + this.liftToUpdateField = value; + this.RaisePropertyChanged("LiftToUpdate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseApartmentHouseToCreate : ApartmentHouseESPType { + + private string transportGUIDField; + + private nsiRef houseManagementTypeField; + + private System.DateTime managementPeriodFromField; + + private bool managementPeriodFromFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef HouseManagementType { + get { + return this.houseManagementTypeField; + } + set { + this.houseManagementTypeField = value; + this.RaisePropertyChanged("HouseManagementType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime ManagementPeriodFrom { + get { + return this.managementPeriodFromField; + } + set { + this.managementPeriodFromField = value; + this.RaisePropertyChanged("ManagementPeriodFrom"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ManagementPeriodFromSpecified { + get { + return this.managementPeriodFromFieldSpecified; + } + set { + this.managementPeriodFromFieldSpecified = value; + this.RaisePropertyChanged("ManagementPeriodFromSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseApartmentHouseToUpdate : ApartmentHouseUpdateESPType { + + private string transportGUIDField; + + private nsiRef houseManagementTypeField; + + private System.DateTime managementPeriodFromField; + + private bool managementPeriodFromFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef HouseManagementType { + get { + return this.houseManagementTypeField; + } + set { + this.houseManagementTypeField = value; + this.RaisePropertyChanged("HouseManagementType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=2)] + public System.DateTime ManagementPeriodFrom { + get { + return this.managementPeriodFromField; + } + set { + this.managementPeriodFromField = value; + this.RaisePropertyChanged("ManagementPeriodFrom"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool ManagementPeriodFromSpecified { + get { + return this.managementPeriodFromFieldSpecified; + } + set { + this.managementPeriodFromFieldSpecified = value; + this.RaisePropertyChanged("ManagementPeriodFromSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseNonResidentialPremiseToCreate : NonResidentialPremisesESPType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseNonResidentialPremiseToUpdate : NonResidentialPremisesUpdateESPType { + + private string transportGUIDField; + + private string premisesGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PremisesGUID { + get { + return this.premisesGUIDField; + } + set { + this.premisesGUIDField = value; + this.RaisePropertyChanged("PremisesGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseEntranceToCreate : EntranceESPType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseEntranceToUpdate : EntranceUpdateESPType { + + private string transportGUIDField; + + private string entranceGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string EntranceGUID { + get { + return this.entranceGUIDField; + } + set { + this.entranceGUIDField = value; + this.RaisePropertyChanged("EntranceGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseResidentialPremises : object, System.ComponentModel.INotifyPropertyChanged { + + private GKN_EGRP_KeyType itemField; + + private importHouseESPRequestApartmentHouseResidentialPremisesLivingRoomToCreate[] livingRoomToCreateField; + + private importHouseESPRequestApartmentHouseResidentialPremisesLivingRoomToUpdate[] livingRoomToUpdateField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremisesToCreate", typeof(importHouseESPRequestApartmentHouseResidentialPremisesResidentialPremisesToCreate), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ResidentialPremisesToUpdate", typeof(importHouseESPRequestApartmentHouseResidentialPremisesResidentialPremisesToUpdate), Order=0)] + public GKN_EGRP_KeyType Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToCreate", Order=1)] + public importHouseESPRequestApartmentHouseResidentialPremisesLivingRoomToCreate[] LivingRoomToCreate { + get { + return this.livingRoomToCreateField; + } + set { + this.livingRoomToCreateField = value; + this.RaisePropertyChanged("LivingRoomToCreate"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("LivingRoomToUpdate", Order=2)] + public importHouseESPRequestApartmentHouseResidentialPremisesLivingRoomToUpdate[] LivingRoomToUpdate { + get { + return this.livingRoomToUpdateField; + } + set { + this.livingRoomToUpdateField = value; + this.RaisePropertyChanged("LivingRoomToUpdate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseResidentialPremisesResidentialPremisesToCreate : ResidentialPremisesESPType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseResidentialPremisesResidentialPremisesToUpdate : ResidentialPremisesUpdateESPType { + + private string transportGUIDField; + + private string premisesGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PremisesGUID { + get { + return this.premisesGUIDField; + } + set { + this.premisesGUIDField = value; + this.RaisePropertyChanged("PremisesGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseResidentialPremisesLivingRoomToCreate : RoomESPType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseResidentialPremisesLivingRoomToUpdate : RoomUpdateESPType { + + private string transportGUIDField; + + private string livingRoomGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string LivingRoomGUID { + get { + return this.livingRoomGUIDField; + } + set { + this.livingRoomGUIDField = value; + this.RaisePropertyChanged("LivingRoomGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseLiftToCreate : LiftESPType { + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importHouseESPRequestApartmentHouseLiftToUpdate : LiftUpdateESPType { + + private string transportGUIDField; + + private string liftGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string LiftGUID { + get { + return this.liftGUIDField; + } + set { + this.liftGUIDField = value; + this.RaisePropertyChanged("LiftGUID"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importHouseESPDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importHouseESPRequest importHouseESPRequest; + + public importHouseESPDataRequest() { + } + + public importHouseESPDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importHouseESPRequest importHouseESPRequest) { + this.RequestHeader = RequestHeader; + this.importHouseESPRequest = importHouseESPRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importHouseESPDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importHouseESPDataResponse() { + } + + public importHouseESPDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractRequest : BaseType { + + private importSupplyResourceContractRequestContract[] contractField; + + private string versionField; + + public importSupplyResourceContractRequest() { + this.versionField = "11.3.0.5"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Contract", Order=0)] + public importSupplyResourceContractRequestContract[] Contract { + get { + return this.contractField; + } + set { + this.contractField = value; + this.RaisePropertyChanged("Contract"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractRequestContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private string itemField; + + private ItemChoiceType32 itemElementNameField; + + private object item1Field; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ContractRootGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType32 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AnnulmentContract", typeof(AnnulmentType), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("RollOverContract", typeof(importSupplyResourceContractRequestContractRollOverContract), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("SupplyResourceContract", typeof(SupplyResourceContractType), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("TerminateContract", typeof(importSupplyResourceContractRequestContractTerminateContract), Order=3)] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType32 { + + /// + ContractGUID, + + /// + ContractRootGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractRequestContractRollOverContract : object, System.ComponentModel.INotifyPropertyChanged { + + private System.DateTime rollOverDateField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime RollOverDate { + get { + return this.rollOverDateField; + } + set { + this.rollOverDateField = value; + this.RaisePropertyChanged("RollOverDate"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractRequestContractTerminateContract : TerminateType { + + private nsiRef reasonRefField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public nsiRef ReasonRef { + get { + return this.reasonRefField; + } + set { + this.reasonRefField = value; + this.RaisePropertyChanged("ReasonRef"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importSupplyResourceContractDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importSupplyResourceContractRequest importSupplyResourceContractRequest; + + public importSupplyResourceContractDataRequest() { + } + + public importSupplyResourceContractDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importSupplyResourceContractRequest importSupplyResourceContractRequest) { + this.RequestHeader = RequestHeader; + this.importSupplyResourceContractRequest = importSupplyResourceContractRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importSupplyResourceContractDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importSupplyResourceContractDataResponse() { + } + + public importSupplyResourceContractDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractRequest : BaseType { + + private object[] itemsField; + + private ItemsChoiceType32[] itemsElementNameField; + + private string versionField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractNumber", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractRootGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractSubject", typeof(exportSupplyResourceContractRequestContractSubject), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ExportContractRootGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("SigningDateEnd", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("SigningDateStart", typeof(System.DateTime), DataType="date", Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType32[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractRequestContractSubject : object, System.ComponentModel.INotifyPropertyChanged { + + private exportSupplyResourceContractRequestContractSubjectServiceType serviceTypeField; + + private nsiRef municipalResourceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public exportSupplyResourceContractRequestContractSubjectServiceType ServiceType { + get { + return this.serviceTypeField; + } + set { + this.serviceTypeField = value; + this.RaisePropertyChanged("ServiceType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef MunicipalResource { + get { + return this.municipalResourceField; + } + set { + this.municipalResourceField = value; + this.RaisePropertyChanged("MunicipalResource"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractRequestContractSubjectServiceType : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType32 { + + /// + ContractGUID, + + /// + ContractNumber, + + /// + ContractRootGUID, + + /// + ContractSubject, + + /// + ExportContractRootGUID, + + /// + FIASHouseGuid, + + /// + SigningDateEnd, + + /// + SigningDateStart, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportSupplyResourceContractDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportSupplyResourceContractRequest exportSupplyResourceContractRequest; + + public exportSupplyResourceContractDataRequest() { + } + + public exportSupplyResourceContractDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportSupplyResourceContractRequest exportSupplyResourceContractRequest) { + this.RequestHeader = RequestHeader; + this.exportSupplyResourceContractRequest = exportSupplyResourceContractRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportSupplyResourceContractDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportSupplyResourceContractDataResponse() { + } + + public exportSupplyResourceContractDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importAccountIndividualServicesRequest : BaseType { + + private object[] itemsField; + + private string versionField; + + public importAccountIndividualServicesRequest() { + this.versionField = "11.0.0.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("DeleteIndividualService", typeof(importAccountIndividualServicesRequestDeleteIndividualService), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("IndividualService", typeof(importAccountIndividualServicesRequestIndividualService), Order=0)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importAccountIndividualServicesRequestDeleteIndividualService : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private string accountIndividualServiceGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string AccountIndividualServiceGUID { + get { + return this.accountIndividualServiceGUIDField; + } + set { + this.accountIndividualServiceGUIDField = value; + this.RaisePropertyChanged("AccountIndividualServiceGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importAccountIndividualServicesRequestIndividualService : AccountIndividualServiceType { + + private string transportGUIDField; + + private string itemField; + + private ItemChoiceType33 itemElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AccountGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("AccountIndividualServiceGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType33 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType33 { + + /// + AccountGUID, + + /// + AccountIndividualServiceGUID, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importAccountIndividualServicesRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importAccountIndividualServicesRequest importAccountIndividualServicesRequest; + + public importAccountIndividualServicesRequest1() { + } + + public importAccountIndividualServicesRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importAccountIndividualServicesRequest importAccountIndividualServicesRequest) { + this.RequestHeader = RequestHeader; + this.importAccountIndividualServicesRequest = importAccountIndividualServicesRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importAccountIndividualServicesResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importAccountIndividualServicesResponse() { + } + + public importAccountIndividualServicesResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportAccountIndividualServicesRequest : BaseType { + + private string[] itemsField; + + private ItemsChoiceType33[] itemsElementNameField; + + private string versionField; + + public exportAccountIndividualServicesRequest() { + this.versionField = "11.0.0.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("AccountGuid", typeof(string), Namespace="http://dom.gosuslugi.ru/schema/integration/account-base/", Order=0)] + [System.Xml.Serialization.XmlElementAttribute("AccountIndividualServiceGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public string[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType33[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType33 { + + /// + [System.Xml.Serialization.XmlEnumAttribute("http://dom.gosuslugi.ru/schema/integration/account-base/:AccountGuid")] + AccountGuid, + + /// + AccountIndividualServiceGUID, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportAccountIndividualServicesRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesRequest exportAccountIndividualServicesRequest; + + public exportAccountIndividualServicesRequest1() { + } + + public exportAccountIndividualServicesRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesRequest exportAccountIndividualServicesRequest) { + this.RequestHeader = RequestHeader; + this.exportAccountIndividualServicesRequest = exportAccountIndividualServicesRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportAccountIndividualServicesResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportAccountIndividualServicesResponse() { + } + + public exportAccountIndividualServicesResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportSupplyResourceContractObjectAddressRequest : BaseType { + + private string[] itemsField; + + private ItemsChoiceType34[] itemsElementNameField; + + private string versionField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractRootGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ExportObjectGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public string[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType34[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType34 { + + /// + ContractGUID, + + /// + ContractRootGUID, + + /// + ExportObjectGUID, + + /// + FIASHouseGuid, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportSupplyResourceContractObjectAddressDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressRequest exportSupplyResourceContractObjectAddressRequest; + + public exportSupplyResourceContractObjectAddressDataRequest() { + } + + public exportSupplyResourceContractObjectAddressDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressRequest exportSupplyResourceContractObjectAddressRequest) { + this.RequestHeader = RequestHeader; + this.exportSupplyResourceContractObjectAddressRequest = exportSupplyResourceContractObjectAddressRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportSupplyResourceContractObjectAddressDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportSupplyResourceContractObjectAddressDataResponse() { + } + + public exportSupplyResourceContractObjectAddressDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractObjectAddressRequest : BaseType { + + private string itemField; + + private ItemChoiceType34 itemElementNameField; + + private importSupplyResourceContractObjectAddressRequestObjectAddress[] objectAddressField; + + private string versionField; + + public importSupplyResourceContractObjectAddressRequest() { + this.versionField = "11.7.0.3"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("ContractRootGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType34 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ObjectAddress", Order=2)] + public importSupplyResourceContractObjectAddressRequestObjectAddress[] ObjectAddress { + get { + return this.objectAddressField; + } + set { + this.objectAddressField = value; + this.RaisePropertyChanged("ObjectAddress"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType34 { + + /// + ContractGUID, + + /// + ContractRootGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractObjectAddressRequestObjectAddress : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private string objectGUIDField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string ObjectGUID { + get { + return this.objectGUIDField; + } + set { + this.objectGUIDField = value; + this.RaisePropertyChanged("ObjectGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("DeleteObject", typeof(bool), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("LoadObject", typeof(importSupplyResourceContractObjectAddressRequestObjectAddressLoadObject), Order=2)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractObjectAddressRequestObjectAddressLoadObject : ObjectAddressType { + + private importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPair[] pairField; + + private bool noConnectionToWaterSupplyField; + + private bool noConnectionToWaterSupplyFieldSpecified; + + private importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectQuality[] qualityField; + + private importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectOtherQualityIndicator[] otherQualityIndicatorField; + + private importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectTemperatureChart[] temperatureChartField; + + private importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPlannedVolume[] plannedVolumeField; + + private importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectCountingResource countingResourceField; + + private bool countingResourceFieldSpecified; + + private bool meteringDeviceInformationField; + + private bool meteringDeviceInformationFieldSpecified; + + private importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectTariff[] tariffField; + + private importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectNorm[] normField; + + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObject() { + this.noConnectionToWaterSupplyField = true; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Pair", Order=0)] + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPair[] Pair { + get { + return this.pairField; + } + set { + this.pairField = value; + this.RaisePropertyChanged("Pair"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public bool NoConnectionToWaterSupply { + get { + return this.noConnectionToWaterSupplyField; + } + set { + this.noConnectionToWaterSupplyField = value; + this.RaisePropertyChanged("NoConnectionToWaterSupply"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool NoConnectionToWaterSupplySpecified { + get { + return this.noConnectionToWaterSupplyFieldSpecified; + } + set { + this.noConnectionToWaterSupplyFieldSpecified = value; + this.RaisePropertyChanged("NoConnectionToWaterSupplySpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Quality", Order=2)] + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectQuality[] Quality { + get { + return this.qualityField; + } + set { + this.qualityField = value; + this.RaisePropertyChanged("Quality"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OtherQualityIndicator", Order=3)] + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectOtherQualityIndicator[] OtherQualityIndicator { + get { + return this.otherQualityIndicatorField; + } + set { + this.otherQualityIndicatorField = value; + this.RaisePropertyChanged("OtherQualityIndicator"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TemperatureChart", Order=4)] + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectTemperatureChart[] TemperatureChart { + get { + return this.temperatureChartField; + } + set { + this.temperatureChartField = value; + this.RaisePropertyChanged("TemperatureChart"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("PlannedVolume", Order=5)] + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPlannedVolume[] PlannedVolume { + get { + return this.plannedVolumeField; + } + set { + this.plannedVolumeField = value; + this.RaisePropertyChanged("PlannedVolume"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=6)] + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectCountingResource CountingResource { + get { + return this.countingResourceField; + } + set { + this.countingResourceField = value; + this.RaisePropertyChanged("CountingResource"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool CountingResourceSpecified { + get { + return this.countingResourceFieldSpecified; + } + set { + this.countingResourceFieldSpecified = value; + this.RaisePropertyChanged("CountingResourceSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=7)] + public bool MeteringDeviceInformation { + get { + return this.meteringDeviceInformationField; + } + set { + this.meteringDeviceInformationField = value; + this.RaisePropertyChanged("MeteringDeviceInformation"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool MeteringDeviceInformationSpecified { + get { + return this.meteringDeviceInformationFieldSpecified; + } + set { + this.meteringDeviceInformationFieldSpecified = value; + this.RaisePropertyChanged("MeteringDeviceInformationSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Tariff", Order=8)] + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectTariff[] Tariff { + get { + return this.tariffField; + } + set { + this.tariffField = value; + this.RaisePropertyChanged("Tariff"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Norm", Order=9)] + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectNorm[] Norm { + get { + return this.normField; + } + set { + this.normField = value; + this.RaisePropertyChanged("Norm"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPair : ContractSubjectObjectAdressType { + + private importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPairHeatingSystemType heatingSystemTypeField; + + private string transportGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPairHeatingSystemType HeatingSystemType { + get { + return this.heatingSystemTypeField; + } + set { + this.heatingSystemTypeField = value; + this.RaisePropertyChanged("HeatingSystemType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=1)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPairHeatingSystemType : object, System.ComponentModel.INotifyPropertyChanged { + + private importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPairHeatingSystemTypeOpenOrNot openOrNotField; + + private importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPairHeatingSystemTypeCentralizedOrNot centralizedOrNotField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPairHeatingSystemTypeOpenOrNot OpenOrNot { + get { + return this.openOrNotField; + } + set { + this.openOrNotField = value; + this.RaisePropertyChanged("OpenOrNot"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPairHeatingSystemTypeCentralizedOrNot CentralizedOrNot { + get { + return this.centralizedOrNotField; + } + set { + this.centralizedOrNotField = value; + this.RaisePropertyChanged("CentralizedOrNot"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPairHeatingSystemTypeOpenOrNot { + + /// + Opened, + + /// + Closed, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPairHeatingSystemTypeCentralizedOrNot { + + /// + Centralized, + + /// + Decentralized, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectQuality : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private nsiRef qualityIndicatorField; + + private importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectQualityIndicatorValue indicatorValueField; + + private string additionalInformationField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef QualityIndicator { + get { + return this.qualityIndicatorField; + } + set { + this.qualityIndicatorField = value; + this.RaisePropertyChanged("QualityIndicator"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectQualityIndicatorValue IndicatorValue { + get { + return this.indicatorValueField; + } + set { + this.indicatorValueField = value; + this.RaisePropertyChanged("IndicatorValue"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string AdditionalInformation { + get { + return this.additionalInformationField; + } + set { + this.additionalInformationField = value; + this.RaisePropertyChanged("AdditionalInformation"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectQualityIndicatorValue : IndicatorValueType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectOtherQualityIndicator : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private string indicatorNameField; + + private object[] itemsField; + + private ItemsChoiceType35[] itemsElementNameField; + + private string additionalInformationField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string IndicatorName { + get { + return this.indicatorNameField; + } + set { + this.indicatorNameField = value; + this.RaisePropertyChanged("IndicatorName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OKEI", typeof(string), Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Correspond", typeof(bool), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("EndRange", typeof(decimal), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Number", typeof(decimal), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("StartRange", typeof(decimal), Order=2)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=3)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType35[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string AdditionalInformation { + get { + return this.additionalInformationField; + } + set { + this.additionalInformationField = value; + this.RaisePropertyChanged("AdditionalInformation"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType35 { + + /// + [System.Xml.Serialization.XmlEnumAttribute("http://dom.gosuslugi.ru/schema/integration/base/:OKEI")] + OKEI, + + /// + Correspond, + + /// + EndRange, + + /// + Number, + + /// + StartRange, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectTemperatureChart : object, System.ComponentModel.INotifyPropertyChanged { + + private int outsideTemperatureField; + + private decimal flowLineTemperatureField; + + private decimal oppositeLineTemperatureField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public int OutsideTemperature { + get { + return this.outsideTemperatureField; + } + set { + this.outsideTemperatureField = value; + this.RaisePropertyChanged("OutsideTemperature"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal FlowLineTemperature { + get { + return this.flowLineTemperatureField; + } + set { + this.flowLineTemperatureField = value; + this.RaisePropertyChanged("FlowLineTemperature"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public decimal OppositeLineTemperature { + get { + return this.oppositeLineTemperatureField; + } + set { + this.oppositeLineTemperatureField = value; + this.RaisePropertyChanged("OppositeLineTemperature"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectPlannedVolume : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private decimal volumeField; + + private string unitField; + + private string feedingModeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public decimal Volume { + get { + return this.volumeField; + } + set { + this.volumeField = value; + this.RaisePropertyChanged("Volume"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Unit { + get { + return this.unitField; + } + set { + this.unitField = value; + this.RaisePropertyChanged("Unit"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string FeedingMode { + get { + return this.feedingModeField; + } + set { + this.feedingModeField = value; + this.RaisePropertyChanged("FeedingMode"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectCountingResource { + + /// + R, + + /// + P, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectTariff : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private string priceGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string PriceGUID { + get { + return this.priceGUIDField; + } + set { + this.priceGUIDField = value; + this.RaisePropertyChanged("PriceGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractObjectAddressRequestObjectAddressLoadObjectNorm : object, System.ComponentModel.INotifyPropertyChanged { + + private string pairKeyField; + + private string normGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string PairKey { + get { + return this.pairKeyField; + } + set { + this.pairKeyField = value; + this.RaisePropertyChanged("PairKey"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string NormGUID { + get { + return this.normGUIDField; + } + set { + this.normGUIDField = value; + this.RaisePropertyChanged("NormGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importSupplyResourceContractObjectAddressDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressRequest importSupplyResourceContractObjectAddressRequest; + + public importSupplyResourceContractObjectAddressDataRequest() { + } + + public importSupplyResourceContractObjectAddressDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressRequest importSupplyResourceContractObjectAddressRequest) { + this.RequestHeader = RequestHeader; + this.importSupplyResourceContractObjectAddressRequest = importSupplyResourceContractObjectAddressRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importSupplyResourceContractObjectAddressDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importSupplyResourceContractObjectAddressDataResponse() { + } + + public importSupplyResourceContractObjectAddressDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractProjectRequest : BaseType { + + private importSupplyResourceContractProjectRequestContract[] contractField; + + private string versionField; + + public importSupplyResourceContractProjectRequest() { + this.versionField = "11.7.0.3"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Contract", Order=0)] + public importSupplyResourceContractProjectRequestContract[] Contract { + get { + return this.contractField; + } + set { + this.contractField = value; + this.RaisePropertyChanged("Contract"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importSupplyResourceContractProjectRequestContract : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private string itemField; + + private ItemChoiceType35 itemElementNameField; + + private object item1Field; + + private Item1ChoiceType10 item1ElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ContractRootGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemElementName")] + public string Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemChoiceType35 ItemElementName { + get { + return this.itemElementNameField; + } + set { + this.itemElementNameField = value; + this.RaisePropertyChanged("ItemElementName"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractProject", typeof(SupplyResourceContractProjectType), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("DeleteContractProject", typeof(bool), Order=3)] + [System.Xml.Serialization.XmlElementAttribute("PlacingContractProject", typeof(bool), Order=3)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("Item1ElementName")] + public object Item1 { + get { + return this.item1Field; + } + set { + this.item1Field = value; + this.RaisePropertyChanged("Item1"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public Item1ChoiceType10 Item1ElementName { + get { + return this.item1ElementNameField; + } + set { + this.item1ElementNameField = value; + this.RaisePropertyChanged("Item1ElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemChoiceType35 { + + /// + ContractGUID, + + /// + ContractRootGUID, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum Item1ChoiceType10 { + + /// + ContractProject, + + /// + DeleteContractProject, + + /// + PlacingContractProject, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importSupplyResourceContractProjectDataRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectRequest importSupplyResourceContractProjectRequest; + + public importSupplyResourceContractProjectDataRequest() { + } + + public importSupplyResourceContractProjectDataRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectRequest importSupplyResourceContractProjectRequest) { + this.RequestHeader = RequestHeader; + this.importSupplyResourceContractProjectRequest = importSupplyResourceContractProjectRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importSupplyResourceContractProjectDataResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importSupplyResourceContractProjectDataResponse() { + } + + public importSupplyResourceContractProjectDataResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public partial class ISRequestHeader : HeaderType { + + private ISCreator[] iSCreatorField; + + /// + [System.Xml.Serialization.XmlElementAttribute("ISCreator", Order=0)] + public ISCreator[] ISCreator { + get { + return this.iSCreatorField; + } + set { + this.iSCreatorField = value; + this.RaisePropertyChanged("ISCreator"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportRolloverStatusCAChRequest : BaseType { + + private System.DateTime dateToField; + + private System.DateTime dateFromField; + + private string[] orgPPAGUIDField; + + private string versionField; + + public exportRolloverStatusCAChRequest() { + this.versionField = "11.12.0.7"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=0)] + public System.DateTime DateTo { + get { + return this.dateToField; + } + set { + this.dateToField = value; + this.RaisePropertyChanged("DateTo"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="date", Order=1)] + public System.DateTime DateFrom { + get { + return this.dateFromField; + } + set { + this.dateFromField = value; + this.RaisePropertyChanged("DateFrom"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("orgPPAGUID", Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=2)] + public string[] orgPPAGUID { + get { + return this.orgPPAGUIDField; + } + set { + this.orgPPAGUIDField = value; + this.RaisePropertyChanged("orgPPAGUID"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportRolloverStatusCAChRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ISRequestHeader ISRequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChRequest exportRolloverStatusCAChRequest; + + public exportRolloverStatusCAChRequest1() { + } + + public exportRolloverStatusCAChRequest1(Hcs.Service.Async.HouseManagement.ISRequestHeader ISRequestHeader, Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChRequest exportRolloverStatusCAChRequest) { + this.ISRequestHeader = ISRequestHeader; + this.exportRolloverStatusCAChRequest = exportRolloverStatusCAChRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportRolloverStatusCAChResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportRolloverStatusCAChResponse() { + } + + public exportRolloverStatusCAChResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractRequest : BaseType { + + private string nextPageContractRootGUIDField; + + private string nextPageObjectGUIDField; + + private object[] itemsField; + + private string versionField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string NextPageContractRootGUID { + get { + return this.nextPageContractRootGUIDField; + } + set { + this.nextPageContractRootGUIDField = value; + this.RaisePropertyChanged("NextPageContractRootGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string NextPageObjectGUID { + get { + return this.nextPageObjectGUIDField; + } + set { + this.nextPageObjectGUIDField = value; + this.RaisePropertyChanged("NextPageObjectGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Criteria", typeof(exportBriefSupplyResourceContractRequestCriteria), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Organization", typeof(RegOrgType), Order=2)] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractRequestCriteria : object, System.ComponentModel.INotifyPropertyChanged { + + private string fIASHouseGuidField; + + private object[] itemsField; + + private ItemsChoiceType36[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ContractNumber", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ContractRootGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ContractSubject", typeof(exportBriefSupplyResourceContractRequestCriteriaContractSubject), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("SigningDateEnd", typeof(System.DateTime), DataType="date", Order=1)] + [System.Xml.Serialization.XmlElementAttribute("SigningDateStart", typeof(System.DateTime), DataType="date", Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType36[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractRequestCriteriaContractSubject : object, System.ComponentModel.INotifyPropertyChanged { + + private exportBriefSupplyResourceContractRequestCriteriaContractSubjectServiceType serviceTypeField; + + private nsiRef municipalResourceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public exportBriefSupplyResourceContractRequestCriteriaContractSubjectServiceType ServiceType { + get { + return this.serviceTypeField; + } + set { + this.serviceTypeField = value; + this.RaisePropertyChanged("ServiceType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public nsiRef MunicipalResource { + get { + return this.municipalResourceField; + } + set { + this.municipalResourceField = value; + this.RaisePropertyChanged("MunicipalResource"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSupplyResourceContractRequestCriteriaContractSubjectServiceType : nsiRef { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType36 { + + /// + ContractGUID, + + /// + ContractNumber, + + /// + ContractRootGUID, + + /// + ContractSubject, + + /// + SigningDateEnd, + + /// + SigningDateStart, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportBriefSupplyResourceContractRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractRequest exportBriefSupplyResourceContractRequest; + + public exportBriefSupplyResourceContractRequest1() { + } + + public exportBriefSupplyResourceContractRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractRequest exportBriefSupplyResourceContractRequest) { + this.RequestHeader = RequestHeader; + this.exportBriefSupplyResourceContractRequest = exportBriefSupplyResourceContractRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportBriefSupplyResourceContractResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportBriefSupplyResourceContractResponse() { + } + + public exportBriefSupplyResourceContractResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSocialHireContractRequest : BaseType { + + private exportBriefSocialHireContractRequestCriteria[] criteriaField; + + private string versionField; + + public exportBriefSocialHireContractRequest() { + this.versionField = "11.14.0.2"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Criteria", Order=0)] + public exportBriefSocialHireContractRequestCriteria[] Criteria { + get { + return this.criteriaField; + } + set { + this.criteriaField = value; + this.RaisePropertyChanged("Criteria"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefSocialHireContractRequestCriteria : object, System.ComponentModel.INotifyPropertyChanged { + + private string fIASHouseGuidField; + + private object[] itemsField; + + private ItemsChoiceType37[] itemsElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string FIASHouseGuid { + get { + return this.fIASHouseGuidField; + } + set { + this.fIASHouseGuidField = value; + this.RaisePropertyChanged("FIASHouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ContractGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ContractNumber", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("ContractRootGUID", typeof(string), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("SigningDateEnd", typeof(System.DateTime), DataType="date", Order=1)] + [System.Xml.Serialization.XmlElementAttribute("SigningDateStart", typeof(System.DateTime), DataType="date", Order=1)] + [System.Xml.Serialization.XmlElementAttribute("Type", typeof(exportBriefSocialHireContractRequestCriteriaType), Order=1)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public object[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=2)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType37[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public enum exportBriefSocialHireContractRequestCriteriaType { + + /// + D, + + /// + M, + + /// + S, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType37 { + + /// + ContractGUID, + + /// + ContractNumber, + + /// + ContractRootGUID, + + /// + SigningDateEnd, + + /// + SigningDateStart, + + /// + Type, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportBriefSocialHireContractRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractRequest exportBriefSocialHireContractRequest; + + public exportBriefSocialHireContractRequest1() { + } + + public exportBriefSocialHireContractRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractRequest exportBriefSocialHireContractRequest) { + this.RequestHeader = RequestHeader; + this.exportBriefSocialHireContractRequest = exportBriefSocialHireContractRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportBriefSocialHireContractResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportBriefSocialHireContractResponse() { + } + + public exportBriefSocialHireContractResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class demolishHouseRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Name="demolishHouseRequest", Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.DemolishHouseRequestType demolishHouseRequest1; + + public demolishHouseRequest() { + } + + public demolishHouseRequest(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.DemolishHouseRequestType demolishHouseRequest1) { + this.RequestHeader = RequestHeader; + this.demolishHouseRequest1 = demolishHouseRequest1; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class demolishHouseResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public demolishHouseResponse() { + } + + public demolishHouseResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefBasicHouseRequest : BaseType { + + private ExportBriefBasicHouseRequestType[] requestItemField; + + private string versionField; + + /// + [System.Xml.Serialization.XmlElementAttribute("RequestItem", Order=0)] + public ExportBriefBasicHouseRequestType[] RequestItem { + get { + return this.requestItemField; + } + set { + this.requestItemField = value; + this.RaisePropertyChanged("RequestItem"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportBriefBasicHouseRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportBriefBasicHouseRequest exportBriefBasicHouseRequest; + + public exportBriefBasicHouseRequest1() { + } + + public exportBriefBasicHouseRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefBasicHouseRequest exportBriefBasicHouseRequest) { + this.RequestHeader = RequestHeader; + this.exportBriefBasicHouseRequest = exportBriefBasicHouseRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportBriefBasicHouseResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportBriefBasicHouseResponse() { + } + + public exportBriefBasicHouseResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefLivingHouseRequest : BaseType { + + private ExportBriefLivingHouseRequestType[] requestItemField; + + private string versionField; + + /// + [System.Xml.Serialization.XmlElementAttribute("RequestItem", Order=0)] + public ExportBriefLivingHouseRequestType[] RequestItem { + get { + return this.requestItemField; + } + set { + this.requestItemField = value; + this.RaisePropertyChanged("RequestItem"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportBriefLivingHouseRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportBriefLivingHouseRequest exportBriefLivingHouseRequest; + + public exportBriefLivingHouseRequest1() { + } + + public exportBriefLivingHouseRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefLivingHouseRequest exportBriefLivingHouseRequest) { + this.RequestHeader = RequestHeader; + this.exportBriefLivingHouseRequest = exportBriefLivingHouseRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportBriefLivingHouseResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportBriefLivingHouseResponse() { + } + + public exportBriefLivingHouseResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportBriefApartmentHouseRequest : BaseType { + + private string houseGuidField; + + private string versionField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string HouseGuid { + get { + return this.houseGuidField; + } + set { + this.houseGuidField = value; + this.RaisePropertyChanged("HouseGuid"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportBriefApartmentHouseRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseRequest exportBriefApartmentHouseRequest; + + public exportBriefApartmentHouseRequest1() { + } + + public exportBriefApartmentHouseRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseRequest exportBriefApartmentHouseRequest) { + this.RequestHeader = RequestHeader; + this.exportBriefApartmentHouseRequest = exportBriefApartmentHouseRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportBriefApartmentHouseResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportBriefApartmentHouseResponse() { + } + + public exportBriefApartmentHouseResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importExternalVotingProtocolRequest : BaseType { + + private string transportGUIDField; + + private string messageGUIDField; + + private ExternalVotingProtocolType externalVotingProtocolField; + + private string versionField; + + public importExternalVotingProtocolRequest() { + this.versionField = "13.1.8.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string MessageGUID { + get { + return this.messageGUIDField; + } + set { + this.messageGUIDField = value; + this.RaisePropertyChanged("MessageGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public ExternalVotingProtocolType ExternalVotingProtocol { + get { + return this.externalVotingProtocolField; + } + set { + this.externalVotingProtocolField = value; + this.RaisePropertyChanged("ExternalVotingProtocol"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importExternalVotingProtocolRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importExternalVotingProtocolRequest importExternalVotingProtocolRequest; + + public importExternalVotingProtocolRequest1() { + } + + public importExternalVotingProtocolRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importExternalVotingProtocolRequest importExternalVotingProtocolRequest) { + this.RequestHeader = RequestHeader; + this.importExternalVotingProtocolRequest = importExternalVotingProtocolRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importExternalVotingProtocolResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importExternalVotingProtocolResponse() { + } + + public importExternalVotingProtocolResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importVotingMessageRequest : BaseType { + + private string transportGUIDField; + + private string messageGUIDField; + + private object itemField; + + private string versionField; + + public importVotingMessageRequest() { + this.versionField = "15.4.0.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string MessageGUID { + get { + return this.messageGUIDField; + } + set { + this.messageGUIDField = value; + this.RaisePropertyChanged("MessageGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Annulment", typeof(AnnulmentProtocolType), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("Refuse", typeof(bool), Order=2)] + [System.Xml.Serialization.XmlElementAttribute("VotingMessage", typeof(MessageType), Order=2)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importVotingMessageRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importVotingMessageRequest importVotingMessageRequest; + + public importVotingMessageRequest1() { + } + + public importVotingMessageRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importVotingMessageRequest importVotingMessageRequest) { + this.RequestHeader = RequestHeader; + this.importVotingMessageRequest = importVotingMessageRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importVotingMessageResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importVotingMessageResponse() { + } + + public importVotingMessageResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportVotingMessageRequest : BaseType { + + private string[] itemsField; + + private ItemsChoiceType38[] itemsElementNameField; + + private string versionField; + + public exportVotingMessageRequest() { + this.versionField = "15.4.0.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("FIASHouseGuid", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("MessageGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public string[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType38[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType38 { + + /// + FIASHouseGuid, + + /// + MessageGUID, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportVotingMessageRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportVotingMessageRequest exportVotingMessageRequest; + + public exportVotingMessageRequest1() { + } + + public exportVotingMessageRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportVotingMessageRequest exportVotingMessageRequest) { + this.RequestHeader = RequestHeader; + this.exportVotingMessageRequest = exportVotingMessageRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportVotingMessageResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportVotingMessageResponse() { + } + + public exportVotingMessageResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importOwnerRefusalRequest : BaseType { + + private importOwnerRefusalRequestOwnerRefusal[] ownerRefusalField; + + private string versionField; + + public importOwnerRefusalRequest() { + this.versionField = "13.1.8.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("OwnerRefusal", Order=0)] + public importOwnerRefusalRequestOwnerRefusal[] OwnerRefusal { + get { + return this.ownerRefusalField; + } + set { + this.ownerRefusalField = value; + this.RaisePropertyChanged("OwnerRefusal"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importOwnerRefusalRequestOwnerRefusal : object, System.ComponentModel.INotifyPropertyChanged { + + private string transportGUIDField; + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public string TransportGUID { + get { + return this.transportGUIDField; + } + set { + this.transportGUIDField = value; + this.RaisePropertyChanged("TransportGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Annulment", typeof(importOwnerRefusalRequestOwnerRefusalAnnulment), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("Edit", typeof(importOwnerRefusalRequestOwnerRefusalEdit), Order=1)] + [System.Xml.Serialization.XmlElementAttribute("Publish", typeof(importOwnerRefusalRequestOwnerRefusalPublish), Order=1)] + public object Item { + get { + return this.itemField; + } + set { + this.itemField = value; + this.RaisePropertyChanged("Item"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importOwnerRefusalRequestOwnerRefusalAnnulment : object, System.ComponentModel.INotifyPropertyChanged { + + private string ownerRefusalGUIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string OwnerRefusalGUID { + get { + return this.ownerRefusalGUIDField; + } + set { + this.ownerRefusalGUIDField = value; + this.RaisePropertyChanged("OwnerRefusalGUID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importOwnerRefusalRequestOwnerRefusalEdit : object, System.ComponentModel.INotifyPropertyChanged { + + private string ownerRefusalGUIDField; + + private OwnerRefusalType ownerRefusalField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string OwnerRefusalGUID { + get { + return this.ownerRefusalGUIDField; + } + set { + this.ownerRefusalGUIDField = value; + this.RaisePropertyChanged("OwnerRefusalGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public OwnerRefusalType OwnerRefusal { + get { + return this.ownerRefusalField; + } + set { + this.ownerRefusalField = value; + this.RaisePropertyChanged("OwnerRefusal"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class importOwnerRefusalRequestOwnerRefusalPublish : object, System.ComponentModel.INotifyPropertyChanged { + + private string messageGUIDField; + + private OwnerRefusalType ownerRefusalField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string MessageGUID { + get { + return this.messageGUIDField; + } + set { + this.messageGUIDField = value; + this.RaisePropertyChanged("MessageGUID"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public OwnerRefusalType OwnerRefusal { + get { + return this.ownerRefusalField; + } + set { + this.ownerRefusalField = value; + this.RaisePropertyChanged("OwnerRefusal"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importOwnerRefusalRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.importOwnerRefusalRequest importOwnerRefusalRequest; + + public importOwnerRefusalRequest1() { + } + + public importOwnerRefusalRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importOwnerRefusalRequest importOwnerRefusalRequest) { + this.RequestHeader = RequestHeader; + this.importOwnerRefusalRequest = importOwnerRefusalRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class importOwnerRefusalResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public importOwnerRefusalResponse() { + } + + public importOwnerRefusalResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/")] + public partial class exportOwnerRefusalRequest : BaseType { + + private string[] itemsField; + + private ItemsChoiceType39[] itemsElementNameField; + + private string versionField; + + public exportOwnerRefusalRequest() { + this.versionField = "13.1.8.1"; + } + + /// + [System.Xml.Serialization.XmlElementAttribute("MessageGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("OwnerRefusalGUID", typeof(string), Order=0)] + [System.Xml.Serialization.XmlChoiceIdentifierAttribute("ItemsElementName")] + public string[] Items { + get { + return this.itemsField; + } + set { + this.itemsField = value; + this.RaisePropertyChanged("Items"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("ItemsElementName", Order=1)] + [System.Xml.Serialization.XmlIgnoreAttribute()] + public ItemsChoiceType39[] ItemsElementName { + get { + return this.itemsElementNameField; + } + set { + this.itemsElementNameField = value; + this.RaisePropertyChanged("ItemsElementName"); + } + } + + /// + [System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public string version { + get { + return this.versionField; + } + set { + this.versionField = value; + this.RaisePropertyChanged("version"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9032.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", IncludeInSchema=false)] + public enum ItemsChoiceType39 { + + /// + MessageGUID, + + /// + OwnerRefusalGUID, + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportOwnerRefusalRequest1 { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/house-management/", Order=0)] + public Hcs.Service.Async.HouseManagement.exportOwnerRefusalRequest exportOwnerRefusalRequest; + + public exportOwnerRefusalRequest1() { + } + + public exportOwnerRefusalRequest1(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportOwnerRefusalRequest exportOwnerRefusalRequest) { + this.RequestHeader = RequestHeader; + this.exportOwnerRefusalRequest = exportOwnerRefusalRequest; + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + [System.ServiceModel.MessageContractAttribute(IsWrapped=false)] + public partial class exportOwnerRefusalResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/")] + public Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://dom.gosuslugi.ru/schema/integration/base/", Order=0)] + public Hcs.Service.Async.HouseManagement.AckRequest AckRequest; + + public exportOwnerRefusalResponse() { + } + + public exportOwnerRefusalResponse(Hcs.Service.Async.HouseManagement.ResultHeader ResultHeader, Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + this.ResultHeader = ResultHeader; + this.AckRequest = AckRequest; + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + public interface HouseManagementPortsTypeAsyncChannel : Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync, System.ServiceModel.IClientChannel { + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + public partial class HouseManagementPortsTypeAsyncClient : System.ServiceModel.ClientBase, Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync { + + public HouseManagementPortsTypeAsyncClient() { + } + + public HouseManagementPortsTypeAsyncClient(string endpointConfigurationName) : + base(endpointConfigurationName) { + } + + public HouseManagementPortsTypeAsyncClient(string endpointConfigurationName, string remoteAddress) : + base(endpointConfigurationName, remoteAddress) { + } + + public HouseManagementPortsTypeAsyncClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : + base(endpointConfigurationName, remoteAddress) { + } + + public HouseManagementPortsTypeAsyncClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + base(binding, remoteAddress) { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importMeteringDeviceDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importMeteringDeviceData(Hcs.Service.Async.HouseManagement.importMeteringDeviceDataRequest1 request) { + return base.Channel.importMeteringDeviceData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importMeteringDeviceData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importMeteringDeviceDataRequest importMeteringDeviceDataRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importMeteringDeviceDataRequest1 inValue = new Hcs.Service.Async.HouseManagement.importMeteringDeviceDataRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importMeteringDeviceDataRequest = importMeteringDeviceDataRequest; + Hcs.Service.Async.HouseManagement.importMeteringDeviceDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importMeteringDeviceData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importMeteringDeviceDataAsync(Hcs.Service.Async.HouseManagement.importMeteringDeviceDataRequest1 request) { + return base.Channel.importMeteringDeviceDataAsync(request); + } + + public System.Threading.Tasks.Task importMeteringDeviceDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importMeteringDeviceDataRequest importMeteringDeviceDataRequest) { + Hcs.Service.Async.HouseManagement.importMeteringDeviceDataRequest1 inValue = new Hcs.Service.Async.HouseManagement.importMeteringDeviceDataRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importMeteringDeviceDataRequest = importMeteringDeviceDataRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importMeteringDeviceDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportMeteringDeviceData(Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataRequest1 request) { + return base.Channel.exportMeteringDeviceData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportMeteringDeviceData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataRequest exportMeteringDeviceDataRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportMeteringDeviceDataRequest = exportMeteringDeviceDataRequest; + Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportMeteringDeviceData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportMeteringDeviceDataAsync(Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataRequest1 request) { + return base.Channel.exportMeteringDeviceDataAsync(request); + } + + public System.Threading.Tasks.Task exportMeteringDeviceDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataRequest exportMeteringDeviceDataRequest) { + Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportMeteringDeviceDataRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportMeteringDeviceDataRequest = exportMeteringDeviceDataRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportMeteringDeviceDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportODSPMeteringDeviceData(Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataRequest1 request) { + return base.Channel.exportODSPMeteringDeviceData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportODSPMeteringDeviceData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataRequest exportODSPMeteringDeviceDataRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportODSPMeteringDeviceDataRequest = exportODSPMeteringDeviceDataRequest; + Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportODSPMeteringDeviceData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportODSPMeteringDeviceDataAsync(Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataRequest1 request) { + return base.Channel.exportODSPMeteringDeviceDataAsync(request); + } + + public System.Threading.Tasks.Task exportODSPMeteringDeviceDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataRequest exportODSPMeteringDeviceDataRequest) { + Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportODSPMeteringDeviceDataRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportODSPMeteringDeviceDataRequest = exportODSPMeteringDeviceDataRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportODSPMeteringDeviceDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.getStateResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.getState(Hcs.Service.Async.HouseManagement.getStateRequest1 request) { + return base.Channel.getState(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader getState(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.getStateRequest getStateRequest, out Hcs.Service.Async.HouseManagement.getStateResult getStateResult) { + Hcs.Service.Async.HouseManagement.getStateRequest1 inValue = new Hcs.Service.Async.HouseManagement.getStateRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.getStateRequest = getStateRequest; + Hcs.Service.Async.HouseManagement.getStateResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).getState(inValue); + getStateResult = retVal.getStateResult; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.getStateAsync(Hcs.Service.Async.HouseManagement.getStateRequest1 request) { + return base.Channel.getStateAsync(request); + } + + public System.Threading.Tasks.Task getStateAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.getStateRequest getStateRequest) { + Hcs.Service.Async.HouseManagement.getStateRequest1 inValue = new Hcs.Service.Async.HouseManagement.getStateRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.getStateRequest = getStateRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).getStateAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importContractDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importContractData(Hcs.Service.Async.HouseManagement.importContractDataRequest request) { + return base.Channel.importContractData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importContractData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importContractRequest importContractRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importContractDataRequest inValue = new Hcs.Service.Async.HouseManagement.importContractDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importContractRequest = importContractRequest; + Hcs.Service.Async.HouseManagement.importContractDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importContractData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importContractDataAsync(Hcs.Service.Async.HouseManagement.importContractDataRequest request) { + return base.Channel.importContractDataAsync(request); + } + + public System.Threading.Tasks.Task importContractDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importContractRequest importContractRequest) { + Hcs.Service.Async.HouseManagement.importContractDataRequest inValue = new Hcs.Service.Async.HouseManagement.importContractDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importContractRequest = importContractRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importContractDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importCharterDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importCharterData(Hcs.Service.Async.HouseManagement.importCharterDataRequest request) { + return base.Channel.importCharterData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importCharterData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importCharterRequest importCharterRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importCharterDataRequest inValue = new Hcs.Service.Async.HouseManagement.importCharterDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importCharterRequest = importCharterRequest; + Hcs.Service.Async.HouseManagement.importCharterDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importCharterData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importCharterDataAsync(Hcs.Service.Async.HouseManagement.importCharterDataRequest request) { + return base.Channel.importCharterDataAsync(request); + } + + public System.Threading.Tasks.Task importCharterDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importCharterRequest importCharterRequest) { + Hcs.Service.Async.HouseManagement.importCharterDataRequest inValue = new Hcs.Service.Async.HouseManagement.importCharterDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importCharterRequest = importCharterRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importCharterDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportStatusCAChDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportStatusCAChData(Hcs.Service.Async.HouseManagement.exportStatusCAChDataRequest request) { + return base.Channel.exportStatusCAChData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportStatusCAChData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportStatusCAChRequest exportStatusCAChRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportStatusCAChDataRequest inValue = new Hcs.Service.Async.HouseManagement.exportStatusCAChDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.exportStatusCAChRequest = exportStatusCAChRequest; + Hcs.Service.Async.HouseManagement.exportStatusCAChDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportStatusCAChData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportStatusCAChDataAsync(Hcs.Service.Async.HouseManagement.exportStatusCAChDataRequest request) { + return base.Channel.exportStatusCAChDataAsync(request); + } + + public System.Threading.Tasks.Task exportStatusCAChDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportStatusCAChRequest exportStatusCAChRequest) { + Hcs.Service.Async.HouseManagement.exportStatusCAChDataRequest inValue = new Hcs.Service.Async.HouseManagement.exportStatusCAChDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.exportStatusCAChRequest = exportStatusCAChRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportStatusCAChDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportHouseDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportHouseData(Hcs.Service.Async.HouseManagement.exportHouseDataRequest request) { + return base.Channel.exportHouseData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportHouseData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportHouseRequest exportHouseRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportHouseDataRequest inValue = new Hcs.Service.Async.HouseManagement.exportHouseDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.exportHouseRequest = exportHouseRequest; + Hcs.Service.Async.HouseManagement.exportHouseDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportHouseData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportHouseDataAsync(Hcs.Service.Async.HouseManagement.exportHouseDataRequest request) { + return base.Channel.exportHouseDataAsync(request); + } + + public System.Threading.Tasks.Task exportHouseDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportHouseRequest exportHouseRequest) { + Hcs.Service.Async.HouseManagement.exportHouseDataRequest inValue = new Hcs.Service.Async.HouseManagement.exportHouseDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.exportHouseRequest = exportHouseRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportHouseDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importAccountDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importAccountData(Hcs.Service.Async.HouseManagement.importAccountDataRequest request) { + return base.Channel.importAccountData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importAccountData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importAccountRequest importAccountRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importAccountDataRequest inValue = new Hcs.Service.Async.HouseManagement.importAccountDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importAccountRequest = importAccountRequest; + Hcs.Service.Async.HouseManagement.importAccountDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importAccountData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importAccountDataAsync(Hcs.Service.Async.HouseManagement.importAccountDataRequest request) { + return base.Channel.importAccountDataAsync(request); + } + + public System.Threading.Tasks.Task importAccountDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importAccountRequest importAccountRequest) { + Hcs.Service.Async.HouseManagement.importAccountDataRequest inValue = new Hcs.Service.Async.HouseManagement.importAccountDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importAccountRequest = importAccountRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importAccountDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportAccountDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportAccountData(Hcs.Service.Async.HouseManagement.exportAccountDataRequest request) { + return base.Channel.exportAccountData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportAccountData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportAccountRequest exportAccountRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportAccountDataRequest inValue = new Hcs.Service.Async.HouseManagement.exportAccountDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.exportAccountRequest = exportAccountRequest; + Hcs.Service.Async.HouseManagement.exportAccountDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportAccountData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportAccountDataAsync(Hcs.Service.Async.HouseManagement.exportAccountDataRequest request) { + return base.Channel.exportAccountDataAsync(request); + } + + public System.Threading.Tasks.Task exportAccountDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportAccountRequest exportAccountRequest) { + Hcs.Service.Async.HouseManagement.exportAccountDataRequest inValue = new Hcs.Service.Async.HouseManagement.exportAccountDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.exportAccountRequest = exportAccountRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportAccountDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importPublicPropertyContractResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importPublicPropertyContract(Hcs.Service.Async.HouseManagement.importPublicPropertyContractRequest1 request) { + return base.Channel.importPublicPropertyContract(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importPublicPropertyContract(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importPublicPropertyContractRequest importPublicPropertyContractRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importPublicPropertyContractRequest1 inValue = new Hcs.Service.Async.HouseManagement.importPublicPropertyContractRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importPublicPropertyContractRequest = importPublicPropertyContractRequest; + Hcs.Service.Async.HouseManagement.importPublicPropertyContractResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importPublicPropertyContract(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importPublicPropertyContractAsync(Hcs.Service.Async.HouseManagement.importPublicPropertyContractRequest1 request) { + return base.Channel.importPublicPropertyContractAsync(request); + } + + public System.Threading.Tasks.Task importPublicPropertyContractAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importPublicPropertyContractRequest importPublicPropertyContractRequest) { + Hcs.Service.Async.HouseManagement.importPublicPropertyContractRequest1 inValue = new Hcs.Service.Async.HouseManagement.importPublicPropertyContractRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importPublicPropertyContractRequest = importPublicPropertyContractRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importPublicPropertyContractAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportStatusPublicPropertyContract(Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractRequest1 request) { + return base.Channel.exportStatusPublicPropertyContract(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportStatusPublicPropertyContract(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractRequest exportStatusPublicPropertyContractRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportStatusPublicPropertyContractRequest = exportStatusPublicPropertyContractRequest; + Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportStatusPublicPropertyContract(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportStatusPublicPropertyContractAsync(Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractRequest1 request) { + return base.Channel.exportStatusPublicPropertyContractAsync(request); + } + + public System.Threading.Tasks.Task exportStatusPublicPropertyContractAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractRequest exportStatusPublicPropertyContractRequest) { + Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportStatusPublicPropertyContractRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportStatusPublicPropertyContractRequest = exportStatusPublicPropertyContractRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportStatusPublicPropertyContractAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importNotificationDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importNotificationData(Hcs.Service.Async.HouseManagement.importNotificationDataRequest request) { + return base.Channel.importNotificationData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importNotificationData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importNotificationRequest importNotificationRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importNotificationDataRequest inValue = new Hcs.Service.Async.HouseManagement.importNotificationDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importNotificationRequest = importNotificationRequest; + Hcs.Service.Async.HouseManagement.importNotificationDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importNotificationData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importNotificationDataAsync(Hcs.Service.Async.HouseManagement.importNotificationDataRequest request) { + return base.Channel.importNotificationDataAsync(request); + } + + public System.Threading.Tasks.Task importNotificationDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importNotificationRequest importNotificationRequest) { + Hcs.Service.Async.HouseManagement.importNotificationDataRequest inValue = new Hcs.Service.Async.HouseManagement.importNotificationDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importNotificationRequest = importNotificationRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importNotificationDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importVotingProtocolResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importVotingProtocol(Hcs.Service.Async.HouseManagement.importVotingProtocolRequest1 request) { + return base.Channel.importVotingProtocol(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importVotingProtocol(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importVotingProtocolRequest importVotingProtocolRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importVotingProtocolRequest1 inValue = new Hcs.Service.Async.HouseManagement.importVotingProtocolRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importVotingProtocolRequest = importVotingProtocolRequest; + Hcs.Service.Async.HouseManagement.importVotingProtocolResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importVotingProtocol(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importVotingProtocolAsync(Hcs.Service.Async.HouseManagement.importVotingProtocolRequest1 request) { + return base.Channel.importVotingProtocolAsync(request); + } + + public System.Threading.Tasks.Task importVotingProtocolAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importVotingProtocolRequest importVotingProtocolRequest) { + Hcs.Service.Async.HouseManagement.importVotingProtocolRequest1 inValue = new Hcs.Service.Async.HouseManagement.importVotingProtocolRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importVotingProtocolRequest = importVotingProtocolRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importVotingProtocolAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportVotingProtocolResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportVotingProtocol(Hcs.Service.Async.HouseManagement.exportVotingProtocolRequest1 request) { + return base.Channel.exportVotingProtocol(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportVotingProtocol(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportVotingProtocolRequest exportVotingProtocolRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportVotingProtocolRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportVotingProtocolRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportVotingProtocolRequest = exportVotingProtocolRequest; + Hcs.Service.Async.HouseManagement.exportVotingProtocolResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportVotingProtocol(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportVotingProtocolAsync(Hcs.Service.Async.HouseManagement.exportVotingProtocolRequest1 request) { + return base.Channel.exportVotingProtocolAsync(request); + } + + public System.Threading.Tasks.Task exportVotingProtocolAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportVotingProtocolRequest exportVotingProtocolRequest) { + Hcs.Service.Async.HouseManagement.exportVotingProtocolRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportVotingProtocolRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportVotingProtocolRequest = exportVotingProtocolRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportVotingProtocolAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importOwnerDecisionResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importOwnerDecision(Hcs.Service.Async.HouseManagement.importOwnerDecisionRequest1 request) { + return base.Channel.importOwnerDecision(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importOwnerDecision(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importOwnerDecisionRequest importOwnerDecisionRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importOwnerDecisionRequest1 inValue = new Hcs.Service.Async.HouseManagement.importOwnerDecisionRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importOwnerDecisionRequest = importOwnerDecisionRequest; + Hcs.Service.Async.HouseManagement.importOwnerDecisionResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importOwnerDecision(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importOwnerDecisionAsync(Hcs.Service.Async.HouseManagement.importOwnerDecisionRequest1 request) { + return base.Channel.importOwnerDecisionAsync(request); + } + + public System.Threading.Tasks.Task importOwnerDecisionAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importOwnerDecisionRequest importOwnerDecisionRequest) { + Hcs.Service.Async.HouseManagement.importOwnerDecisionRequest1 inValue = new Hcs.Service.Async.HouseManagement.importOwnerDecisionRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importOwnerDecisionRequest = importOwnerDecisionRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importOwnerDecisionAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportOwnerDecisionResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportOwnerDecision(Hcs.Service.Async.HouseManagement.exportOwnerDecisionRequest1 request) { + return base.Channel.exportOwnerDecision(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportOwnerDecision(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportOwnerDecisionRequest exportOwnerDecisionRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportOwnerDecisionRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportOwnerDecisionRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportOwnerDecisionRequest = exportOwnerDecisionRequest; + Hcs.Service.Async.HouseManagement.exportOwnerDecisionResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportOwnerDecision(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportOwnerDecisionAsync(Hcs.Service.Async.HouseManagement.exportOwnerDecisionRequest1 request) { + return base.Channel.exportOwnerDecisionAsync(request); + } + + public System.Threading.Tasks.Task exportOwnerDecisionAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportOwnerDecisionRequest exportOwnerDecisionRequest) { + Hcs.Service.Async.HouseManagement.exportOwnerDecisionRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportOwnerDecisionRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportOwnerDecisionRequest = exportOwnerDecisionRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportOwnerDecisionAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportCAChDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportCAChData(Hcs.Service.Async.HouseManagement.exportCAChDataRequest request) { + return base.Channel.exportCAChData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportCAChData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportCAChAsyncRequest exportCAChAsyncRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportCAChDataRequest inValue = new Hcs.Service.Async.HouseManagement.exportCAChDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.exportCAChAsyncRequest = exportCAChAsyncRequest; + Hcs.Service.Async.HouseManagement.exportCAChDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportCAChData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportCAChDataAsync(Hcs.Service.Async.HouseManagement.exportCAChDataRequest request) { + return base.Channel.exportCAChDataAsync(request); + } + + public System.Threading.Tasks.Task exportCAChDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportCAChAsyncRequest exportCAChAsyncRequest) { + Hcs.Service.Async.HouseManagement.exportCAChDataRequest inValue = new Hcs.Service.Async.HouseManagement.exportCAChDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.exportCAChAsyncRequest = exportCAChAsyncRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportCAChDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importHouseUODataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importHouseUOData(Hcs.Service.Async.HouseManagement.importHouseUODataRequest request) { + return base.Channel.importHouseUOData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importHouseUOData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importHouseUORequest importHouseUORequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importHouseUODataRequest inValue = new Hcs.Service.Async.HouseManagement.importHouseUODataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importHouseUORequest = importHouseUORequest; + Hcs.Service.Async.HouseManagement.importHouseUODataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importHouseUOData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importHouseUODataAsync(Hcs.Service.Async.HouseManagement.importHouseUODataRequest request) { + return base.Channel.importHouseUODataAsync(request); + } + + public System.Threading.Tasks.Task importHouseUODataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importHouseUORequest importHouseUORequest) { + Hcs.Service.Async.HouseManagement.importHouseUODataRequest inValue = new Hcs.Service.Async.HouseManagement.importHouseUODataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importHouseUORequest = importHouseUORequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importHouseUODataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importHouseOMSDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importHouseOMSData(Hcs.Service.Async.HouseManagement.importHouseOMSDataRequest request) { + return base.Channel.importHouseOMSData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importHouseOMSData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importHouseOMSRequest importHouseOMSRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importHouseOMSDataRequest inValue = new Hcs.Service.Async.HouseManagement.importHouseOMSDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importHouseOMSRequest = importHouseOMSRequest; + Hcs.Service.Async.HouseManagement.importHouseOMSDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importHouseOMSData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importHouseOMSDataAsync(Hcs.Service.Async.HouseManagement.importHouseOMSDataRequest request) { + return base.Channel.importHouseOMSDataAsync(request); + } + + public System.Threading.Tasks.Task importHouseOMSDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importHouseOMSRequest importHouseOMSRequest) { + Hcs.Service.Async.HouseManagement.importHouseOMSDataRequest inValue = new Hcs.Service.Async.HouseManagement.importHouseOMSDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importHouseOMSRequest = importHouseOMSRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importHouseOMSDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importHouseESPDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importHouseESPData(Hcs.Service.Async.HouseManagement.importHouseESPDataRequest request) { + return base.Channel.importHouseESPData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importHouseESPData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importHouseESPRequest importHouseESPRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importHouseESPDataRequest inValue = new Hcs.Service.Async.HouseManagement.importHouseESPDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importHouseESPRequest = importHouseESPRequest; + Hcs.Service.Async.HouseManagement.importHouseESPDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importHouseESPData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importHouseESPDataAsync(Hcs.Service.Async.HouseManagement.importHouseESPDataRequest request) { + return base.Channel.importHouseESPDataAsync(request); + } + + public System.Threading.Tasks.Task importHouseESPDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importHouseESPRequest importHouseESPRequest) { + Hcs.Service.Async.HouseManagement.importHouseESPDataRequest inValue = new Hcs.Service.Async.HouseManagement.importHouseESPDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importHouseESPRequest = importHouseESPRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importHouseESPDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importSupplyResourceContractData(Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataRequest request) { + return base.Channel.importSupplyResourceContractData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importSupplyResourceContractData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importSupplyResourceContractRequest importSupplyResourceContractRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataRequest inValue = new Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importSupplyResourceContractRequest = importSupplyResourceContractRequest; + Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importSupplyResourceContractData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importSupplyResourceContractDataAsync(Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataRequest request) { + return base.Channel.importSupplyResourceContractDataAsync(request); + } + + public System.Threading.Tasks.Task importSupplyResourceContractDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importSupplyResourceContractRequest importSupplyResourceContractRequest) { + Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataRequest inValue = new Hcs.Service.Async.HouseManagement.importSupplyResourceContractDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importSupplyResourceContractRequest = importSupplyResourceContractRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importSupplyResourceContractDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportSupplyResourceContractData(Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataRequest request) { + return base.Channel.exportSupplyResourceContractData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportSupplyResourceContractData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportSupplyResourceContractRequest exportSupplyResourceContractRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataRequest inValue = new Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.exportSupplyResourceContractRequest = exportSupplyResourceContractRequest; + Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportSupplyResourceContractData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportSupplyResourceContractDataAsync(Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataRequest request) { + return base.Channel.exportSupplyResourceContractDataAsync(request); + } + + public System.Threading.Tasks.Task exportSupplyResourceContractDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportSupplyResourceContractRequest exportSupplyResourceContractRequest) { + Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataRequest inValue = new Hcs.Service.Async.HouseManagement.exportSupplyResourceContractDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.exportSupplyResourceContractRequest = exportSupplyResourceContractRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportSupplyResourceContractDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importAccountIndividualServicesResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importAccountIndividualServices(Hcs.Service.Async.HouseManagement.importAccountIndividualServicesRequest1 request) { + return base.Channel.importAccountIndividualServices(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importAccountIndividualServices(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importAccountIndividualServicesRequest importAccountIndividualServicesRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importAccountIndividualServicesRequest1 inValue = new Hcs.Service.Async.HouseManagement.importAccountIndividualServicesRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importAccountIndividualServicesRequest = importAccountIndividualServicesRequest; + Hcs.Service.Async.HouseManagement.importAccountIndividualServicesResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importAccountIndividualServices(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importAccountIndividualServicesAsync(Hcs.Service.Async.HouseManagement.importAccountIndividualServicesRequest1 request) { + return base.Channel.importAccountIndividualServicesAsync(request); + } + + public System.Threading.Tasks.Task importAccountIndividualServicesAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importAccountIndividualServicesRequest importAccountIndividualServicesRequest) { + Hcs.Service.Async.HouseManagement.importAccountIndividualServicesRequest1 inValue = new Hcs.Service.Async.HouseManagement.importAccountIndividualServicesRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importAccountIndividualServicesRequest = importAccountIndividualServicesRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importAccountIndividualServicesAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportAccountIndividualServices(Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesRequest1 request) { + return base.Channel.exportAccountIndividualServices(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportAccountIndividualServices(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesRequest exportAccountIndividualServicesRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportAccountIndividualServicesRequest = exportAccountIndividualServicesRequest; + Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportAccountIndividualServices(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportAccountIndividualServicesAsync(Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesRequest1 request) { + return base.Channel.exportAccountIndividualServicesAsync(request); + } + + public System.Threading.Tasks.Task exportAccountIndividualServicesAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesRequest exportAccountIndividualServicesRequest) { + Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportAccountIndividualServicesRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportAccountIndividualServicesRequest = exportAccountIndividualServicesRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportAccountIndividualServicesAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportSupplyResourceContractObjectAddressData(Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataRequest request) { + return base.Channel.exportSupplyResourceContractObjectAddressData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportSupplyResourceContractObjectAddressData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressRequest exportSupplyResourceContractObjectAddressRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataRequest inValue = new Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.exportSupplyResourceContractObjectAddressRequest = exportSupplyResourceContractObjectAddressRequest; + Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportSupplyResourceContractObjectAddressData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportSupplyResourceContractObjectAddressDataAsync(Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataRequest request) { + return base.Channel.exportSupplyResourceContractObjectAddressDataAsync(request); + } + + public System.Threading.Tasks.Task exportSupplyResourceContractObjectAddressDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressRequest exportSupplyResourceContractObjectAddressRequest) { + Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataRequest inValue = new Hcs.Service.Async.HouseManagement.exportSupplyResourceContractObjectAddressDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.exportSupplyResourceContractObjectAddressRequest = exportSupplyResourceContractObjectAddressRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportSupplyResourceContractObjectAddressDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importSupplyResourceContractObjectAddressData(Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataRequest request) { + return base.Channel.importSupplyResourceContractObjectAddressData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importSupplyResourceContractObjectAddressData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressRequest importSupplyResourceContractObjectAddressRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataRequest inValue = new Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importSupplyResourceContractObjectAddressRequest = importSupplyResourceContractObjectAddressRequest; + Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importSupplyResourceContractObjectAddressData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importSupplyResourceContractObjectAddressDataAsync(Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataRequest request) { + return base.Channel.importSupplyResourceContractObjectAddressDataAsync(request); + } + + public System.Threading.Tasks.Task importSupplyResourceContractObjectAddressDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressRequest importSupplyResourceContractObjectAddressRequest) { + Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataRequest inValue = new Hcs.Service.Async.HouseManagement.importSupplyResourceContractObjectAddressDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importSupplyResourceContractObjectAddressRequest = importSupplyResourceContractObjectAddressRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importSupplyResourceContractObjectAddressDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importSupplyResourceContractProjectData(Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataRequest request) { + return base.Channel.importSupplyResourceContractProjectData(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importSupplyResourceContractProjectData(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectRequest importSupplyResourceContractProjectRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataRequest inValue = new Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importSupplyResourceContractProjectRequest = importSupplyResourceContractProjectRequest; + Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importSupplyResourceContractProjectData(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importSupplyResourceContractProjectDataAsync(Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataRequest request) { + return base.Channel.importSupplyResourceContractProjectDataAsync(request); + } + + public System.Threading.Tasks.Task importSupplyResourceContractProjectDataAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectRequest importSupplyResourceContractProjectRequest) { + Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataRequest inValue = new Hcs.Service.Async.HouseManagement.importSupplyResourceContractProjectDataRequest(); + inValue.RequestHeader = RequestHeader; + inValue.importSupplyResourceContractProjectRequest = importSupplyResourceContractProjectRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importSupplyResourceContractProjectDataAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportRolloverStatusCACh(Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChRequest1 request) { + return base.Channel.exportRolloverStatusCACh(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportRolloverStatusCACh(Hcs.Service.Async.HouseManagement.ISRequestHeader ISRequestHeader, Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChRequest exportRolloverStatusCAChRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChRequest1(); + inValue.ISRequestHeader = ISRequestHeader; + inValue.exportRolloverStatusCAChRequest = exportRolloverStatusCAChRequest; + Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportRolloverStatusCACh(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportRolloverStatusCAChAsync(Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChRequest1 request) { + return base.Channel.exportRolloverStatusCAChAsync(request); + } + + public System.Threading.Tasks.Task exportRolloverStatusCAChAsync(Hcs.Service.Async.HouseManagement.ISRequestHeader ISRequestHeader, Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChRequest exportRolloverStatusCAChRequest) { + Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportRolloverStatusCAChRequest1(); + inValue.ISRequestHeader = ISRequestHeader; + inValue.exportRolloverStatusCAChRequest = exportRolloverStatusCAChRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportRolloverStatusCAChAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportBriefSupplyResourceContract(Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractRequest1 request) { + return base.Channel.exportBriefSupplyResourceContract(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportBriefSupplyResourceContract(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractRequest exportBriefSupplyResourceContractRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportBriefSupplyResourceContractRequest = exportBriefSupplyResourceContractRequest; + Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportBriefSupplyResourceContract(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportBriefSupplyResourceContractAsync(Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractRequest1 request) { + return base.Channel.exportBriefSupplyResourceContractAsync(request); + } + + public System.Threading.Tasks.Task exportBriefSupplyResourceContractAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractRequest exportBriefSupplyResourceContractRequest) { + Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportBriefSupplyResourceContractRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportBriefSupplyResourceContractRequest = exportBriefSupplyResourceContractRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportBriefSupplyResourceContractAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportBriefSocialHireContract(Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractRequest1 request) { + return base.Channel.exportBriefSocialHireContract(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportBriefSocialHireContract(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractRequest exportBriefSocialHireContractRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportBriefSocialHireContractRequest = exportBriefSocialHireContractRequest; + Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportBriefSocialHireContract(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportBriefSocialHireContractAsync(Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractRequest1 request) { + return base.Channel.exportBriefSocialHireContractAsync(request); + } + + public System.Threading.Tasks.Task exportBriefSocialHireContractAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractRequest exportBriefSocialHireContractRequest) { + Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportBriefSocialHireContractRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportBriefSocialHireContractRequest = exportBriefSocialHireContractRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportBriefSocialHireContractAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.demolishHouseResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.demolishHouse(Hcs.Service.Async.HouseManagement.demolishHouseRequest request) { + return base.Channel.demolishHouse(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader demolishHouse(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.DemolishHouseRequestType demolishHouseRequest1, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.demolishHouseRequest inValue = new Hcs.Service.Async.HouseManagement.demolishHouseRequest(); + inValue.RequestHeader = RequestHeader; + inValue.demolishHouseRequest1 = demolishHouseRequest1; + Hcs.Service.Async.HouseManagement.demolishHouseResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).demolishHouse(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.demolishHouseAsync(Hcs.Service.Async.HouseManagement.demolishHouseRequest request) { + return base.Channel.demolishHouseAsync(request); + } + + public System.Threading.Tasks.Task demolishHouseAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.DemolishHouseRequestType demolishHouseRequest1) { + Hcs.Service.Async.HouseManagement.demolishHouseRequest inValue = new Hcs.Service.Async.HouseManagement.demolishHouseRequest(); + inValue.RequestHeader = RequestHeader; + inValue.demolishHouseRequest1 = demolishHouseRequest1; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).demolishHouseAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportBriefBasicHouseResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportBriefBasicHouse(Hcs.Service.Async.HouseManagement.exportBriefBasicHouseRequest1 request) { + return base.Channel.exportBriefBasicHouse(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportBriefBasicHouse(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefBasicHouseRequest exportBriefBasicHouseRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportBriefBasicHouseRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportBriefBasicHouseRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportBriefBasicHouseRequest = exportBriefBasicHouseRequest; + Hcs.Service.Async.HouseManagement.exportBriefBasicHouseResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportBriefBasicHouse(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportBriefBasicHouseAsync(Hcs.Service.Async.HouseManagement.exportBriefBasicHouseRequest1 request) { + return base.Channel.exportBriefBasicHouseAsync(request); + } + + public System.Threading.Tasks.Task exportBriefBasicHouseAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefBasicHouseRequest exportBriefBasicHouseRequest) { + Hcs.Service.Async.HouseManagement.exportBriefBasicHouseRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportBriefBasicHouseRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportBriefBasicHouseRequest = exportBriefBasicHouseRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportBriefBasicHouseAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportBriefLivingHouseResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportBriefLivingHouse(Hcs.Service.Async.HouseManagement.exportBriefLivingHouseRequest1 request) { + return base.Channel.exportBriefLivingHouse(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportBriefLivingHouse(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefLivingHouseRequest exportBriefLivingHouseRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportBriefLivingHouseRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportBriefLivingHouseRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportBriefLivingHouseRequest = exportBriefLivingHouseRequest; + Hcs.Service.Async.HouseManagement.exportBriefLivingHouseResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportBriefLivingHouse(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportBriefLivingHouseAsync(Hcs.Service.Async.HouseManagement.exportBriefLivingHouseRequest1 request) { + return base.Channel.exportBriefLivingHouseAsync(request); + } + + public System.Threading.Tasks.Task exportBriefLivingHouseAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefLivingHouseRequest exportBriefLivingHouseRequest) { + Hcs.Service.Async.HouseManagement.exportBriefLivingHouseRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportBriefLivingHouseRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportBriefLivingHouseRequest = exportBriefLivingHouseRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportBriefLivingHouseAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportBriefApartmentHouse(Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseRequest1 request) { + return base.Channel.exportBriefApartmentHouse(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportBriefApartmentHouse(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseRequest exportBriefApartmentHouseRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportBriefApartmentHouseRequest = exportBriefApartmentHouseRequest; + Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportBriefApartmentHouse(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportBriefApartmentHouseAsync(Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseRequest1 request) { + return base.Channel.exportBriefApartmentHouseAsync(request); + } + + public System.Threading.Tasks.Task exportBriefApartmentHouseAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseRequest exportBriefApartmentHouseRequest) { + Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportBriefApartmentHouseRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportBriefApartmentHouseRequest = exportBriefApartmentHouseRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportBriefApartmentHouseAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importExternalVotingProtocolResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importExternalVotingProtocol(Hcs.Service.Async.HouseManagement.importExternalVotingProtocolRequest1 request) { + return base.Channel.importExternalVotingProtocol(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importExternalVotingProtocol(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importExternalVotingProtocolRequest importExternalVotingProtocolRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importExternalVotingProtocolRequest1 inValue = new Hcs.Service.Async.HouseManagement.importExternalVotingProtocolRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importExternalVotingProtocolRequest = importExternalVotingProtocolRequest; + Hcs.Service.Async.HouseManagement.importExternalVotingProtocolResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importExternalVotingProtocol(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importExternalVotingProtocolAsync(Hcs.Service.Async.HouseManagement.importExternalVotingProtocolRequest1 request) { + return base.Channel.importExternalVotingProtocolAsync(request); + } + + public System.Threading.Tasks.Task importExternalVotingProtocolAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importExternalVotingProtocolRequest importExternalVotingProtocolRequest) { + Hcs.Service.Async.HouseManagement.importExternalVotingProtocolRequest1 inValue = new Hcs.Service.Async.HouseManagement.importExternalVotingProtocolRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importExternalVotingProtocolRequest = importExternalVotingProtocolRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importExternalVotingProtocolAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importVotingMessageResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importVotingMessage(Hcs.Service.Async.HouseManagement.importVotingMessageRequest1 request) { + return base.Channel.importVotingMessage(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importVotingMessage(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importVotingMessageRequest importVotingMessageRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importVotingMessageRequest1 inValue = new Hcs.Service.Async.HouseManagement.importVotingMessageRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importVotingMessageRequest = importVotingMessageRequest; + Hcs.Service.Async.HouseManagement.importVotingMessageResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importVotingMessage(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importVotingMessageAsync(Hcs.Service.Async.HouseManagement.importVotingMessageRequest1 request) { + return base.Channel.importVotingMessageAsync(request); + } + + public System.Threading.Tasks.Task importVotingMessageAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importVotingMessageRequest importVotingMessageRequest) { + Hcs.Service.Async.HouseManagement.importVotingMessageRequest1 inValue = new Hcs.Service.Async.HouseManagement.importVotingMessageRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importVotingMessageRequest = importVotingMessageRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importVotingMessageAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportVotingMessageResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportVotingMessage(Hcs.Service.Async.HouseManagement.exportVotingMessageRequest1 request) { + return base.Channel.exportVotingMessage(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportVotingMessage(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportVotingMessageRequest exportVotingMessageRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportVotingMessageRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportVotingMessageRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportVotingMessageRequest = exportVotingMessageRequest; + Hcs.Service.Async.HouseManagement.exportVotingMessageResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportVotingMessage(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportVotingMessageAsync(Hcs.Service.Async.HouseManagement.exportVotingMessageRequest1 request) { + return base.Channel.exportVotingMessageAsync(request); + } + + public System.Threading.Tasks.Task exportVotingMessageAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportVotingMessageRequest exportVotingMessageRequest) { + Hcs.Service.Async.HouseManagement.exportVotingMessageRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportVotingMessageRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportVotingMessageRequest = exportVotingMessageRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportVotingMessageAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.importOwnerRefusalResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importOwnerRefusal(Hcs.Service.Async.HouseManagement.importOwnerRefusalRequest1 request) { + return base.Channel.importOwnerRefusal(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader importOwnerRefusal(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importOwnerRefusalRequest importOwnerRefusalRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.importOwnerRefusalRequest1 inValue = new Hcs.Service.Async.HouseManagement.importOwnerRefusalRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importOwnerRefusalRequest = importOwnerRefusalRequest; + Hcs.Service.Async.HouseManagement.importOwnerRefusalResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importOwnerRefusal(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.importOwnerRefusalAsync(Hcs.Service.Async.HouseManagement.importOwnerRefusalRequest1 request) { + return base.Channel.importOwnerRefusalAsync(request); + } + + public System.Threading.Tasks.Task importOwnerRefusalAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.importOwnerRefusalRequest importOwnerRefusalRequest) { + Hcs.Service.Async.HouseManagement.importOwnerRefusalRequest1 inValue = new Hcs.Service.Async.HouseManagement.importOwnerRefusalRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.importOwnerRefusalRequest = importOwnerRefusalRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).importOwnerRefusalAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Hcs.Service.Async.HouseManagement.exportOwnerRefusalResponse Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportOwnerRefusal(Hcs.Service.Async.HouseManagement.exportOwnerRefusalRequest1 request) { + return base.Channel.exportOwnerRefusal(request); + } + + public Hcs.Service.Async.HouseManagement.ResultHeader exportOwnerRefusal(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportOwnerRefusalRequest exportOwnerRefusalRequest, out Hcs.Service.Async.HouseManagement.AckRequest AckRequest) { + Hcs.Service.Async.HouseManagement.exportOwnerRefusalRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportOwnerRefusalRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportOwnerRefusalRequest = exportOwnerRefusalRequest; + Hcs.Service.Async.HouseManagement.exportOwnerRefusalResponse retVal = ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportOwnerRefusal(inValue); + AckRequest = retVal.AckRequest; + return retVal.ResultHeader; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync.exportOwnerRefusalAsync(Hcs.Service.Async.HouseManagement.exportOwnerRefusalRequest1 request) { + return base.Channel.exportOwnerRefusalAsync(request); + } + + public System.Threading.Tasks.Task exportOwnerRefusalAsync(Hcs.Service.Async.HouseManagement.RequestHeader RequestHeader, Hcs.Service.Async.HouseManagement.exportOwnerRefusalRequest exportOwnerRefusalRequest) { + Hcs.Service.Async.HouseManagement.exportOwnerRefusalRequest1 inValue = new Hcs.Service.Async.HouseManagement.exportOwnerRefusalRequest1(); + inValue.RequestHeader = RequestHeader; + inValue.exportOwnerRefusalRequest = exportOwnerRefusalRequest; + return ((Hcs.Service.Async.HouseManagement.HouseManagementPortsTypeAsync)(this)).exportOwnerRefusalAsync(inValue); + } + } +} diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/Reference.svcmap b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Reference.svcmap new file mode 100644 index 0000000..f57c654 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/Reference.svcmap @@ -0,0 +1,42 @@ + + + + false + true + true + + false + false + false + + + true + Auto + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/configuration.svcinfo b/Hcs.Client/Connected Services/Service.Async.HouseManagement/configuration.svcinfo new file mode 100644 index 0000000..95b2a29 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/configuration.svcinfo @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/configuration91.svcinfo b/Hcs.Client/Connected Services/Service.Async.HouseManagement/configuration91.svcinfo new file mode 100644 index 0000000..fa98713 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/configuration91.svcinfo @@ -0,0 +1,310 @@ + + + + + + + HouseManagementBindingAsync1 + + + + + + + + + + + + + + + + + + + + + StrongWildcard + + + + + + 65536 + + + + + + + + + System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + System.Text.UTF8Encoding + + + Buffered + + + + + + Text + + + System.ServiceModel.Configuration.BasicHttpSecurityElement + + + Transport + + + System.ServiceModel.Configuration.HttpTransportSecurityElement + + + None + + + None + + + System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement + + + Never + + + TransportSelected + + + (Коллекция) + + + + + + System.ServiceModel.Configuration.BasicHttpMessageSecurityElement + + + UserName + + + Default + + + + + + + HouseManagementBindingAsync2 + + + + + + + + + + + + + + + + + + + + + StrongWildcard + + + + + + 65536 + + + + + + + + + System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + System.Text.UTF8Encoding + + + Buffered + + + + + + Text + + + System.ServiceModel.Configuration.BasicHttpSecurityElement + + + None + + + System.ServiceModel.Configuration.HttpTransportSecurityElement + + + None + + + None + + + System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement + + + Never + + + TransportSelected + + + (Коллекция) + + + + + + System.ServiceModel.Configuration.BasicHttpMessageSecurityElement + + + UserName + + + Default + + + + + + + + + https://api.dom.gosuslugi.ru/ext-bus-home-management-service/services/HomeManagementAsync + + + + + + basicHttpBinding + + + HouseManagementBindingAsync1 + + + Service.Async.HouseManagement.HouseManagementPortsTypeAsync + + + System.ServiceModel.Configuration.AddressHeaderCollectionElement + + + <Header /> + + + System.ServiceModel.Configuration.IdentityElement + + + System.ServiceModel.Configuration.UserPrincipalNameElement + + + + + + System.ServiceModel.Configuration.ServicePrincipalNameElement + + + + + + System.ServiceModel.Configuration.DnsElement + + + + + + System.ServiceModel.Configuration.RsaElement + + + + + + System.ServiceModel.Configuration.CertificateElement + + + + + + System.ServiceModel.Configuration.CertificateReferenceElement + + + My + + + LocalMachine + + + FindBySubjectDistinguishedName + + + + + + False + + + HouseManagementPortAsync1 + + + + + + + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-account-base.xsd b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-account-base.xsd new file mode 100644 index 0000000..4dd1ae1 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-account-base.xsd @@ -0,0 +1,82 @@ + + + + + + + Идентификатор лицевого счета + + + + + Номер лицевого счета/Иной идентификатор плательщика + + + + + + + + + + + + Основание для обязательств по оплате + + + + + Номер договора + + + + + Дата заключения договора + + + + + Срок окончания действия договора + + + + + + + Единый лицевой счет + + + + + + + + + + Расчетный счет + + + + + + + + + + Счет + + + + + + + + Идентификатор жилищно-коммунальной услуги + + + + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-base.xsd b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-base.xsd new file mode 100644 index 0000000..f5688dd --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-base.xsd @@ -0,0 +1,862 @@ + + + + + + Строка не более 2000 символов. + + + + + + + + Строка не более 1500 символов. + + + + + + + + Строка не более 300 символов. + + + + + + + + Скалярный тип. Строка не более 255 символов. + + + + + + + + + Скалярный тип. Строка не более 100 символов. + + + + + + + + Скалярный тип. Строка не более 250 символов. + + + + + + + + Скалярный тип. Строка не более 500 символов. + + + + + + + + Строка не более 60 символов. + + + + + + + + Текстовое поле 2000 + + + + + + + + Непустая строка + + + + + + + + + Базовый тип бизнес-сообщения с подписью + + + + + + + + + Заголовок запроса + + + + + + + + + Идентификатор поставщика данных + + + + + Идентификатор зарегистрированной организации + + + + + Информация о физическом лице + + + + + + Идентификатор физического лица, зарегистрированного в ГИС ЖКХ + + + + + + СНИЛС + + + + + + + + + + Документ, удостоверяющий личность + + + + + + Вид документа, удостоверяющего личность (НСИ №95) + + + + + + Код записи справочника + + + + + + + + + + + Идентификатор записи в соответствующем справочнике ГИС ЖКХ + + + + + Значение + + + + + + + + + + + + + Серия документа + + + + + + + + + + + Номер документа + + + + + + + + + + + + + + + + + + + Используется подпись Оператора ИС + + + + + Сведения об иной ИС, с использованием которой была сформирована информация (589/944/,п.164). Только для запросов размещения информации. + + + + + + + + + + Заголовок запроса + + + + + + + + + + + + + + Заголовок ответа + + + + + + + + + + Базовый тип ответа на запрос создания, редактирования, удаления + + + + + + Транспортный идентификатор, определенный постащиком информации + + + + + Идентификатор объекта в ГИС ЖКХ + + + + + + + + Идентификатор объекта в ГИС ЖКХ + + + + + Дата модификации + + + + + Уникальный номер + + + + + + + + + + Базовый тип заголовка + + + + + Дата отправки пакета + + + + + Идентификатор сообщения + + + + + + + Вложение + + + + + + Идентификатор сохраненного вложения + + + + + + + + Вложение + + + + + Наименование вложения + + + + + + + + + + + Описание вложения + + + + + + + + + + + + Хэш-тег вложения по алгоритму ГОСТ в binhex. + +Элемент обязателен в запросах импорта + + + + + + + + + + + + Вложение + + + + + Наименование вложения + + + + + + + + + + + Описание вложения + + + + + + + + + + + + Хэш-тег вложения по алгоритму ГОСТ в binhex + + + + + + + + + + + + Базовый тип, описывающий вложение с открепленными (detached) подписями. В сервисах ГИС ЖКХ, использущих тип SignedAttachmentType, может быть наложено ограничение на максимальное количесво элементов в блоке Signature (см. контроль INT002039). + + + + + Вложение + + + + + Открепленная (detached) подпись + + + + + + + Элемент Fault (для параметра Fault в операции) + + + + Базовый тип для fault-ошибки + + + + + + + + + + + Описание ошибок контролей или бизнес-процесса. Элемент не заполянется. Оставлен для совместимости + + + + + + Базовый тип ошибки контроля или бизнес-процесса + + + + + Код ошибки + + + + + Описание ошибки + + + + + StackTrace в случае возникновения исключения + + + + + + + Версия элемента, начиная с которой поддерживается совместимость + + + + + Возврат квитанции приема сообщения + + + + + + Квитанция + + + + + + Идентификатор сообщения, присвоенный ГИС ЖКХ + + + + + Идентификатор сообщения, присвоенный поставщиком + + + + + + + + + + + Запрос статуса отправленного сообщения + + + + + + Идентификатор сообщения, присвоенный ГИС ЖКХ + + + + + + + + Запрос списка обработанных сообщений + + + + + + Массив идентификаторов сообщений, присвоенных ГИС ЖКХ + + + + + + + + Ответ на запрос списка обработанных сообщений + + + + + + + + Список идентификаторов сообщений, присвоенный ГИС ЖКХ + + + + + + + + + + Базовый тип ответа на запрос статуса + + + + + + + Статус обработки + + + + + Идентификатор сообщения, присвоенный ГИС ЖКХ + + + + + + + + + Результат выполнения C_UD + + + + + Идентификатор создаваемой/изменяемой сущности + + + + + Транспортный идентификатор + + + + + + Операция выполнена успешно + + + + Уникальный реестровый номер + + + + + Дата модификации + + + + + + Описание ошибки + + + + + + + + + + + + + Статус обработки сообщения в асинхронном обмене (1- получено; 2 - в обработке; 3- обработано) + + + + + + + + + + Транспортный идентификатор + + + + + GUID-тип. + + + + + + + + Дата модификации объекта + + + + + Тип, описывающий год + + + + + + + + Тип, описывающий месяц + + + + + + + + + Месяц + + + + + Год + + + + + + + + + + + Определенный месяц определенного года + + + + + + + + + Временной период (обе даты обязательны) + + + + + Начало периода + + + + + Конец периода + + + + + + + Открытый временной период (даты необязательны) + + + + + Начало периода + + + + + Конец периода + + + + + + + Тип объема + + + + + + + + + + Ссылка на субъект РФ (ФИАС) + + + + + Код региона (ФИАС) + + + + + + + + + + Полное наименование + + + + + + + + + + + + Ссылка на ОКТМО + + + + + Код по ОКТМО + + + + + + + + + + + Полное наименование + + + + + + + + + + + + + + + + + Код ОКЕИ + + + + + Идентификатор зарегистрированной организации + + + + + Базовый тип документа ОЧ + + + + + Наименование документа + + + + + + + + + + + Номер документа + + + + + + + + + + + Дата принятия документа органом власти + + + + + Вложение + + + + + + + Сведения об иной ИС, с использованием которой была сформирована информация (589/944/,п.164) + + + + + + Наименование ИС + + + + + Наименование Оператора ИС + + + + + + + + Код по ОКТМО + + + + + + + + + Код по ОКТМО + + + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-bills-base.xsd b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-bills-base.xsd new file mode 100644 index 0000000..7144802 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-bills-base.xsd @@ -0,0 +1,93 @@ + + + + + + Сумма + + + + + + + + + + Неотрицательная сумма + + + + + + + + + + Сумма + + + + + + + + + Неотрицательная маленькая сумма + + + + + + + + + + + Маленькая сумма + + + + + + + + + + Неотрицательная сумма + + + + + + + + + + + Сумма в копейках + + + + + + Номер платежного документа, по которому внесена плата, присвоенный такому документу исполнителем в целях осуществления расчетов по внесению платы + + + + + + + + + + + + Идентификатор платежного документа + + + + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-house-management-service-async.wsdl b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-house-management-service-async.wsdl new file mode 100644 index 0000000..902e562 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-house-management-service-async.wsdl @@ -0,0 +1,1075 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Передать данные ПУ + + + + + + Получить перечень ПУ + + + + + + Получить перечень ПУ по ЛС для ОДСП + + + + + + + + + + + Cоздание/редактирование, удаление, пролонгация, расторжение ДУ + + + + + + Cоздание/редактирование, удаление, пролонгация, расторжение устава + + + + + + Экспорт статусов договоров управления, уставов, доп. соглашений + + + + + + ВИ_ИРАО_ДОМ_ЭКСП. Экспорт данных дома. + + + + + + ВИ_ИЛС_СЗЛС. передать данные лицевых счетов + + + + + + ВИ_ИЛС_РЛС. получить перечень лицевых счетов + + + + + + Импорт ДОИ (Договор на пользование общим имуществом) + + + + + + Экспорт списка ДОИ + + + + + + ВИ_ИО_И_1. Импорт новостей для информирования граждан + + + + + + Импорт протокола ОСС + + + + + + Экспорт протокола ОСС + + + + + + Импорт решения собственника по вопросам голосования + + + + + + Экспорт решений собственников по вопросам голосования + + + + + + Экспорт договоров управления, уставов, доп. соглашений + + + + + + Импорт данных дома для полномочия УО + + + + + + Импорт данных дома для полномочия ОМС + + + + + + Импорт данных дома для полномочия ЕСП + + + + + + Импорт договора ресурсоснабжения с РСО + + + + + + Экспорт договоров ресурсоснабжения + + + + + + Импорт индивидуальных услуг лицевого счета + + + + + + Экспорт индивидуальных услуг лицевого счета + + + + + + Экспорт объектов жилищного фонда из договоров ресурсоснабжения + + + + + + Импорт информации об объектах жилищного фонда в договор ресурсоснабжения + + + + + + Импорт проекта договора ресурсоснабжения + + + + + + Экспорт статусов автопролонгации договоров управления, уставов + + + + + + Экспорт сокращенного состава информации о договоре ресурсоснабжения + + + + + + Экспорт краткой информации о договоре найма + + + + + + Операция сноса дома + + + + + + Экспорт краткой базовой информации о доме + + + + + + Экспорт краткой информации о жилом доме + + + + + + Экспорт краткой информации о многоквартирном доме + + + + + + Импорт итогов голосования, проведенного с использованием системы, отличной от ГИС ЖКХ + + + + + + Импорт сообщения о проведении ОСС + + + + + + Экспорт сообщения о проведении ОСС + + + + + + Импорт письменных отказов собственников + + + + + + Экспорт письменных отказов собственников + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Сервис управления объектами РАО + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-house-management-types.xsd b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-house-management-types.xsd new file mode 100644 index 0000000..7e3fba0 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-house-management-types.xsd @@ -0,0 +1,19740 @@ + + + + + + + + + + + + + + ???????????? ???????????? ????????. ?? ?????????? ???? ???????????? ?????????????????????? ???????????? ?????????????????? ???????????? ???????????????????????????????? ????????. ImportResult ???????????????? ?????????????????? ?????????????????? ???????????? ???????? (?? GUID ???????????????????? FIASHouseGuid ?????????????? ????????????, UniqueNumber ???????????????? ???????????????????? ?????????? ????????), ?????????????????? (UniqueNumber ???????????????? ???????????????????? ?????????? ??????????????????), ???????????? (UniqueNumber ???????????????? ???????????????????? ?????????? ??????????????). ???????????????? ???????????? 11.0.10.1, 13.2.3.2 + + + + + + + + + ?????????????????????????????? ?????? + + + + + + + ???????????????????? ???????????????????????????????? ???????? + + + + + + + + + + + + + + ?????????????????? ???????????? ???????????????????????????????? ???????? + + + + + + + + + + + + + + + ?????????????? ?????????????????? + + + + ???????????????????? ???????????????? ?????????????????? + + + + + + + + + + + + + + ?????????????????? ???????????? ???????????????? ?????????????????? + + + + + + + + + ?????????????????????????? ?????????????????? + + + + + + + + + + + ???????????????? ?? ?????????? ?????????????????? + + + + + ???????????????????? ???????????? ???????????????? + + + + + + + + + + + + + + ?????????????????? ???????????????? + + + + + + + + + ?????????????????????????? ???????????????? + + + + + + + + + + + ?????????? ?????????????????? + + + + + + + ???????????????????? ???????????? ?????????????????? + + + + + + + + + + + + + + ?????????????????? ???????????? ???????????? ?????????????????? + + + + + + + + + ?????????????????????????? ?????????????????? + + + + + + + + + + + ?????????????? ?? ???????????????? ?????????????????????????? ?????????????????? + + + + ???????????????????? ?????????????? + + + + + + + + + + + + + + ?????????????????? ?????????????? + + + + + + + + + ?????????????????????????? ?????????????? + + + + + + + + + + + + + + + ???????????????????? ???????????? ?????????? + + + + + + + + + + + + + + ?????????????????? ?????????? + + + + + + + + + ?????????????????????????? ?????????? + + + + + + + + + + + + + + + ?????????? ?????? + + + + + + + ???????????????????? ???????????? ???????? + + + + + + + + + + + + + + ?????????????????? ???????????? ???????????? ???????? + + + + + + + + + + + + + + + + ?????????????? (?????? ?????????????? ????) + + + + ???????????????????? ?????????????? + + + + + + + + + + + + + + ???????????????????? ?????????????? + + + + + + + + + ?????????????????????????? ?????????????? + + + + + + + + + + + ?????????? (?????? ???? ?????????????????????????? ??????????????????) + + + + + + + ???????????????? ?????????? + + + + + + + + + + + + + + ???????????????????? ?????????? + + + + + + + + + ?????????????????????????? ?????????? ???????????? ???????? + + + + + + + + + + + ?????????????? ?? ?????????? + + + + ???????????????????? ?????????????? + + + + + + + + + + + + + + ???????????????????? ?????????????? + + + + + + + + + ?????????????????????????? ?????????????? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ???????????? ???????????? ????????. ?? ?????????? ???? ???????????? ?????????????????????? ???????????? ?????????????????? ???????????? ???????????????????????????????? ????????. ImportResult ???????????????? ?????????????????? ?????????????????? ???????????? ???????? (?? GUID ???????????????????? FIASHouseGuid ?????????????? ????????????, UniqueNumber ???????????????? ???????????????????? ?????????? ????????), ?????????????????? (UniqueNumber ???????????????? ???????????????????? ?????????? ??????????????????), ???????????? (UniqueNumber ???????????????? ???????????????????? ?????????? ??????????????). ???????????????? ???????????? 11.5.0.2, 13.2.3.2, 15.6.0.1 + + + + + + + + + ?????????????????????????????? ?????? + + + + + + + ???????????????????? ???????????????????????????????? ???????? + + + + + + + + C?????????? ???????????????????? ?????????? (?????? 25). ?????????????????? ???????????????????? ???????????????? ???????????? ?????? ???????????????????? ???????????????????? ???? ???????????????????? ?????? (?????????????????????? ???????????? ?? ???????? ??/?????? ???? ???????????????? ?????????????? ????????????????????/??????????): +- ???? ????????????; +- ???????????????????????????????? ????????????????????; +- ????????????, ???? ???? ????????????????????. +?? ???????? ?????????????? ???????????????? ???????????????? ????????????????????????. + + + + + + ???????? ???????????? ?????????????? ????????????????????. ?????????????????????? ???????????? ?????? ???????????? 15.6.0.1 ?? ???????? + + + + + + + + + + ?????????????????? ???????????? ???????????????????????????????? ???????? + + + + + + + + + C?????????? ???????????????????? ?????????? (?????? 25). ?????????????????? ?????????????????? ???????????????? ???????????? ?????? ???????????????????? ???????????????????? ???? ???????????????????? ?????? (?????????????????????? ???????????? ?? ???????? ??/?????? ???? ???????????????? ?????????????? ????????????????????/??????????): +- ???? ????????????; +- ???????????????????????????????? ????????????????????; +- ????????????, ???? ???? ????????????????????. +?? ???????? ?????????????? ???????????????? ???????????????? ????????????????????????. + + + + + ???????? ???????????? ?????????????? ????????????????????. ?????????????????????? ???????????? ?????? ???????????? 15.6.0.1 ?? ???????? + + + + + + + + + + + ?????????????? ?????????????????? + + + + ???????????????????? ???????????????? ?????????????????? + + + + + + + + + + + + + + ?????????????????? ???????????? ???????????????? ?????????????????? + + + + + + + + + ?????????????????????????? ?????????????????? + + + + + + + + + + + ?????????????? + + + + + ???????????????????? ???????????? ???????????????? + + + + + + + + + + + + + + ?????????????????? ???????????????? + + + + + + + + + ?????????????????????????? ???????????????? + + + + + + + + + + + ?????????? ?????????????????? + + + + + + + ???????????????????? ???????????? ?????????????????? + + + + + + + + + + + + + + ?????????????????? ???????????? ???????????? ?????????????????? + + + + + + + + + ?????????????????????????? ?????????????????? + + + + + + + + + + + ?????????????? ?? ???????????????? ?????????????????????????? ?????????????????? + + + + ???????????????????? ?????????????? + + + + + + + + + + + + + + ?????????????????? ?????????????? + + + + + + + + + ?????????????????????????? ?????????????? + + + + + + + + + + + + + + + ???????????????????? ???????????? ?????????? + + + + + + + + + + + + + + ?????????????????? ?????????? + + + + + + + + + ?????????????????????????? ?????????? + + + + + + + + + + + + + + + ?????????? ?????? + + + + + + + ???????????????????? ???????????? ???????? + + + + + + + + + ???? ?????????????????? ?????? ???? + + + + + + + + + + ?????????????????? ???????????? ???????????? ???????? + + + + + + + + + ???? ?????????????????? ?????? ???? + + + + + + + + + + + + ?????????????? (?????? ?????????????? ????) + + + + ???????????????????? ?????????????? + + + + + + + + + + + + + + ???????????????????? ?????????????? + + + + + + + + + ?????????????????????????? ?????????????? + + + + + + + + + + + ?????????? (?????? ???? ?????????????????????????? ??????????????????) + + + + + + + ???????????????? ?????????? + + + + + + + + + + + + + + ???????????????????? ?????????? + + + + + + + + + ?????????????????????????? ?????????? ???????????? ???????? + + + + + + + + + + + ?????????????? ?? ?????????? + + + + ???????????????????? ?????????????? + + + + + + + + + + + + + + ???????????????????? ?????????????? + + + + + + + + + ?????????????????????????? ?????????????? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ???????????? ???????????? ????????. ?? ?????????? ???? ???????????? ?????????????????????? ???????????? ?????????????????? ???????????? ???????????????????????????????? ????????. ImportResult ???????????????? ?????????????????? ?????????????????? ???????????? ???????? (?? GUID ???????????????????? FIASHouseGuid ?????????????? ????????????, UniqueNumber ???????????????? ???????????????????? ?????????? ????????), ?????????????????? (UniqueNumber ???????????????? ???????????????????? ?????????? ??????????????????), ???????????? (UniqueNumber ???????????????? ???????????????????? ?????????? ??????????????). ???????????????? ???????????? 11.6.0.2, 13.2.3.2, 15.6.0.1 + + + + + + + + ?????????????????????????????? ?????? + + + + + + + ???????????????????? ???????????????????????????????? ???????? + + + + + + + + + ?????????????????? ?????????????????? ???????????????? ???????????? ?????? ???????????????????? ???????????????????? ???? ???????????????????? ?????? (?????????????????????? ???????????? ?? ???????? ??/?????? ???? ???????????????? ?????????????? ????????????????????/??????????): +- ???? ???????????? +- ???????????????????????????????? ???????????????????? +- ????????????, ???? ???? ????????????????????. + + + + + + ???????? ???????????? ?????????????? ???????????????????? + + + + + + + + + + + ?????????????????? ???????????? ???????????????????????????????? ???????? + + + + + + + + + ?????????????????? ?????????????????? ???????????????? ???????????? ?????? ???????????????????? ???????????????????? ???? ???????????????????? ?????? (?????????????????????? ???????????? ?? ???????? ??/?????? ???? ???????????????? ?????????????? ????????????????????/??????????): +- ???? ???????????? +- ???????????????????????????????? ???????????????????? +- ????????????, ???? ???? ????????????????????. + + + + + + ???????? ???????????? ?????????????? ???????????????????? + + + + + + + + + + + + ?????????????? ?????????????????? + + + + ???????????????????? ???????????????? ?????????????????? + + + + + + + + + + + + + + ?????????????????? ???????????? ???????????????? ?????????????????? + + + + + + + + + ?????????????????????????? ?????????????????? + + + + + + + + + + + ???????????????? ?? ?????????? ?????????????????? + + + + + ???????????????????? ???????????? ???????????????? + + + + + + + + + + + + + + ?????????????????? ???????????????? + + + + + + + + + ?????????????????????????? ???????????????? + + + + + + + + + + + ?????????? ?????????????????? + + + + + + + ???????????????????? ???????????? ?????????????????? + + + + + + + + + + + + + + ?????????????????? ???????????? ???????????? ?????????????????? + + + + + + + + + ?????????????????????????? ?????????????????? + + + + + + + + + + + ?????????????? ?? ???????????????? ?????????????????????????? ?????????????????? + + + + ???????????????????? ?????????????? + + + + + + + + + + + + + + ?????????????????? ?????????????? + + + + + + + + + ?????????????????????????? ?????????????? + + + + + + + + + + + + + + + ???????????????????? ???????????? ?????????? + + + + + + + + + + + + + + ?????????????????? ?????????? + + + + + + + + + ?????????????????????????? ?????????? + + + + + + + + + + + + + + + + + + + + + + + + + + ???????????? ???? ?????????????? ???????????????????? ?? ????????. + +???????????????? ????????????: 11.1.0.1, 12.2.0.1, 13.2.3.2, 15.6.0.1 + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + + + + + + + ?????????? ???? ?????????????? ???????????????????? ?? ????????. + + + + + ???????????????????? ?????????? ???????? + + + + + ???????? ?????????????????????? ???????????? ???????? + + + + + ?????????????????????????? ???????? ?? ?????????????? ???????????????? ?????????????????? ??????????. ?????????????? ?????????????????????? ?????? ???????????? 15.6.0.1 + + + + + + ?????????????????????????????? ?????? + + + + + + + + ?????????????? + + + + + + + + ???????? ?????????????????????? ???????????? ???????????????? + + + + + ?????????????????????????? ???????????????? + + + + + + + + + + ?????????? ?????????????????? + + + + + + + + ???????????????????? ?????????? ?????????????????? + + + + + ???????? ?????????????????????? ???????????? ?????????????????? + + + + + ?????????????? ?? ???????????????? ?????????????????????????? ?????????????????? + + + + + + + + ???????????????????? ?????????? ?????????????? + + + + + ???????? ?????????????????????? ???????????? ?????????????? + + + + + ?????????????????????????? ?????????????? + + + + + + + + + + ?????????????????????????? ?????????????????? + + + + + + + + + + ?????????? + + + + + + + + ???????? ?????????????????????? ???????????? ?????????? + + + + + ?????????????????????????? ?????????? + + + + + + + + + + ?????????????? ?????????????????? + + + + + + + + ???????????????????? ?????????? ?????????????????? + + + + + ???????? ?????????????????????? ???????????? ?????????????????? + + + + + ?????????????????????????? ?????????????????? + + + + + + + + + + C?????????? ???????????????????? ?????????? (?????? 25). + + + + + + + + + + ?????????? ?????? + + + + + + + + + ?????????????? (?????? ???????????????? ???????????? ????????) + + + + + + + + ???????????????????? ?????????? ?????????????? + + + + + ???????? ?????????????????????? ???????????? ?????????????? + + + + + ?????????????????????????? ?????????????? + + + + + + + + + + ?????????? (?????? ???????????? ???????? ?????????????????????????? ??????????????????) + + + + + + + + ???????????????????? ?????????? ?????????? + + + + + ???????? ?????????????????????? ???????????? ?????????? + + + + + ?????????????????????????? ?????????? ???????????? ???????? + + + + + ?????????????? ?? ?????????? + + + + + + + + ???????????????????? ?????????? ?????????????? + + + + + ???????? ?????????????????????? ???????????? ?????????????? + + + + + ?????????????????????????? ?????????????? + + + + + + + + + + + + + + + + ???????????????????? ???????????? ???????????????? ?? ???????? + + + + + + + + + + + + + ???????? ????????. ?? ?????????? ???? ???????????? ?????????????????????? ???????????? ?????????????????? ???????????? ????????. ImportResult ???????????????? ?????????????????? ?????????????????? ???????????? ???????? (?? GUID ???????????????????? FIASHouseGuid ?????????????? ????????????, UniqueNumber ???????????????? ???????????????????? ?????????? ????????). + + + + + + + + + ??????, ?????????????????????? ???????????? ???? ???????? ???????? + + + + + + + + + + + + + ???????????????????? ?? ?????????? ???????? + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ???????? ?????????? + + + + + ?????????????????? ??????????. ?????????????????????? ?????? ??????????, ???? ???????????????????? ???????????????????? + + + + + + + + ?????????????? ?????????? + + + + + ???????????????? + + + + + ???????????????? + + + + + + + ???????????? ???? ?????????????? ?????????????? ?????????????? ???????????????????? ?? ????????. ???????????????? ???????????? 12.2.1.2, 13.2.3.2 + + + + + + + + ?????????????? ???????????????????? ??????????????. ???????? ?????????????? - ???????? ???????????????? ???????????? ???????? + + + + + + + + + + + + + + + ???????????? ???? ?????????????? ?????????????? ???????????????????? ?? ?????????? ????????. ???????????????? ???????????? 12.2.1.2, 13.2.3.2 + + + + + + + + ?????????????? ???????????????????? ??????????????. ???????? ?????????????? - ???????? ???????????????? ???????????? ???????? + + + + + + + + + + + + + + + ???????????? ???? ?????????????? ?????????????? ???????????????????? ?? ?????????????????????????????? ????????. ???????????????? ???????????? 12.2.1.2, 13.2.3.2 + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? ?????? ?? ?????? ?????? + + + + + + + + + + + ?????? ????????????, ?????????????????????? ???????????? ???? ?????????????? ?????????????? ?????????????? ???????????????????? ???? ?????????? ???????? + + + + + + ???????????????? ???????????? + + + + + + + ???????????????? ???????????? ???????? + + + + + ???????????????????? ?????????? ???????? + + + + + ???????????????????? ?????????? ?????????????????? + + + + + ???????????????????? ?????????? ?????????????? + + + + + ???????????????????? ?????????? ?????????? + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + + + ?????????????????? ?????????????? ?????????????? ?????????????? ???????????????????? ???? ?????????? ????????. + + + + + ???????????????????????? ?????????????????????????? + + + + + + ?????????????? ???????????????????? ?? ???????? + + + + + ???????????????? ???????????? + + + + + + + + ?????? ????????????, ?????????????????????? ???????????? ???? ?????????????? ?????????????? ???????????????????? ???? ?????????? ?????????? ???????? + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? ?????? ?? ?????? ?????? + + + + + + + ?????????????????? ?????????????? ?????????????? ???????????????????? ?? ?????????? ????????. + + + + + ???????????????????????? ?????????????????????????? + + + + + + ?????????????? ???????????????????? ?? ???????? + + + + + ???????????????? ???????????? + + + + + + + + ???????????? ?????????????? ???????????????????? ?? ???????? + + + + + ???????????????????? ?? ???????????????????????? ???????? + + + + + ?????????????? ???????????????????????????? ???????? ?? ?????????????? ???????????????? ???????????????? ?????? ?????? + + + + + + + ?????????????? ???????????????????? ?? ?????????????? ?????????????????????????????? ???????? ?? ?????????????? ???????????????? ???????????????? ?????? ?????? + + + + + ???????????????????? ?????????? ???????? + + + + + ?????????????????? (?????? 24) + + + + + + ???????????? ???????????????????? ?????????? (?????? 338) + + + + + ?????????? (???????????????????????? ?????? ???????? ????????????????????, ???? ?????????????????????? ???????????? ?? ???????????????????? "????????????????"). ???????????????? ???? ???????? ?????? ??????????????. + + + + + ?????????????????????????? ?????????????????????? ?????????????????????? + + + + + ???????? ?????????????????????????? ?????????????? ?? ?????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????? ?????????? + + + + + ?????????????????? ?????????? (????????????????) + + + + + ?????????????? ?????????????????????? ?????????????????? - ?????? ???????? ???????????????? ?????????????????? ?????????????????????????? ?????? ???????????????????? ???????????????????? ?? ?????????? + + + + + ???????????? ?????????????????? + + + + + + + ?????????????? ???????????????????? ?? ???????????????????????? ???????? + + + + + ???????????????????? ?????????????????????????? ???????????? ????????, ?????????????????????? ?????? ?????? + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????????????????????????????? ???????????????? ???????????? + + + + + + + + + + + Guid ???????????? ?????????????????????????? ?????????????? (??????????) + + + + + ?????????? ???????? + + + + + + + + + + + ?????????? ?????????????? + + + + + + + + + + + ?????????? ???????????????? + + + + + + + + + + + ?????????????? ????????????????: +0 ??? ???? ????????????????????; +1 ??? ????????????????; +2 ??? ??????; +3 ??? ????????????????????????; +4 - ??????????????; +5 - ????????????; +6 - ??????????; +7 - ????????????; +8 - ??????????????????; +9 - ????????????; +10 - ???????????? ???????????????????????????? ??????????????????????????. + + + + + + + + + + + + + + + + + + + + + + ?????????????? ????????????????: +0 ??? ???? ????????????????????; +1 ??? ????????????????; +2 ??? ????????????????????; +3 ??? ??????????. + + + + + + + + + + + + + + + ?????????????? ???????????????????? ?? ?????????? ???????? + + + + + ???????????????????? ?????????????????????????? ???????????? ????????, ?????????????????????? ?????? ?????? + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ???????????????????? ?????????? ???????? + + + + + ???????? ?????????????????????? ???????????? ???????? + + + + + ?????????? ?????? ?????????????????????????? ?????????????????? + + + + + ?????????????????? ?????????? ?????????? ?? ???????????????????? ?????????????? + + + + + + ?????????? (?????? ???????????? ???????? ?????????????????????????? ??????????????????) + + + + + ?????????????? (?????? ???????????????? ???????????? ????????) + + + + + + ???????? ?????????????????????????? ?????????????? ?? ?????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????? ?????????? + + + + + ?????????????????? ?????????? (????????????????) + + + + + ?????????????? ?????????????????????? ?????????????????? - ?????? ???????? ???????????????? ?????????????????? ?????????????????????????? ?????? ???????????????????? ???????????????????? ?? ?????????? + + + + + ???????????? ?????????????????? + + + + + + + ?????????????? ???????????????????? ?? ?????????????????????????????? ???????? + + + + + ???????????????????? ?????????????????????????? ???????????? ????????, ?????????????????????? ?????? ?????? + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ???????????????????? ?????????? ???????? + + + + + ???????? ?????????????????????? ???????????? ???????? + + + + + ?????????????? + + + + + ?????????? ?????????????????? + + + + + ?????????????? ?????????????????? + + + + + C?????????? ???????????????????? ?????????? (?????? 25). + + + + + ???????? ?????????????????????????? ?????????????? ?? ?????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????? ?????????? + + + + + ?????????????????? ?????????? (????????????????) + + + + + ?????????????? ?????????????????????? ?????????????????? - ?????? ???????? ???????????????? ?????????????????? ?????????????????????????? ?????? ???????????????????? ???????????????????? ?? ?????????? + + + + + ???????????? ?????????????????? + + + + + + + ?????????????? ???????????????????? ?? ?????????? ?? ?????????? ???????? ?????????????????????????? ?????????????????? + + + + + ?????????????????????????? ?????????? + + + + + ???????????????????? ?????????? ?????????? + + + + + ?????????? ?????????? + + + + + ???????? ?????????????????????????? ?????????????? ?? ?????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + ?????????????????? ?????????????????? +(???????? ???? ????????????, ?????????????????? ?????? ??????????) + + + + + ?????????????? ?? ???????????????? ?????????????????????????? ?????????????????? + + + + + + + ?????????????? ???????????????????? ?? ???????????????? + + + + + ?????????????????????????? ???????????????? + + + + + ?????????? ???????????????? +(?????????? ???????? ???? ???????????????? ?????? ???????????????????????? ??????????) + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ???????? ?????????????????????????? ?????????????? ?? ?????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + ?????????????? ???????????????????? ?? ?????????????? ?????????????????? + + + + + ?????????????????????????? ?????????????????? + + + + + ???????????????????? ?????????? ?????????????????? + + + + + ?????????? ?????????????????? + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ???????? ?????????????????????????? ?????????????? ?? ?????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + ??????????????????, ???????????????????????? ?????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + + ?????????????? ???????????????????? ?? ?????????? ?????????????????? + + + + + ?????????????????????????? ?????????????????? + + + + + ???????????????????? ?????????? ?????????????????? + + + + + ?????????? ?????????????????? + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ???????? ?????????????????????????? ?????????????? ?? ?????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + ?????????????? ???????????????????? ???????????????? + + + + + + ?????????????? ?? ???????????????? ?????????????????????????? ?????????????????? + + + + + + + ?????????????? ???????????????????? ?? ?????????????? + + + + + ?????????????????????????? ?????????????? + + + + + ???????????????????? ?????????? ?????????????? + + + + + ?????????? ?????????????? + + + + + ???????? ?????????????????????????? ?????????????? ?? ?????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + ???????????? ?????????????? ????????????. ?? ImportResult/CRUDResult/UniqueNumber ???????????????????? ???????????????????? ?????????? ??????????, ?????????????????????? ???? ?? ?????? ?????? + + + + + + + + ???????????????? ???? + + + + + + + + + + ?????????????????????????? ???? ?? ?????? ?????? (?????? ???????????????????? ???????????? ????) + + + + + ?????????????????????????? ?????????????????? ???? (?????????????????? ????????????????????????????????, ?????????????????? ?????????????????????? ??????????, ?????????????????? ???? ?????????????????? ?? ??????) + + + + + + + + + + + + + + + + + + + ???????????????? ???????????????????????? ???????????????????????????? ???? ?? ???????????? ?????????????? + + + + + + + + ?????????????? ?????????????? ???????????? + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????????????????????? ???? ?? ?????? ?????? (?????? ???????????????????? ???????????? ????) + + + + + + + + + + + + + ?????????? ???? ???????????? ???????????????? ?????????????? ???????????? + + + + + + + ?????????????????? ???? + + + + + + + + + + + + + + + + + + + + + + ???????????????? ?????????????? ?????????????????????????? ?? ?????????????????? ?????????????? ???????????????????????? ?????????? ???????????????????????? ?????????????? + + + + + + ?????????????????????????? ?????????????????? ?????????????? ?????????????????????????? ?? ?????????????????? ?????????????? ???????????????????????? ?????????? ???????????????????????? ?????????????? + + + + + + + + ?????????????? ?????? ?? ?????????????????? ?????????????? ???????????????????????? ?????????? ???????????????????????? ?????????????? + + + + + + ?????????????????????????? ?????????????? ?????? ?? ?????????????????? ?????????????? ???????????????????????? ?????????? ???????????????????????? ?????????????? + + + + + + + + + + + + + ?????????? ???????????????? ??????????/???????? ???????????????????????????? ?????????????????????? + + + + + + + + + + + ?????????????????????????? ???? ?? ?????? ?????? (?????? ???????????????????? ???????????? ????) + + + + + + + + + + + ???????????? ???????????????????????????? ?????????? ???? + + + + + + + + ????????????????/???????????????????? ???????????????????????????? ???????????? ???? +AccountGUID - ?????? ???????????????? ???????????????????????????? ???????????? ???? +IndividualServiceGUID - ?????? ???????????????????? ???????????????????????????? ???????????? ???? + + + + + + + + + + + ?????????????????????????? ???? ?? ?????? ?????? (?????? ???????????????????? ???????????? ????) + + + + + + + + + + + + ???????????????? ???????????????????????????? ???????????? + + + + + + + + + + + + + + + + + + + + + ?????????????? ???????????????????????????? ?????????? ???????????????? ?????????? + + + + + + + + + + + + + + + + ?????????? ???? ???????????? ???????????????? ???????????????????????????? ?????????? ???????????????? ?????????? + + + + + + + + ?????????????????????????? ???? ?? ?????? ?????? (?????? ???????????????????? ???????????? ????) + + + + + ???????????? ?????????????? ?? ?????????????? ????????????? + + + + + + + + + ???????????????? ???????????? ???????????????? ?????????? +(???????????????? ???? ?????? ???????????????????? ???????????? ?? ???? (?? ?????? ?????????? ???????????? ????, ?????????????????? ????)) + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????????? ?????????? + + + + + + + + ???????????? ???? ?????? ???????????????????? ?? ?????? ?????? + + + + + ?????????????????? ?????????????????????????? ?? ?????? ?????? ???? (?? ?????? ?????????? ???????????? ????, ?????????????????? ????) + + + + + + ?????????????????????????? ???????????? ???? (?????? ???????????????????? ????????????) + + + + + + ???????????????????? ?????????????????????????? ???? ???? ???????????? ???????????????? ??????????????????. ???????????????????? ???????????????? ?????? ???????????????????? ???????????????? ???? ???? + + + + + ???????????????????? ?????????????????????????? ???? ?????????? ???????????? ???????????????? ?????????????????? + + + + ???????????????? ???????????????????????? ???? + + + + + + + + ?????????????? ???? ?? ?????????????? ?????????????????????? ?? ?????? ?????? ????. ???????????????? ???????????????? ????????????, ???????? ?????? ???????????????? ???? ???????????????????? ?????????????? "?????????? ??????????????(????) ???????????????????????? ?? ?????????????? ???????????????????? ???????????????? ??????????". ???????????????????? ?????????????????? ???????????????????? ?????????????????? ?????????????????? ???? + + + + + + ?????????????????????????? ???????????? ????, ?????????????????????? ?? ?????? ??????, ?? ?????????????? ?????????????????? ???????????????????? ?????????? ???????????????? ???? + + + + + + + + ?????????????????? ???? ?????? ???????????? ???? ???????????? ???? + + + + + + ?????????????? ??????????????????. ???????????? ???? ?????? "?????????????? ?????????????????? ?????????????? ??????????" (???????????????????? ?????????? 21). + + + + + + + + ?????????????????? ???? ?? ?????????????? ???? ???????????? ???? + + + + + + ???????? ?????????????? + + + + + + ???????????? ?? ???????????? ???????????????? ?????????????? + + + + + ???????????? ?? ???????????? ???????????????????? ?????????????? - ?????????????????????? ?????????????? ???????????? ???? ???? ?????????? (?????? 224). + + + + + + ?????????????????? ???? ?????? ?????? ???????????? + + + + ?????????????????? ???? ???? (???????????????? ??????????????, ??????, ?????????????? ????????, ???????????????? ????????, ?????????????? ?????????????? ????????). ?????????????????????? ???????????? ?????? ????, ?????????????????????????????? ?????????????????? + + + + + ?????????????????? ???? ???? (?????????????????????????? ??????????????). ?????????????????????? ???????????? ?????? ????, ?????????????????????????????? ?????????????????? + + + + + ???????????? ???? ????. ?????????????????????? ???????????? ?????? ????, ?????????????????????????????? ???????????? ?????????????????????? ???? + + + + + + ???????????????? ???? ???????????????????????? (?????????????????????????? ???????????? ???? ?? ?????? ??????) + + + + + + + + + + + + + + + + + + + + + + + + + + ?????????????? ????. ?????????????????? ???????????? 11.1.0.2, 14.8.0.1 + + + + + + + + + ?????????????????????????? ???? ?? ?????? ?????? + + + + + ?????????????????????????? ???????????? ???? + + + + + + ?????????????????? ????, ?????????????????????? ?? ?????????????????????????? ?????? ???? ???????? ???????????????? ?????????????????? ???????????? ?????????????? ?????????????????????? (???????????????? ?????????????????????? ???????????? ?????? ????????) (???????? ?????????????? ???? ????????????????????, ???? ?????????? ?????????????????? ?????? ????????, ?????????????????? ?????????????? ?????????????????????? ?????? ??????????????????) + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ???????? ?????????????????????? + + + + + + ?????? ?????????????? ?????????? (?????? 27) + + + + + ???????????????????????? ???????????? (?????? 2) + + + + + + ???????? ?????????????????? ???????? + + + + + ???????? ?????????????????? ?????? + + + + + ?????????????????? ???????????????????????????? + + + + + ???????? ?????????? ?? ???????????????????????? ???????? + + + + + ???????? ?????????? ?? ???????????????????????? ?????? + + + + + + + ???????????????? ?? ???????????????? ?????? ?????? ?? ???? ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + + + + + + + ?????????? ???? ???????????? ???????????????? ???? + + + + + + + ?????????????????????????? ???? ?? ?????? ?????? + + + + + ???????????? ???????????????? +???????????????????? ????????????????: +Active-???????????????? +Archival-???????????????? + + + + + + + + + + + ?????????????????????????? ???????????? ???? + + + + + ?????????? ???????????? + + + + + ???????????? ???????????? + + + + + ???????? ?????????????????????? + + + + + ??????????????????????, ?? ?????????????? ???????????? ?????????? ?????????????????? ???? ?????????? ?????????????????????????? ?????? ???? ???????? ???????????????? ?????????????????? + + + + + + + + + + ?????????? ?????????????? ?????????? ?? ?????? ?????? + + + + + + + + + ???????????? ???????????????? ???? ???? ???????????????? ?????????? ?????? ?????????????????? ?????? + + + + + + + + ?????????? ???? + + + + + + + + + + + ?????????? ???? ???????????? ???????????????? ???? ???? ???????????????? ?????????? ?????? ?????????????????? ?????? + + + + + ?????????????????????????? ???? ?? ?????? ?????? + + + + + ?????????????????? (????????????????) ?????????? ???? + + + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????????? ?????????????????????? + + + + + ???????? ??????????????????????/???????????????????? ?? ???????????????? ?????? + + + + + + ?????????????????? ???????????????????? ?????????????????? ?? ?????????????????????? ?????????????????????????? ?????? ????, ?????????????????????? ????????????????????????????. ?????????????????????? ???????????? ?????? ????, ?????????????????????????????? ?????????????????? + + + + + ???????????????? ?? ???????????????????????? ?????????????? ?? ?????????????????? ???????????????????? ?????????????????? ???? (???????????????? ??????????????, ??????, ?????????????? ????????, ???????????????? ????????, ?????????????? ?????????????? ????????). ?????????????????????? ???????????? ?????? ????, ?????????????????????????????? ?????????????????? + + + + + + + + ???????????? ???????????????? ?? ???? + + + + + + + + + + + + + + + ???????????????? ???? + + + + + + + + + ???????????? ???????????????????? + + + + + + + + + ?????????????????? + + + + + ???????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????????????????? ????????????. ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 1) + + + + + + + + ?????????????????? + + + + + + + + + + + + + + + + + + + + ???????????????? ?????????????????? ?? ???????????? ???? + + + + + + + + ?????????????????????? ???????????? ???? ???????????????? ???????????????? ?????? ?????? ?????? ?????????????????????????? ???????????????????? ???????????????? ???? ?????????????????????? ???????????????? ?? ???????????????? ????????????????/???????????????? ???????????????????? ?? ???????????????? ???????????????????? ?????? + + + + + ?????????????????????? ???????????? + + + + + + + + ???????????????????? + + + + + + + + ?????????????????? + + + + + ???????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????????????????? ????????????. ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 1) + + + + + + + + ?????????????????? + + + + + + + + + + + + + + + ?????????????????? + + + + + + + + + ?????????????????? + + + + + ???????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????????????????? ????????????. ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 1) + + + + + + + + ?????????????????? + + + + + + + + + + + + + + + ?????????????????????????? + + + + + + + + + + + + + + + ?????????????????? (true) ?????? ?????????????????? (false) ???????????????? ?????????????????? ?????????????? ?????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ?????????? ???????? ????????????. ???????? ?????????????? ???? ??????????????, ?????????????????????? ???????????????? ???????????????????? ?????????????????? "?????????????????? ???????????????? ?????????????????? ?????????????????? ???????????????????????????? ?????? ?????????? (????????????????????) ???????????????? ?????????? ?? ?????????? ???????? ???????????? ???? ???????? ??????????????????". ?????????? ???????? ?????????????? ???????????? ???????? ???????? ???????? ???? ???????? ???????????? ???????????????????? ?? ?????????????? "??????????????????". + + + + + + + + + + ?????????????????????? ????, ?? ?????????????????? ???????????????? ???????? ???????????????? ???????????? ???? ?????????????????? ?????????????????????? ???????????????? ?? ???? + + + + + + + + + + + + + + ?????????????????????? ???? + + + + + + + + + + ???????????????????????????? ???? ????????. ???????? ???? ??????????????, ???? ?????????????? ???????????????????????????? ???? ????????, ???????????? ???????? ?????????????????? ???????????????? - ???????? ???????????????????? ?? ????????. + + + + + + + + + + ?????????????????????? ???? + + + + + + + + + ???????????? ???? ?????? "54 ?????????????? ?????????????????????? ??????????????" (???????????????????? ?????????? 54) + + + + + ?????????????????? + + + + + + + + + + + ?????????????????????????? ???? + + + + + + + + + + + + + + + ???????????????????? ???????????????? ?? ?????????????? ?????????? + + + + + + + + + + + + + + ?????????????????????????? ???????????????? ?? ?????????????? ?????????? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ???????????? ???????????????? ???????????? + + + + + + + + + + + + ???????????????? ???????????? + + + + + + + + ???????????? ????????????????????. ???????? ?????????? ???????????????? ???????????????????? ?????????????? ???????? ?????????????????? ???????????????????????????? ???????????????? ?????????? ???????????????????? ?????????????????? ?????????????????? "5000" + + + + + + + + + ?????????????????? + + + + + ???????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????????????????? ????????????. ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 1) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????????? ?????????????????????????????? ?????????? ???????????????????????????? ?????????????????????? ???????????????????????? ???? ???????????????? ???????????????????? + + + + + + + + + + + + + + + ???????????????? ?????????????????? ?? ???????????? ???????????? + + + + + + + + ???????????? ????????????????????. ???????? ?????????? ???????????????? ???????????????????? ?????????????? ???????? ?????????????????? ???????????????????????????? ???????????????? ?????????? ???????????????????? ?????????????????? ?????????????????? "5000" + + + + + + + + ???????????????????? + + + + + + + + ?????????????????? + + + + + ???????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????????????????? ????????????. ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 1) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????????? ?????????????????????????????? ?????????? ???????????????????????????? ?????????????????????? ???????????????????????? ???? ???????????????? ???????????????????? + + + + + + + + + + ?????????????????? + + + + + + + + + ?????????????????? + + + + + ???????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????????????????? ????????????. ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 1) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????????? ?????????????????????????????? ?????????? ???????????????????????????? ?????????????????????? ???????????????????????? ???? ???????????????? ???????????????????? + + + + + + + + + + ?????????????????????????? + + + + + + + + + + + + + + + + + + + + ?????????????????? ?????????? ???????????????? ?????????? + + + + + + + + + ???????????????????????????? ???? ????????. ???????? ???? ??????????????, ???? ???????? ?????????????????? ???????????????????? ???????????? ???????????? ?? ???????? ?????????? ?????????????????????????? ???? 1 ??????. + + + + + + + + + + ?????????????????????? ???????????????? ???????????? + + + + + + + + ?????????????? ?????????????????????? ???????????????? ???????????? + + + + + + + + + + + + + + + + ?????????????????????????? ???????????? + + + + + + + + + + + + + + ???????????????????? ???????????????? ?? ?????????????? ?????????? + + + + + + + + + + + + + + ?????????????????????????? ???????????????? ?? ?????????????? ?????????? + + + + + + + + + + + + + + + + + + + + + ?????????????? ????/?????????????? + + + + + + + + + + + + + + + + + ???????????????????????????? ???????????????? ?????????????? ???? ?????????????????????? ???????????????? + + + + + + ?????????????????? ???????????? ?? ?????????????????? ?????????????????????? ?? ???????????????? ???????????????????? ???? ???????????????????? ?????? + + + + + ?????????????????? ???????????? ?? ?????????????????? ???????????????????????????????? ???????? + + + + + + + + + + + + + + + + + ?????????? ???? ???????????? ???????????????? ????/?????????????? + + + + + + + + + ???????????? ????: + Project - ???????????? + ApprovalProcess - ???? ?????????????????????? + Approved - ?????????????????? + Rejected- ???????????????? + Terminated - ????????????????????/???????????? + Reviewed - ???????????????????? + Annul - ???????????????? ???????????????????????? + + + + + + + + + + + + +?????????????????? ??????????????????: + Running - ?????????????????????? + NotRunning - ???? ?????????????????????? + Expired - ?????????? ???????? ???????????????? + + + + + + + + + + + + ?????????????????????? ???????????? + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ???????????? ???????????????????????? ??????????????: + Project - ???????????? + ApprovalProcess - ???? ?????????????????????? + Approved - ?????????????????? + Rejected- ???????????????? + Terminated - ???????????????????? + Reviewed - ???????????????????? + Locked - ???????????????????????? + + + + + + ?????????????? ?????????????????????? ?? ???????????????? ???????????????????? ???? ???????????????????? ?????? + + + + + ?????????????? ???????????????????????????????? ???????? + + + + + + + + ?????????? ???????????? + + + + + + + ?????????????? ?????????????? ?????????????????????? ????/?????????????? + + + + + + + + ?????????????????? ???????????????? ?? ?????????????????????? ???? ?????????????????? ???????? + + + + + ?????????????????? ???????????????? ?? ?????????????????????? ???? ?????????????????? ???????? + + + + + + + + + + + + ?????????? ???? ???????????? ???????????????? ????/?????????????? + + + + + + + + + ???????????????????????????????? ????/?????????? + + + + + + + + + + ???????????? ????: + Project - ???????????? + ApprovalProcess - ???? ?????????????????????? + Approved - ?????????????????? + Rejected- ???????????????? + Terminated - ????????????????????/???????????? + Reviewed - ???????????????????? + Annul - ???????????????? ???????????????????????? + + + + + ?????????????????????????? ???????????????????? ???????????? ???????????????? + + + + + + + + + + ?????????????????????????? ???????????????????? ???????????? ???????????? ?? ?????? ?????? + + + + + + + +?????????????????? ??????????????????: + Running - ?????????????????????? + NotRunning - ???? ?????????????????????? + Expired - ?????????? ???????? ???????????????? + + + + + + + + + + + + ?????????????????????? ???????????? + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ???????????? ???????????????????????? ??????????????: + Project - ???????????? + ApprovalProcess - ???? ?????????????????????? + Approved - ?????????????????? + Rejected- ???????????????? + Terminated - ???????????????????? + Reviewed - ???????????????????? + Locked - ???????????????????????? + + + + + + ?????????????? ?????????????????????? ?? ???????????????? ???????????????????? ???? ???????????????????? ?????? + + + + + ?????????????? ???????????????????????????????? ???????? + + + + + ?????????????????????????? ???????????????????? ???????????? ?????????????? ???????????????????? ?? ?????? ?????? + + + + + + + + ?????????? ???????????? + + + + + true, ???????? ????/?????????? ?????? ??????????????????????????, false ???????? ???? ?????? + + + + + ???????????????? ?????????????? ?????????????????????? + + + + + + + + + + + + + + ?????????????? ????/??????????????. + +?????????????????? ???????????? ?????????????? ????????????????: 10.0.1.1, 13.0.0.1 ?? 13.1.2.1 + + + + + + + + + + + + + + + ?????????? ???? ???????????? ???????????????? ????/?????????????? + + + + + ???? + + + + + + + + ???????????????????? ?? ?????????????????????? ???? + + + + + + + + ???????????? ???? ?????? "54 ?????????????? ?????????????????????? ??????????????" (???????????????????? ?????????? 54) + + + + + + + + + + ???????????? ???? ?? ?????? ??????: +Project - ???????????? +ApprovalProcess - ???? ?????????????????????? +Approved - ?????????????????? +Rejected - ???????????????? +Reviewed - ???????????????????? +Terminated - ????????????????????/???????????? +Annul - ???????????????? ???????????????????????? + + + + + + + ???????????? ???????????????????? + + + + + + + + ?????????????????????????? ???????????? ?????????????? ???????????????????? ?? ?????? ?????? + + + + + ?????????????????? + + + + + ???????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????????????????? ????????????. ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 1) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????? ???? ???????????????????? ?????????????? ???????????????????? ???? ???? + + + + + + ?????????????????? + + + + + ???????? ???????????????????? + + + + + + + + ???????????? ?? ?????? ?????? +???????????????????? ????????????????: +Project-???????????? +ApprovalProcess-???? ?????????????????????? +Rejected-???????????????? +Approved-?????????????????? +Locked-???????????????????????? + + + + + + + + + + ???????????????? ?? ?????????????? ?????????? + + + + + + + + + ???????????? ????????????: +(P)laced - ???????????????????? ?????????????????? +(A)nnulled - ???????????????????? ???????????????????????? + + + + + + + + + + + + + + + + + + + + + + ?????????? + + + + + + + + ???????????????????? ?? ?????????????????????? ???????????????? ???????????? + + + + + + + + ?????????????? ?????????????????????? ???????????????? ???????????? + + + + + + + + + + + + + + + ???????????? ???????????? ?? ?????? ??????: + Project - ???????????? + Reviewed - ???????????????????? + ApprovalProcess - ???? ?????????????????????? + Approved - ?????????????????? + Terminated - ????????????????????/???????????? + Rejected - ???????????????? + Annul - ?????????????????????? + + + + + + + + ???????????? ???????????????????? + + + + + + + + ?????????????????????????? ???????????? ?????????????? ???????????????????? ?? ?????? ?????? + + + + + ?????????????????? + + + + + ???????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????????????????? ????????????. ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 1) + + + + + + + + ?????????????????? + + + + + + + + + + ???????????????? ???? ???????????????????? ?????????????? ???????????????????? ???? ???????????? + + + + + + ?????????????????? + + + + + ???????? ???????????????????? + + + + + + + + ???????????? ?? ?????? ?????? +???????????????????? ????????????????: +Project-???????????? +ApprovalProcess-???? ?????????????????????? +Rejected-???????????????? +Approved-?????????????????? +Locked-???????????????????????? + + + + + ???????????????????? ?????????????????????????????? ?????????? ???????????????????????????? ?????????????????????? ???????????????????????? ???? ???????????????? ???????????????????? + + + + + + + + + + ???????????????? ?? ?????????????? ?????????? + + + + + + + + + ???????????? ????????????: +(P)laced - ???????????????????? ?????????????????? +(A)nnulment - ???????????????????? ???????????????????????? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ?????????????????????????? ???? ?? ?????? ?????? + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ???????? ???????????????????? ???? + + + + + ?????????????????? ?????? ???????????????? ???????????? ?????????????? ???????????? ????/????????????. ???????? ?????????????? ???? ????????????, ???????????????? ???????????????? ?????? ???????????? ?????????????????? + + + + + + + + ???????????? ???????????? (?????????????? ???? ?????????????????????? ?????????? ???????????????????? ) + + + + + + + + + + + + + ?????????????????????????? ???????????? ???????????? ?? ?????? ?????? + + + + + + + ????????????????\?????????????????? ???????????? + + + + + + + + ???????????? ???????????????? ?????????? ???? ???????????????? ?? ???????????????????????????? ?? ?????????????????????? ?????????? ???????????? ?????????????????? ?????????????????????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + + ???????????? ?????????????? + + + + + ?????????????????? ?????????????? + + + + + + ???????? + + + + + + + + + + + + + + + + + + ?????????????????????????? ???????? + + + + + + + + + ???????????????????? ???????????????? ?? ???????????????? ?????????? + + + + + + + + ?????????????????????????? ???????????? ???????????? ?? ?????? ?????? + + + + + ?????????????????????????? ???????????? ???????????????? ?? ???????????????? ?????????? ?? ?????? ?????? + + + + + + ???????????? + + + + + + + + + + + ?????????????????? ???? ???????????? + + + + + ???????????? ?????????????????????????? (-)/?????????????????? (+) ???? ???????????? + + + + + ???????????????? ???? ???????????? + + + + + + + + ?????????????????????????? ???????????????? ?? ???????????????? ?????????? + + + + + + + + + ?????????????????????????? ???????????? ???????????????? ?? ???????????????? ?????????? ?? ?????? ?????? + + + + + + + + + + ???????????????? ???????????????? ?? ???????????????? ?????????? + + + + + + + ?????????????????????????? ???????????? ???????????????? ?? ???????????????? ?????????? ?? ?????? ?????? + + + + + + + + + + + + + + + + + + ?????????????? ???????????? + + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ???????????????? + + + + + ???????? ???????????? ???????????????? ???????????????? + + + + + ???????? ?????????????????? ???????????????? ???????????????? + + + + + + + ???????????????? ?????????????????????????? ???????????? (???? ???????????????? ???? ???????????? ?? ????????????) + + + + + ?????????????????????????? ???????????? ???????????? + + + + + + + + + + + + ?????????? ???? ???????????? ???????????????? ???????????? + + + + + ?????? + + + + + + + + + ?????????????????? ???????????????? + + + + + + ?????????? ???????????? + + + + + ???????????? ???????????? + + + + + ???????????? ???????????????? ?????????? ???? ???????????????? ?? ???????????????????????????? ?? ?????????????????????? ?????????? ???????????? ?????????????????? ?????????????????????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + + ???????????? ?????????????? + + + + + ?????????????????? ?????????????? + + + + + + ???????? + + + + + + + + + + + + + ???????????????? ?? ???????????????? ?????????? ?? ?????????????????????????? ???? ?????????? ?????????? + + + + + + ?????????????????????????? ???????????? ???????????????? ?? ???????????????? ?????????? ?? ?????? ?????? + + + + + ???????????? + + + + + + + + + + + ?????????????????? ???? ???????????? + + + + + + + + + + + ???????????? ?????????????????????????? (-)/?????????????????? (+) ???? ???????????? + + + + + + + + + + + ???????????????? ???? ???????????? + + + + + + + + + + + + + + ?????????????? ???????????????? ???? ?????????????????????????? ????????????? + + + + + + + + + + + + ???????????? ???????????????? ???????????????????????????????? + + + + + + + + ?????????????? ???????????????????????????????? + + + + + + + + + ?????????????????????????? ???????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? ???????????????????? ?????????????? ?????????????????????????? ?????????????????? ???????????? ???????????????? + + + + + ?????????????????????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + + + + ????????????????/?????????????????? + + + + ???????????????? ???????????????????????? ???????? ???? ???????????????????????? ???????????? ?? ?????????????????????????? ?????????????? ?? ???????????? ???????????????? + + + + + + + + ???????????????? ???????????????????????? ?????????????????????????? ???????????????????????????? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? + + + + + + + ???????????? ???? ???????????????????????? ?????????????????????????? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? + + + + + + + ???????????????? ???????????????????????? ?????????????????????????? ???????????????????????????? ?????? + + + + + + + + + + + + + + + + + + + ???????????????? ???????????????????????? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ?? ???????????????????????????????????? ???????? ???????????? + + + + + + + + ???????????? ???? ?????? ?? ???????????? + + + + + + + ???????????? ???? ?????? ?? ???????????????????? ?????????????????????? + + + + + + + ???????????????? ???????????????????????? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ?? ?????????????????? ?????????????????????? ???????????????????????? ???????????? + + + + + + + + + ?????????????????????? + + + + + + + + ???????????? ???? ?????? "54 ?????????????? ?????????????????????? ????????????????" (???????????????????? ?????????? 54) + + + + + + + + + + ?????????????????????? + + + + + + ???????? ?????????????????? ?????????????????????? + + + + + + + + ?????????????????????????? + + + + + + + + + + + + + + ???????????????? ???????????????????????? ?????????????????????????? ???????????????????????????? ?? ???????????? ?????????????? + + + + + + + ???????????????? ???????????????????????? ???????????????????????????? ???????????? ???????????????? ?? ???????????? ?????????????? + + + + + + + ???????????????? ???????????????????????? ?????????????????? ???????????????????????????? ???????????????? ?? ???????????? ?????????????? + + + + + + + + ???????????? ?????????????? ???????????????? ???????????????????????????????? + + + + + + + + ?????????????? ???????????????????????????????? + + + + + + + + + ?????????????????????????? ???????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? ???????????????????? ?????????????? ?????????????????????????? ?????????????????? ???????????? ???????????????? + + + + + ?????????????????????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + + + + ????????????????/?????????????????? ?????????????? ???????????????? ???????????????????????????????? + + + + ???????????????? ???????????????????????? ?????????????????????????? ???????????????????????????? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? + + + + + + + ???????????? ???? ???????????????????????? ?????????????????????????? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? + + + + + + + ???????????????? ???????????????????????? ???????? ???? ???????????????????????? ???????????? ?? ?????????????????????????? ?????????????? ?? ???????????? ???????????????? + + + + + + + + + ???????????????? ?????????????? ???????????????? ????????????????????????????????. ?? ?????????????????????? ?????????????????? ???????????????????????????????? ?????????????????? ?????????????????? ???????????? ???????????????? ?? ?????????????? "????????????" + + + + + ???????????????????? ?????????????? ???????????????? ???????????????????????????????? + + + + + + + + + + + + + + ???????????????? ???????????????????????? ?????????????????????????? ???????????????????????????? ?? ???????????? ?????????????? + + + + + + + ???????????????? ???????????????????????? ???????????????????????????? ???????????? ???????????????? ?? ???????????? ?????????????? + + + + + + + ???????????????? ???????????????????????? ?????????????????? ???????????????????????????? ???????????????? ?? ???????????? ?????????????? + + + + + + + + ???????????? ???? ?????????????? ?????????????????? ????????????????????????????????. + +?????????????????? ???????????? ?????????????? ????????????????: 11.11.0.2 ?? 13.1.1.1 + + + + + + + + + ?????????????????????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + + + ?????????????????????????? ???????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + + + ???????????????? ?????????????????????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? ?????? ?????????????????? ???????????????? ?????????????????? 1000 ?????????????????? ?????? ?????????????????? ???????????????? ???? ?????????????????????? + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? "??" + + + + + ???????? ???????????????????? "????" + + + + + ?????????? ???????? +???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????????? ???????????????? + + + + + + ?????????????? ???????????????? +???????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + + + ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 239) + + + + + + + + + + + + + + + ???????????? ???????????????? ?????????????????? ?????????? ?? ?????????????? ???????????????????????????????? + + + + + + + + + ???????????????????? ?????????????? ?????????????????????????? ?????????????????? ???????????? ???????????????? + + + + + ?????????????????????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + + + + + + + ?????????????????????????? ?????????????? ?????????????????? ?????????? ?? ?????? ?????? + + + + + + + ????????????????????/?????????????????? ???????????????????? ???? ?????? + + + + + + + + ???????????????????????? ???????????? ?? ???????????????????????? ????????????, ???????????????????????? ?? ???????????? ?????????????????? ?????????? + + + + + + + + ?????? ?????????????? ???????????????????????????? (?????????????????????? ?????? ???????????????????????? ???????????????? "???????????????? ??????????????" ?? "?????????????? ????????") + + + + + + ????????????????/???????????????? + + + + + + + + + + + ????????????????????????????????/???????????????????????????????????? + + + + + + + + + + + + + + + + + + + + ?????????????? "???????????????????? ?????????????????????????? ?????????? ?????????????? ?????????????????? ?????????? ?? ???????????????????????????????? ?????????????? ??????????????????????????". ?????????? ???????? ????????????, ???????????? ???????? ???????????????????? ???????????????? ???????????????????????? ???????????????? ?????????????? ?? ?????????????? ???????????????? ?????????????????? ?????????? ?? ?? ?????????? ???????????????????????? ?? ???????????? ?????????????????? ?????????? ???????????????????????? ?????????? ???????????? "???????????????? ??????????????????????????" ??/?????? "?????????????? ??????????????????????????" + + + + + ???????????????????? ???????????????? (???????????????????????? ?? ?????????????????????? ?????????????????????? ????????????????). ?????????????????????? ?????? ????????????????????, ???????? ???????????????????? ???????????????? ?????????????? ?? ?????????????? ?????? ?????? ???????? ???? ?? ???? "?????????????? ??????????????????????????" ?? "???????????????? ????????" ?????????????????????? ???????????????????? ????????????????????, ???????????????????????? ?????? ???? "?????????????? ????????" ?? ?????????????????????? ?????????????????????? ???????????????? ???????????????????????? ???????????????? ?????? ???????? ???? ?? ???? "?????????????? ??????????????????????????" ?? "???????????????? ??????????????" ???????????????????? ?? ?????????????????????? ???????????????? ???? ?????????????????????? ???????????? ?? ?????? ????????????, ???????? ?????? ???????????????? (???????? ???????????????????? ?????????????? ?? ?????????????? ????????????????) ?????? ?????? ?? ???????????????? (???????? ???????????????????? ?????????????? ?? ?????????????? ??????) ?????????? ?????????????? ???????? ???? ?? ???? "?????????????? ??????????????????????????" ?? "???????????????? ????????" + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ???????????????????? ????????????????. ???????????? ???? ?????? "???????????????????? ???????????????? ???????????????????????? ????????????????" (???????????????????? ?????????? 276) + + + + + ???????????????? ???????????????????? ???????????????? + + + + + + + + + + ???????????????????????????? ???????????????????? + + + + + + + + ???????? ???????????????????? ???????????????? ?????????????????????????? ?????????????? (???? ???????????????????????? ?? ?????????????????????? ?????????????????????? ????????????????). ?????????? ???????? ?????????????? ????????????, ???????? ???????????????????? ???????????????? ?????????????? ?? ?????????????? ?????? + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ???????????????????????? ???????????????????? + + + + + + + ?????????????????????????? ???????????????? ???????????????????? ???????????????? + + + + ?????????? + + + + + ???????????????? + + + + ???????????? ?????????????????? + + + + + ?????????? ?????????????????? + + + + + + + + + ???????????????? ?????????????????????????? + + + + + + ???????????????????????????? ???????????????????? + + + + + + + + ???????????????????? ?? ?????????????????????????? ??????????????. ???????????????? ?????? ????????????????????, ???????? ?? ???????????? ?????? ???????? ???? ?????? ?????????????????????? ???????????? "???????????????? ??????????????". + + + + + + ?????????????????????? ?????????????????? ?????????????? + + + + + ?????????????????????? ?????????????????????????? ?? ???????????????? ???????????????????????? + + + + + + + + + + + ?????????????????????? ?????????????????????????? ?? ???????????????? ???????????????????????? + + + + + + + + + + + + + + ???????????????? ?????????? ?? ?????????? ???????????? ???? ??????. ?????????? ???????? ?????????????????? ???????????? ???????? ???????????????? ?????????? ?? ?????????? ???????????? ?????????????? ?? ?????????????? ?????? + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ???????????????? ?????????? + + + + + ?????????????? ??????????????????. +?????????????????????? ?????? ???236 "?????????? ???????? ???????????????????????? ????????????, ?????????????????????????????? ?????????????? ?? ???????????? ?????????????????? ???????????? ????????????" + + + + + ?????????? ???????????? + + + + + + + + + + + + + ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ????????????????????????: +R(SO)- ??????. +P(roprietor)-?????????????????????? ???????????????????????? ??????????. ??????????????????????, ???????? ?????????????? ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ?????????????? ?? ?????????????? ?????? + + + + + + + + + + + ???????????????????? ???????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ???? ???????????????????? ???????????????????????? ?????????????????????????????????? ??????????????????????. ?????????????????????? ?????? ????????????????????, ???????? ?? tns:CountingResource ??????????????"??????" . ?? ?????????????????? ?????????????? ???? ??????????????????????. + + + + + ???????????????????? ?? ?????????????????????? ???????????? + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ?????????????????????????? ???????????????????????????????????? ???????? ???????????? + + + + + + + + ???????????????????? ?? ?????????????????? ?????????????????????? ???????????????????????? ???????????? + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ?????????????????????????? ?????????????????? ?????????????????????? ???????????????????????? ???????????? + + + + + + + + + + + + ???????????????? ???????????????????????? ???????? ???? ???????????????????????? ???????????? ?? ?????????????????????????? ?????????????? ?? ???????????? ?????? + + + + + + + + ???????????????? ???????????????????????? ?????????????????????????? ???????????????????????????? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? + + + + + + + ???????????? ???? ???????????????????????? ?????????????????????????? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? + + + + + + + ???????????????? ???????????????????????? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ?? ???????????????????????????????????? ???????? ???????????? + + + + + + + + + ???????????????? ?????? ???? ???????????????? ???????????????????????????????? + + + + + + + + + + + + + + ???????????????? ???????????????????????? ?????????????????????????? ???????????????????????????? ?? ???????????? ?????????????? + + + + + + + ???????????????? ???????????????????????? ???????????????????????????? ?????????????? ?????????????????? ?????????? ?? ???????????? ?????????????? + + + + + + + ???????????????? ???????????????????????? ???????????????????????????? ???????????? ???????????????? ?? ???????????? ?????????????? + + + + + + + ???????????????? ???????????????????????? ?????????????????? ???????????????????????????? ???????????????? ?? ???????????? ?????????????? + + + + + + + + ???????????? ???? ?????????????? ???????????????? ?????????????????? ?????????? ???? ???????????????? ????????????????????????????????. + +?????????????????? ???????????? ?????????????? ????????????????: 11.6.0.1 ?? 13.1.1.1 + + + + + + + + + ?????????? ???????? +???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + + + ?????????????????????????? ?????????????? ?????????????????? ?????????? ?? ?????? ?????? ?????? ?????????????????? ???????????????? ?????????????????? 1000 ?????? ?????? ?????????????????? ???????????????? ???? ?????????????????????? + + + + + + ?????????????????????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + ?????????????????????????? ???????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + + + + + + + + + ???????????? ???? ?????????????? ???????????????????????? ?????????????? ???????????????????? ?? ???????????????? ????????????????????????????????. + +?????????????????? ???????????? ?????????????? ????????????????: 11.14.0.1 ?? 13.1.1.1 + + + + + + + + + ???????????????? ?????????????????????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? ?????? ?????????????????? ???????????????? ?????????????????? ???????????????? ?? ????????????????????. ?????? ?????????????????? ???????????????? ???? ?????????????????????? + + + + + ?????????????????????????? ?????????????? ?????????????????? ?????????? ?? ?????? ?????? ?????? ?????????????????? ???????????????? ?????????????????? ???????????????? ?? ?????? ???????????? ???????????????? ?? ??????????????????????????????, ?????????????????? ?? NextPageContractRootGUID. ?????? ?????????????????? ???????????????? ???? ?????????????????????? + + + + + + + + + + ?????????? ???????? +???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + + + ?????????????????????????? ???????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + + + ?????????????????????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? "??" + + + + + ???????? ???????????????????? "????" + + + + + ?????????????? ???????????????? + + + + + + ?????????????? ???????????????? +???????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + + + ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 239) + + + + + + + + + + + + + ??????????????????????, ?????????????????????? ?????????????? + + + + + + + + + + + + ?????????????????? ???????????????? ?????????????????? ???????????????????????????????? + + + + + + + ?????????????????????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + ?????????????????????????? ???????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + ?????????????????? ???????????????? + + + + + + ???? ?????????????? ?? ???????? + + + + + ?????????????????????? + + + + + ?????????? ???????? ???????????????? + + + + + + + + ?????????? ???????????? ???????????????? + + + + + + + + ???????????? ???????????? ???????????????? + + + + + + ???????????????? + + + + + ???????????????????? + + + + + ???????????? + + + + + ???????????????????? ???????????????????????? + + + + + + + + ???????????????????? ?? ?????????????????????? + + + + + + + + ???????????? ???? ?????? "54 ?????????????? ?????????????????????? ????????????????" (???????????????????? ?????????? 54) + + + + + + + + + + ?????????????????????????? + + + + + + + + + ?????????????? ???????????????????????????????? + + + + + + ?????????????? ???? ???????????????? ?????????????????? ??/?????? ???????????????????????? ?????????????????????? ???? ???????????????? ???????????????? (?????????????????????? ??????????) ??/?????? ???? ???????????????? ?? ?????????????????? ?????????????? ?????????????????? ?? ?????????????????????????????? ?????????? + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ???????? ???????????????????? ?? ???????? + + + + + ?????????????? ???????????????????????????????? ?? ???????????????????? ?? ???????????????? + + + + + + + + ?????????????? ???????????????? ?????????????????? ??/?????? ?????????????????????? ?????????????????????? ???? ???????????????? ???????????????? (?? ?????????????????????? ??????????) ??/?????? ???????????????? ?? ?????????????????? ?????????????? ?????????????????? ?? ?????????????????????????????? ?????????? + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ???????? ???????????????????? ?? ???????? + + + + + ?????????????? ???????????????????????????????? ?? ???????????????????? ?? ???????????????? + + + + + + + + + + ?????????????? ???????????????? ???? ???????????????????????????? ???????? + + + + + + ?????????????????????????? ???????????????????????????? ?????????????? ???? ???????? ?????? ?????? ?????????????????????? ???????? ?????????????????? ????????????????. + + + + + ???????? ?????????????????? ????????????????. ?????????????????????? ?????? ????????????????????, ???????? ?????????????? ???????????????? ?? AutomaticRollOverOneYear + + + + + + + ???????????? ???????????????? ?????????????? ?????????????????? ???? ???????????????????????????? ???????????????? ??????????. ???????????????????? ?????? ????????????????????, ???????? ?? ???????? VolumeDepends = true ?????? ???????? ???????? MeteringDeviceInformation = ??true?? + + + + + + ???????????? ?????????????? + + + + + + ???????? ???????????? + + + + + + + + + + + ???????????????????? ???????????? + + + + + + + + ?????????? ?????????????? + + + + + + ???????? ??????????????????. ???????? ?????????? ?????????????? ???????????????? "?????????????????? ???????? ????????????", ???? ???????? ?????????????????????? ?????????????????? "-1". + + + + + + + + + + + + ???????????????????? ???????????? + + + + + + + + + + + ?????????????????? ???????????????? ?????????????????? ?????????????? ?????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ?????????? ???????? ????????????. +???????????????????? ???????????????? ???????????? ????????: ?? ???????????????????? ?????????????????????? ?????????????????????? ?????????????????? ???????????????????? ???????????????? ?????????????????? ?????????????????? ???????????????????????????? ?????? ?????????? (????????????????????) ???????????????? ?????????? ?? ?????????? ???????? ?????????????? ?????? ?? ???????????????????? ?????????????????????? ?????????????????????? ?????????????????? ???????????????????? ???????????????? ?????????????????? ?????????????????? ???????????????????????????? ?????? ?????????? (????????????????????) ???????????????? ?????????? ???????????? ?? ??????????, ?????????????????????????? ?? ????????????????, ?????? ?? ?????????? ???????? ????????????, ???????? ?? ???????????????? ???????????????????? ?????????????? ???????????????????? ???????????????? ?????????????????? ???????????????? ?????????? ?? ?????????? ???????? ?????????????? ?? ???????????????? Period + + + + + +???????????? ???? ?????? "?????????????????? ???????????????????? ????????????????" (???????????????????? ?????????? 58). + + + + + ???????????? ?????????????? ???????????????? + + + + ?????????????? ???????????? + + + + + ?????????????????????? ?????? ???????????????????????? ???????????? (????????????????) ?????????????????? ?? ?????? + + + + + + ?????????????????????? (?????????????????????? ???????? ?????? ???????????????????????????? ??????????????????????????????) + + + + + ???????????????????? ???????? + + + + + ???? ?????????????????? ???????????????????????? ?????? ???????????????????????? + + + + + + + + ?????????????????????? ?????? ???????????????????????? ???????????? ???????? (????????????????????????) + + + + + + ?????????????????????? (?????????????????????? ???????? ?????? ???????????????????????????? ??????????????????????????????) + + + + + ???????????????????? ???????? + + + + + ???? ?????????????????? ???????????????????????? ?????? ???????????????????????? + + + + + + + + ?????????????????????? ?????????????????????? + + + + + + + + + + ?????????????????????????? ?????????????????????????? ???????????????????????????????? ???????? + + + + + + ???? ?????????????????? ???????????????????????? ?????? ???????????????????????? + + + + + ?????????????????????? (?????????????????????? ???????? ?????? ???????????????????????????? ??????????????????????????????) + + + + + ???????????????????? ???????? + + + + + + + + ?????????????????????? ?????????????????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + ???? ?????????????????? ???????????????????????? ?????? ???????????????????????? + + + + + ?????????????????????? (?????????????????????? ???????? ?????? ???????????????????????????? ??????????????????????????????) + + + + + ???????????????????? ???????? + + + + + + + + + ?????????????? ?? ???????????????? ?????????????????? ???????????? ?? ???????????? ???????????? ???????????????? ???????????????? + + + + + ?????? ?????????????? ?????????????????? ???????????? ?? ???????????? ????????????: +D - ?? ?????????????? ????????????????. +O - ?? ?????????????? ???????????????? ?????????????????? ??????????. ?????????????????????? ?????? ?????????????? ?? ???????????????? ?????????????????? ???????????? ?? ???????????? ???????????????? ????????????????. + + + + + + + + + + + ?????????????? ???????????????? + + + + + + + + + + + + + + ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ????????????????????????: +R(SO)- ??????. +P(roprietor)-?????????????????????? ???????????????????????? ??????????. ??????????????????????, ???????? ?????????????? ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ?????????????? ?? ?????????????? ???????????????? + + + + + + + + + + + ???????????????????? ???????????????? ???????????????????????? ???????????????? ?? ?????????????????????????? ???????????? ??????????????: +D - ?? ?????????????? ????????????????. +O - ?? ?????????????? ???????????????? ?????????????????? ??????????. + + + + + + + + + + + ?????????????? "???????????????????? ?????????????????????????? ?????????? ???????????????? ?????????????????? ?????????? ?? ???????????????????????????????? ?????????????? ??????????????????????????". ?????????? ???????? ????????????, ???????????? ???????? ???????????????????? ???????????????? ???????????????????????? ???????????????? ?????????????? ?? ?????????????? ???????????????? ?? ?????????????? ???????????????? ???????????????? ???????????????????????? ???????????? "???????????????? ??????????????????????????" ??/?????? "?????????????? ??????????????????????????" + + + + + ???????????? ???? ?????????????? ?????????????????? ??????????. ?????? ?????????????? ???????????????? ???????????? ???????? ???????????????? ?????? ?????????????? ???????? ?????????? ?????????????? ?????????????????? ?????????? + + + + + + + + + ???????????????????????? ???????????? ?? ???????????????????????? ????????????, ???????????????????????? ?? ???????????? ?????????????????? ?????????? + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ???????? ???????????? ???????????????? ?????????????? + + + + + ???????? ?????????????????? ???????????????? ??????????????. ???????????????? ????????????????????????, ???????? ?????????????? ???????????????? ?? AutomaticRollOverOneYear + + + + + ?????? ?????????????? ???????????????????????????? (?????????????????????? ?????? ???????????????????????? ???????????????? "???????????????? ??????????????" ?? "?????????????? ????????") + + + + + + ????????????????/???????????????? + + + + + + + + + + + ????????????????????????????????/???????????????????????????????????? + + + + + + + + + + + + + + + + + ?????????????? "???????????????????? ?????????????????????????? ?????????? ?????????????? ?????????????????? ?????????? ?? ???????????????????????????????? ?????????????? ??????????????????????????". ?????????? ???????? ????????????, ???????????? ???????? ???????????????????? ???????????????? ???????????????????????? ???????????????? ?????????????? ?? ?????????????? ???????????????? ?????????????????? ?????????? ?? ?? ?????????? ???????????????????????? ?? ???????????? ?????????????????? ?????????? ???????????????????????? ?????????? ???????????? "???????????????? ??????????????????????????" ??/?????? "?????????????? ??????????????????????????" + + + + + ???????????????? ?????????? ?? ?????????? ???????????? ???? ??????. ?????????? ???????? ?????????????????? ???????????? ???????? ???????????????? ?????????? ?? ?????????? ???????????? ?????????????? ?? ?????????????? ?????? + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ???????????????? ?????????? + + + + + ?????????????? ??????????????????. +?????????????????????? ?????? ???236 "?????????? ???????? ???????????????????????? ????????????, ?????????????????????????????? ?????????????? ?? ???????????? ?????????????????? ???????????? ????????????" + + + + + ?????????? ???????????? + + + + + + + + + + + + + ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ????????????????????????: +R(SO)- ??????. +P(roprietor)-?????????????????????? ???????????????????????? ??????????. ??????????????????????, ???????? ?????????????? ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ?????????????? ?? ?????????????? ?????? + + + + + + + + + + + ???????????????????? ???????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ???? ???????????????????? ???????????????????????? ?????????????????????????????????? ??????????????????????. ?????????????????????? ?????? ????????????????????, ???????? ?? tns:CountingResource ??????????????"??????" . ?? ?????????????????? ?????????????? ???? ??????????????????????. + + + + + + + + + + + + + + ???????????????????? ???????????????? (???????????????????????? ?? ?????????????????????? ?????????????????????? ????????????????). ???????? ???????????????????? ?????????????????????? ?? ?????????????? ????????????????, ???? ???????????? ???? ?????? ???? ??????????????????????. ???????? ???????????????????? ?????????????????????? ?? ?????????????? ??????, ???? ???????????? ???? ?????? ??????????????????????. + + + + + + ???????????? ???? ??????, ?????????????????????? ??????????????????????, ???????? ???????????????????? ???????????????? ?????????????? ?? ?????????????? ?????? + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ???????????????????? ????????????????. ???????????? ???? ?????? "???????????????????? ???????????????? ???????????????????????? ????????????????" (???????????????????? ?????????? 276) + + + + + ???????????????? ???????????????????? ???????????????? + + + + + + + + + + ???????????????????????????? ???????????????????? + + + + + + + + ???????? ???????????????????? ???????????????? ?????????????????????????? ?????????????? (???? ???????????????????????? ?? ?????????????????????? ?????????????????????? ????????????????). ???????? ???????????????????? ?????????????????????? ?? ?????????????? ????????????????, ???? ???????????? ???? ?????? ???? ??????????????????????. ???????? ???????????????????? ?????????????????????? ?? ?????????????? ??????, ???? ???????????? ???? ?????? ??????????????????????. + + + + + + ???????????? ???? ??????, ?????????????????????? ??????????????????????, ???????? ???????????????????? ???????????????? ?????????????? ?? ?????????????? ?????? + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ???????????????????????? ???????????????????? + + + + + + + ?????????????????????????? ???????????????? ???????????????????? ???????????????? + + + + ?????????? + + + + + ???????????????? + + + + ???????????? ?????????????????? + + + + + ?????????? ?????????????????? + + + + + + + + + ???????????????? ?????????????????????????? + + + + + + ???????????????????????????? ???????????????????? + + + + + + + + ???????????????????? ?? ?????????????????????????? ??????????????. ???????? ???????????????????? ???????????????? ?????????????????????? ?? ?????????????? ????????????????, ???? ???????????? ???? ?????? ?? ???????????? ???????????????? ???? ?????????????????????? ?? ?????????????? ?????????? ?????????????????????? ???????????? ???????? ???????????????? ???????????????? ???????? ???? ?????? ?????????????????????? ???????????? "???????????????? ??????????????". ???????? ???????????????????? ???????????????? ?????????????????????? ?? ?????????????? ??????, ???? ???????????? ???? ?????? ?????????????????????? ?? ?????????????? ?????????????????????? ???????????? ???????? ?? ???????????? ?????? ?????????????????????? ???????????? "???????????????? ??????????????". + + + + + + ???????????? ???? ??????, ?????????????????????? ??????????????????????, ???????? ???????????????????? ???????????????? ?????????????? ?? ?????????????? ?????? + + + + + ?????????????????????? ?????????????????? ?????????????? + + + + + ?????????????????????? ?????????????????????????? ?? ???????????????? ???????????????????????? + + + + + + + + + + + ?????????????????????? ?????????????????????????? ?? ???????????????? ???????????????????????? + + + + + + + + + + + + + + ???????????????????? ?? ???????????? ???????????? + + + + ???????? ?????????????????????????? (??????????????????????) ?????????????????? ????????????????????, ???? ??????????????. ???????????????? ????????????????????????, ???????? ???????????? ?????????????? ???????????????? ???????????????????? ???? "?????????????????????? ??????????????????????" ?????? ???????? ?????????????????? ???????? tns:MeteringDeviceInformation ???? ??????????????????????, ???????? OneTimePayment = true + + + + + + ???????? ?????????????????????????? (??????????????????????) ?????????????????? ???????????????????? (??????????), ???? ??????????????. ???????? ?????????? ?????????????? ???????????????? "?????????????????? ???????? ????????????", ???? ???????? ?????????????????????? ?????????????????? "-1". + + + + + + + + + + + + ?????? ??????????: +C (urrrent) - ???????????????? ???????????????????? ????????????. +N (ext) - ???????????????????? ???????????? ???? ??????????????????. + + + + + + + + + + + + + + ???????? ???????????????? ??????????, ???? ??????????????. ???????????????? ????????????????????????, ???????? ???????????? ?????????????? ???????????????? ???????????????????? ???? "?????????????????????? ??????????????????????" ?? ?????????????? ???? ???????????????? ?????????????????? ??/?????? ???????????????????????? ?????????????????????? ???? ???????????????? ???????????????? ?????? ?? ?????????????????????? ?????????? ?? ?? ???????? OneTimePayment = false. ???? ??????????????????????, ???????? OneTimePayment = true + + + + + + ???????? ???????????????? ?????????? (??????????), ???? ??????????????. ???????? ?????????? ?????????????? ???????????????? "?????????????????? ???????? ????????????", ???? ???????? ?????????????????????? ?????????????????? "-1". + + + + + + + + + + + + ?????? ??????????: +C (urrrent) - ???????????????? ???????????????????? ????????????. +N (ext) - ???????????????????? ???????????? ???? ??????????????????. + + + + + + + + + + + + + + ???????? ???????????????????????????? ???????????????????? ?? ?????????????????????? ????????????????, ???? ??????????????. ???????????????? ????????????????????????, ???????? ???????????? ???????????????? ???????????????? ???????????????? ???????????????????????? ????????????????????????, ?????????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ?????????????????????????? = ?????????? ?? ?????????????? ???? ???????????????? ?????????????????? ??/?????? ???????????????????????? ?????????????????????? ???? ???????????????? ???????????????? ?????? ?? ?????????????????????? ??????????. + + + + + + ???????? ???????????????????????????? ???????????????????? ?? ?????????????????????? ???????????????? (??????????), ???? ??????????????. ???????? ?????????? ?????????????? ???????????????? "?????????????????? ???????? ????????????", ???? ???????? ?????????????????????? ?????????????????? "-1". + + + + + + + + + + + + ?????? ??????????: +C (urrrent) - ???????????????? ???????????????????? ????????????. +N (ext) - ???????????????????? ???????????? ???? ??????????????????. + + + + + + + + + + + + + + + ???????????????????? ???????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ???? ???????????????????? ???????????????????????? ?????????????????????????????????? ??????????????????????. ?????????????????????? ?????? ????????????????????, ???????? ?? tns:CountingResource ??????????????"??????" . ?? ?????????????????? ?????????????? ???? ??????????????????????. + + + + + ?????????? ???????????????? ??????????????(????) ???????????????????????? ???? ?????????????????? ?????????????? ??????????. ???????? ???? ??????????????????????, ???????? ???????????? ?????????????? ???????????????? = ?????????????????????? ?????????????????????? ?????? ?? ???????? OneTimePayment = true + + + + + ???????????? ?????????????????????????????? ?????????? ???????????????????????????? ?????????????????????? ?????? ???????????????? ?????????????????? ???????????????? ?????? ?????????????????? ?????????????? ???????????? ?????? ????????????????????????. ???????????????? ?????? ????????????????????, ???????????? ???????? ???????????? ?????????????? ???????????????? ?????????????? ???? ?????????????????????? ??????????????????????. + + + + + ?????????????? ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ?????????????? +D - ?? ?????????????? ????????????????. +O - ?? ?????????????? ???????????????? ?????????????????? ??????????. +??????????????????????, ???????? ???????????? ???????????????? ???????????????? ???????????????? ?????????????????????? ???????????????????????? ?????????? + + + + + + + + + + + ???????????????????? ?? ?????????????????????? ???????????? + + + + + + + ???????????? ???? ?????? + + + + + ?????????? ?????????????????????? ?????? ???????? ?????? ???????????????? + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ?????????????????????????? ???????????????????????????????????? ???????? ???????????? + + + + + + + + ???????????????????? ?? ?????????????????? ?????????????????????? ???????????????????????? ???????????? + + + + + + + ???????????? ???? ?????? + + + + + ???????????????? ?????????????????????? ?????? ???????? ?????? ???????????????? + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ?????????????????????????? ?????????????????? ?????????????????????? ???????????????????????? ???????????? + + + + + + + + + + + + + + ???????????????????????????? ?????????????? ???????????????????????????????? + + + + + + ?????????????? ???? ???????????????? ?????????????????? ??/?????? ???????????????????????? ?????????????????????? ???? ???????????????? ???????????????? (?????????????????????? ??????????) ??/?????? ???? ???????????????? ?? ?????????????????? ?????????????? ?????????????????? ?? ?????????????????????????????? ?????????? + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ???????? ???????????????????? ?? ???????? + + + + + ?????????????? ???????????????????????????????? ?? ???????????????????? ?? ???????????????? + + + + + + + + ?????????????? ???????????????? ?????????????????? ??/?????? ?????????????????????? ?????????????????????? ???? ???????????????? ???????????????? (?? ?????????????????????? ??????????) ??/?????? ???????????????? ?? ?????????????????? ?????????????? ?????????????????? ?? ?????????????????????????????? ?????????? + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ???????? ???????????????????? ?? ???????? + + + + + ?????????????? ???????????????????????????????? ?? ???????????????????? ?? ???????????????? + + + + + + + + + + ?????????????? ???????????????? ???? ???????????????????????????? ???????? + + + + + + ?????????????????????????? ???????????????????????????? ?????????????? ???? ???????? ?????? ?????? ?????????????????????? ???????? ?????????????????? ????????????????. + + + + + ???????? ?????????????????? ???????????????? + + + + + + + ?????????? ???????????????? ??????????????(????) ???????????????????????? ???? ?????????????????? ?????????????? ??????????. + + + + + ???????????? ???????????????? ?????????????? ?????????????????? ???? ???????????????????????????? ???????????????? ??????????. + + + + + + ???????????? ?????????????? + + + + + + ???????? ???????????? + + + + + ???????????????????? ???????????? + + + + + + + + ?????????? ?????????????? + + + + + + ???????? ??????????????????. ???????? ?????????? ?????????????? ???????????????? "?????????????????? ???????? ????????????", ???? ???????? ?????????????????????? ?????????????????? "-1". + + + + + ???????????????????? ???????????? + + + + + + + + + + + ?????????????????? ???????????????? ?????????????????? ?????????????? ?????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ?????????? ???????? ???????????? + + + + + +???????????? ???? ?????? "?????????????????? ???????????????????? ????????????????" (???????????????????? ?????????? 58). + + + + + ???????????? ?????????????? ???????????????? + + + + ?????????????? ???????????? + + + + + ?????????????????????? ?????? ???????????????????????? ???????????? (????????????????) ?????????????????? ?? ?????? + + + + + + ?????????????????????? (?????????????????????? ???????? ?????? ???????????????????????????? ??????????????????????????????) + + + + + ???????????????????? ???????? + + + + + ???? ?????????????????? ???????????????????????? ?????? ???????????????????????? + + + + + + + + ?????????????????????? ?????? ???????????????????????? ???????????? ???????? (????????????????????????) + + + + + + ?????????????????????? (?????????????????????? ???????? ?????? ???????????????????????????? ??????????????????????????????) + + + + + ???????????????????? ???????? + + + + + ???? ?????????????????? ???????????????????????? ?????? ???????????????????????? + + + + + + + + ?????????????????????? ?????????????????????? + + + + + + + + + + ?????????????????????????? ?????????????????????????? ???????????????????????????????? ???????? + + + + + + ???? ?????????????????? ???????????????????????? ?????? ???????????????????????? + + + + + ?????????????????????? (?????????????????????? ???????? ?????? ???????????????????????????? ??????????????????????????????) + + + + + ???????????????????? ???????? + + + + + + + + ?????????????????????? ?????????????????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + ???? ?????????????????? ???????????????????????? ?????? ???????????????????????? + + + + + ?????????????????????? (?????????????????????? ???????? ?????? ???????????????????????????? ??????????????????????????????) + + + + + ???????????????????? ???????? + + + + + + + + + ?????????????? ?? ???????????????? ?????????????????? ???????????? ?? ???????????? ???????????? ???????????????? ???????????????? + + + + + ?????? ?????????????? ?????????????????? ???????????? ?? ???????????? ????????????: +D - ?? ?????????????? ????????????????. +O - ?? ?????????????? ???????????????? ?????????????????? ??????????. + + + + + + + + + + + ?????????????? ???????????????? + + + + + + ?????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + + + ???????????????????????? ????????????. ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 239) + + + + + + + + + + ???????? ???????????? ???????????????? ?????????????? + + + + + ???????? ?????????????????? ???????????????? ?????????????? + + + + + + + + + ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ????????????????????????: +R(SO)- ??????. +P(roprietor)-?????????????????????? ???????????????????????? ??????????. + + + + + + + + + + + ???????????????????? ???????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ???? ???????????????????? ???????????????????????? ?????????????????????????????????? ??????????????????????. + + + + + ???????????????????? ???????????????? ???????????????????????? ???????????????? ?? ?????????????????????????? ???????????? ??????????????: +D - ?? ?????????????? ????????????????. +O - ?? ?????????????? ???????????????? ?????????????????? ??????????. + + + + + + + + + + + ?????????????? "???????????????????? ?????????????????????????? ?????????? ???????????????? ?????????????????? ?????????? ?? ???????????????????????????????? ?????????????? ??????????????????????????" + + + + + ???????????????????? ???????????????? (???????????????????????? ?? ?????????????????????? ?????????????????????? ????????????????). ???????????????????? ??????????????????????, ???????? ???????????????????? ?????????????? ?? ?????????????? ????????????????. + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ???????????????????? ????????????????. ???????????? ???? ?????? "???????????????????? ???????????????? ???????????????????????? ????????????????" (???????????????????? ?????????? 276) + + + + + ???????????????? ???????????????????? ???????????????? + + + + + + + + ?????????? + + + + + + ???????????? ?????????????????? + + + + + ?????????? ?????????????????? + + + + + + + + + ???????????????? ?????????????????????????? + + + + + + + + ???????????????????????????? ???????????????????? + + + + + + + + ???????? ???????????????????? ???????????????? ?????????????????????????? ?????????????? (???? ???????????????????????? ?? ?????????????????????? ?????????????????????? ????????????????). ???????????????????? ??????????????????????, ???????? ???????????????????? ?????????????? ?? ?????????????? ????????????????. + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ???????????????????????? ???????????????????? + + + + + ???????????????? ???????????????????? ???????????????? + + + + + + + + + + ???????????????????????????? ???????????????????? + + + + + + + + ???????????????? ?????????? ?? ?????????? ???????????? ???? ??????. ???????????????????? ??????????????????????, ???????? ???????????????? ?????????? ?? ?????????? ???????????? ?????????????? ?? ?????????????? ????????????????. + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ???????????????? ?????????? + + + + + ?????????????? ??????????????????. +?????????????????????? ?????? ???236 "?????????? ???????? ???????????????????????? ????????????, ?????????????????????????????? ?????????????? ?? ???????????? ?????????????????? ???????????? ????????????" + + + + + ?????????? ???????????? + + + + + + + + ???????????? ?????????????????????????????? ?????????? ???????????????????????????? ?????????????????????? ?????? ???????????????? ?????????????????? ???????????????? ?????? ?????????????????? ?????????????? ???????????? ?????? ????????????????????????. + + + + + ???????????????????? ?? ???????????? ???????????? + + + + ???????? ?????????????????????????? (??????????????????????) ?????????????????? ????????????????????, ???? ??????????????. + + + + + + ???????? ?????????????????????????? (??????????????????????) ?????????????????? ???????????????????? (??????????), ???? ??????????????. ???????? ?????????? ?????????????? ???????????????? "?????????????????? ???????? ????????????", ???? ???????? ?????????????????????? ?????????????????? "-1". + + + + + + + + + + + + ?????? ??????????: +C (urrrent) - ???????????????? ???????????????????? ????????????. +N (ext) - ???????????????????? ???????????? ???? ??????????????????. + + + + + + + + + + + + + + ???????? ???????????????? ??????????, ???? ??????????????. + + + + + + ???????? ???????????????? ?????????? (??????????), ???? ??????????????. ???????? ?????????? ?????????????? ???????????????? "?????????????????? ???????? ????????????", ???? ???????? ?????????????????????? ?????????????????? "-1". + + + + + + + + + + + + ?????? ??????????: +C (urrrent) - ???????????????? ???????????????????? ????????????. +N (ext) - ???????????????????? ???????????? ???? ??????????????????. + + + + + + + + + + + + + + ???????? ???????????????????????????? ???????????????????? ?? ?????????????????????? ????????????????, ???? ??????????????. + + + + + + ???????? ???????????????????????????? ???????????????????? ?? ?????????????????????? ???????????????? (??????????), ???? ??????????????. ???????? ?????????? ?????????????? ???????????????? "?????????????????? ???????? ????????????", ???? ???????? ?????????????????????? ?????????????????? "-1". + + + + + + + + + + + + ?????? ??????????: +C (urrrent) - ???????????????? ???????????????????? ????????????. +N (ext) - ???????????????????? ???????????? ???? ??????????????????. + + + + + + + + + + + + + + + + + ?????????????? ???????????????? ?????????????????? ?????????? ???? ???????????????? ???????????????????????????????? + + + + + + + ???????????????????? ?? ???? ?? ???? ???? ?????? + + + + + + + + ?????? ?????????????? ???????????????????????????? (?????????????????????? ?????? ???????????????????????? ???????????????? "???????????????? ??????????????" ?? "?????????????? ????????") + + + + + + ????????????????/???????????????? + + + + + + + + + + + ????????????????????????????????/???????????????????????????????????? + + + + + + + + + + + + + + + + + + + + ?????????????? "???????????????????? ?????????????????????????? ?????????? ?????????????? ?????????????????? ?????????? ?? ???????????????????????????????? ?????????????? ??????????????????????????" + + + + + ???????????????????? ???????????????? (???????????????????????? ?? ?????????????????????? ?????????????????????? ????????????????). + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????????? ?? ???? ?? ???? ???? ?????? + + + + + ???????????????????? ????????????????. ???????????? ???? ?????? "???????????????????? ???????????????? ???????????????????????? ????????????????" (???????????????????? ?????????? 276) + + + + + ???????????????? ???????????????????? ???????????????? + + + + + + + + + + ???????????????????????????? ???????????????????? + + + + + + + + ???????? ???????????????????? ???????????????? ?????????????????????????? ?????????????? (???? ???????????????????????? ?? ?????????????????????? ?????????????????????? ????????????????). + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????????? ?? ???? ?? ???? ???? ?????? + + + + + ???????????????????????? ???????????????????? + + + + + ???????????????? ???????????????????? ???????????????? + + + + + + + + + + ???????????????????????????? ???????????????????? + + + + + + + + ???????????????? ?????????? ?? ?????????? ???????????? ???? ??????. + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????????? ?? ???? ?? ???? ???? ?????? + + + + + ???????????????? ?????????? + + + + + ?????????????? ??????????????????. +?????????????????????? ?????? ???236 "?????????? ???????? ???????????????????????? ????????????, ?????????????????????????????? ?????????????? ?? ???????????? ?????????????????? ???????????? ????????????" + + + + + ?????????? ???????????? + + + + + + + + ?????????????????????????? ?????????????? ?????????????????? ?????????? ?? ?????? ?????? + + + + + ?????????????????????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + ?????????????????????????? ???????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + ?????????? ???????????? ???????????????? + + + + + + + + ???????????? ???????????? ???????????????? + + + + + + ???????????????? + + + + + ???????????????????? + + + + + ???????????? + + + + + ???????????????????? ???????????????????????? + + + + + + + + ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ????????????????????????: +R(SO)- ??????. +P(roprietor)-?????????????????????? ???????????????????????? ??????????. ??????????????????????, ???????? ?????????????? ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ?????????????? ?? ?????????????? ?????? + + + + + + + + + + + ???????????????????? ???????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ???? ???????????????????? ???????????????????????? ?????????????????????????????????? ??????????????????????. ?????????????????????? ?????? ????????????????????, ???????? ?? tns:CountingResource ??????????????"??????" . ?? ?????????????????? ?????????????? ???? ??????????????????????. + + + + + + + + + ?????????????? ???????????????????????????????? (????????????) + + + + + + ?????????????? ???? ???????????????? ?????????????????? ??/?????? ???????????????????????? ?????????????????????? ???? ???????????????? ???????????????? (?????????????????????? ??????????) ??/?????? ???? ???????????????? ?? ?????????????????? ?????????????? ?????????????????? ?? ?????????????????????????????? ?????????? + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ???????? ???????????????????? ?? ???????? + + + + + ?????????????? ???????????????????????????????? ?? ???????????????????? ?? ???????????????? + + + + + + + + ?????????????? ???????????????? ?????????????????? ??/?????? ?????????????????????? ?????????????????????? ???? ???????????????? ???????????????? (?? ?????????????????????? ??????????) ??/?????? ???????????????? ?? ?????????????????? ?????????????? ?????????????????? ?? ?????????????????????????????? ?????????? + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ???????? ???????????????????? ?? ???????? + + + + + ?????????????? ???????????????????????????????? ?? ???????????????????? ?? ???????????????? + + + + + + + + + + ?????????????? ???????????????? ???? ???????????????????????????? ???????? + + + + + + ?????????????????????????? ???????????????????????????? ?????????????? ???? ???????? ?????? ?????? ?????????????????????? ???????? ?????????????????? ????????????????. + + + + + ???????? ?????????????????? ????????????????. ?????????????????????? ?????? ????????????????????, ???????? ?????????????? ???????????????? ?? AutomaticRollOverOneYear + + + + + + + ???????????? ???????????????? ?????????????? ?????????????????? ???? ???????????????????????????? ???????????????? ??????????. ?????????? ???????? ???????????? ????????????, ???????? ???????? VolumeDepends = true -??????- ???????? MeteringDeviceInformation = ??true?? + + + + + + ???????????? ?????????????? + + + + + + ???????? ???????????? + + + + + + + + + + + ???????????????????? ???????????? + + + + + + + + ?????????? ?????????????? + + + + + + ???????? ??????????????????. ???????? ?????????? ?????????????? ???????????????? "?????????????????? ???????? ????????????", ???? ???????? ?????????????????????? ?????????????????? "-1". + + + + + + + + + + + + ???????????????????? ???????????? + + + + + + + + + + + ?????????????????? ???????????????? ?????????????????? ?????????????? ?????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ?????????? ???????? ????????????. +???????????????????? ???????????????? ???????????? ????????: ?? ???????????????????? ?????????????????????? ?????????????????????? ?????????????????? ???????????????????? ???????????????? ?????????????????? ?????????????????? ???????????????????????????? ?????? ?????????? (????????????????????) ???????????????? ?????????? ?? ?????????? ???????? ?????????????? ?????? ?? ???????????????????? ?????????????????????? ?????????????????????? ?????????????????? ???????????????????? ???????????????? ?????????????????? ?????????????????? ???????????????????????????? ?????? ?????????? (????????????????????) ???????????????? ?????????? ???????????? ?? ??????????, ?????????????????????????? ?? ????????????????, ?????? ?? ?????????? ???????? ????????????, ???????? ?? ???????????????? ???????????????????? ?????????????? ???????????????????? ???????????????? ?????????????????? ???????????????? ?????????? ?? ?????????? ???????? ?????????????? ?? ???????????????? Period + + + + + +???????????? ???? ?????? "?????????????????? ???????????????????? ????????????????" (???????????????????? ?????????? 58). + + + + + ???????????? ?????????????? ???????????????? + + + + ?????????????? ???????????? + + + + + ?????????????????????? ?????? ???????????????????????? ???????????? (????????????????) ?????????????????? ?? ?????? + + + + + + ?????????????????????? (?????????????????????? ???????? ?????? ???????????????????????????? ??????????????????????????????) + + + + + ???????????????????? ???????? + + + + + ???? ?????????????????? ???????????????????????? ?????? ???????????????????????? + + + + + + + + ?????????????????????? ?????? ???????????????????????? ???????????? ???????? (????????????????????????) + + + + + + ?????????????????????? (?????????????????????? ???????? ?????? ???????????????????????????? ??????????????????????????????) + + + + + ???????????????????? ???????? + + + + + ???? ?????????????????? ???????????????????????? ?????? ???????????????????????? + + + + + + + + ?????????????????????? ?????????????????????? + + + + + + + + + + ?????????????????????? ?????????????????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + ???? ?????????????????? ???????????????????????? ?????? ???????????????????????? + + + + + ?????????????????????? (?????????????????????? ???????? ?????? ???????????????????????????? ??????????????????????????????) + + + + + ???????????????????? ???????? + + + + + + + + ?????????????????????????? ?????????????????????????? ???????????????????????????????? ???????? + + + + + + ???? ?????????????????? ???????????????????????? ?????? ???????????????????????? + + + + + ?????????????????????? (?????????????????????? ???????? ?????? ???????????????????????????? ??????????????????????????????) + + + + + ???????????????????? ???????? + + + + + + + + + ?????????????? ?? ???????????????? ?????????????????? ???????????? ?? ???????????? ???????????? ???????????????? ???????????????? + + + + + ?????? ?????????????? ?????????????????? ???????????? ?? ???????????? ????????????: +D - ?? ?????????????? ????????????????. +O - ?? ?????????????? ???????????????? ?????????????????? ??????????. ?????????????????????? ?????? ?????????????? ?? ???????????????? ?????????????????? ???????????? ?? ???????????? ???????????????? ????????????????. + + + + + + + + + + + ?????????????? ???????????????? + + + + + + + + + + + + + + ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ????????????????????????: +R(SO)- ??????. +P(roprietor)-?????????????????????? ???????????????????????? ??????????. +??????????????????????, ???????? ?????????????? ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ?????????????? ?? ?????????????? ???????????????? + + + + + + + + + + + ???????????????????? ???????????????? ???????????????????????? ???????????????? ?? ?????????????????????????? ???????????? ??????????????: +D - ?? ?????????????? ????????????????. +O - ?? ?????????????? ???????????????? ?????????????????? ??????????. + + + + + + + + + + + ?????????????? "???????????????????? ?????????????????????????? ?????????? ???????????????? ?????????????????? ?????????? ?? ???????????????????????????????? ?????????????? ??????????????????????????". ?????????? ???????? ????????????, ???????????? ???????? ???????????????????? ???????????????? ???????????????????????? ???????????????? ?????????????? ?? ?????????????? ???????????????? ?? ?????????????? ???????????????? ???????????????? ???????????????????????? ???????????? "???????????????? ??????????????????????????" ??/?????? "?????????????? ??????????????????????????" + + + + + ???????????????????? ???????????????? (???????????????????????? ?? ?????????????????????? ?????????????????????? ????????????????). ?????????????????????? ?????? ????????????????????, ???????? ???????????????????? ???????????????? ?????????????????????? ?? ?????????????? ????????????????. ?????? ???????? ???? ?? ???? "?????????????? ??????????????????????????" ?? "???????????????? ????????" ?????????????????????? ???????????????????? ????????????????????, ???????????????????????? ?????? ???? "?????????????? ????????" ?? ?????????????????????? ?????????????????????? ???????????????? ???????????????????????? ???????????????? ?????? ???????? ???? ?? ???? "?????????????? ??????????????????????????" ?? "???????????????? ??????????????" ???????????????????? ?? ?????????????????????? ???????????????? ???? ?????????????????????? ???????????? ?? ?????? ????????????, ???????? ?????? ???????????????? (???????? ???????????????????? ?????????????? ?? ?????????????? ????????????????) ?????? ?????? ?? ???????????????? (???????? ???????????????????? ?????????????? ?? ?????????????? ??????) ?????????? ?????????????? ???????? ???? ?? ???? "?????????????? ??????????????????????????" ?? "???????????????? ????????" + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ???????????????????? ????????????????. ???????????? ???? ?????? "???????????????????? ???????????????? ???????????????????????? ????????????????" (???????????????????? ?????????? 276) + + + + + ???????????????? ???????????????????? ???????????????? + + + + + + + + + + ???????????????????????????? ???????????????????? + + + + + + + + ???????? ???????????????????? ???????????????? ?????????????????????????? ?????????????? (???? ???????????????????????? ?? ?????????????????????? ?????????????????????? ????????????????). + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ???????????????????????? ???????????????????? + + + + + + + ?????????????????????????? ???????????????? ???????????????????? ???????????????? + + + + ?????????? + + + + + ???????????????? + + + + ???????????? ?????????????????? + + + + + ?????????? ?????????????????? + + + + + + + + + ???????????????? ?????????????????????????? + + + + + + ???????????????????????????? ???????????????????? + + + + + + + + ???????????????????? ?? ?????????????????????????? ??????????????. ???????????????? ?????? ???????????????????? ????????????, ???????? ?? ???????????????? ???????????????? ???????? ???? ?????? ?????????????????????? ???????????? "???????????????? ??????????????". + + + + + + ?????????????????????? ?????????????????? ?????????????? + + + + + ?????????????????????? ?????????????????????????? ?? ???????????????? ???????????????????????? + + + + + + + + + + + ?????????????????????? ?????????????????????????? ?? ???????????????? ???????????????????????? + + + + + + + + + + + + + + ???????????????????? ?? ???????????? ???????????? + + + + ???????? ?????????????????????????? (??????????????????????) ?????????????????? ????????????????????, ???? ??????????????. ???????????????? ????????????????????????, ???????? ???????????? ?????????????? ???????????????? ???????????????????? ???? "?????????????????????? ??????????????????????" ?????? ???????? ?????????????????? ???????? tns:MeteringDeviceInformation ???? ??????????????????????, ???????? OneTimePayment = true + + + + + + ???????? ?????????????????????????? (??????????????????????) ?????????????????? ???????????????????? (??????????), ???? ??????????????. ???????? ?????????? ?????????????? ???????????????? "?????????????????? ???????? ????????????", ???? ???????? ?????????????????????? ?????????????????? "-1". + + + + + + + + + + + + ?????? ??????????: +C (urrrent) - ???????????????? ???????????????????? ????????????. +N (ext) - ???????????????????? ???????????? ???? ??????????????????. + + + + + + + + + + + + + + ???????? ???????????????? ??????????, ???? ??????????????. ???????????????? ????????????????????????, ???????? ???????????? ?????????????? ???????????????? ???????????????????? ???? "?????????????????????? ??????????????????????" ?? ?????????????? ???? ???????????????? ?????????????????? ??/?????? ???????????????????????? ?????????????????????? ???? ???????????????? ???????????????? ?????? ?? ?????????????????????? ?????????? ?? ?? ???????? OneTimePayment = false. ???? ??????????????????????, ???????? OneTimePayment = true + + + + + + ???????? ???????????????? ?????????? (??????????), ???? ??????????????. ???????? ?????????? ?????????????? ???????????????? "?????????????????? ???????? ????????????", ???? ???????? ?????????????????????? ?????????????????? "-1". + + + + + + + + + + + + ?????? ??????????: +C (urrrent) - ???????????????? ???????????????????? ????????????. +N (ext) - ???????????????????? ???????????? ???? ??????????????????. + + + + + + + + + + + + + + ???????? ???????????????????????????? ???????????????????? ?? ?????????????????????? ????????????????, ???? ??????????????. ???????????????? ????????????????????????, ???????? ???????????? ???????????????? ???????????????? ???????????????? ???????????????????????? ????????????????????????, ?????????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ?????????????????????????? = ?????????? ?? ?????????????? ???? ???????????????? ?????????????????? ??/?????? ???????????????????????? ?????????????????????? ???? ???????????????? ???????????????? ?????? ?? ?????????????????????? ??????????. + + + + + + ???????? ???????????????????????????? ???????????????????? ?? ?????????????????????? ???????????????? (??????????), ???? ??????????????. ???????? ?????????? ?????????????? ???????????????? "?????????????????? ???????? ????????????", ???? ???????? ?????????????????????? ?????????????????? "-1". + + + + + + + + + + + + ?????? ??????????: +C (urrrent) - ???????????????? ???????????????????? ????????????. +N (ext) - ???????????????????? ???????????? ???? ??????????????????. + + + + + + + + + + + + + + + ???????????????????? ???????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ???? ???????????????????? ???????????????????????? ?????????????????????????????????? ??????????????????????. ?????????????????????? ?????? ????????????????????, ???????? ?? tns:CountingResource ??????????????"??????" . ?? ?????????????????? ?????????????? ???? ??????????????????????. + + + + + ?????????? ???????????????? ??????????????(????) ???????????????????????? ???? ?????????????????? ?????????????? ??????????. ???????? ???? ??????????????????????, ???????? ???????????? ?????????????? ???????????????? = ?????????????????????? ?????????????????????? ?????? ?? ???????? OneTimePayment = true. + + + + + ???????????? ?????????????????????????????? ?????????? ???????????????????????????? ?????????????????????? ?????? ???????????????? ?????????????????? ???????????????? ?????? ?????????????????? ?????????????? ???????????? ?????? ????????????????????????. ???????????????? ?????? ????????????????????, ???????????? ???????? ???????????? ?????????????? ???????????????? ?????????????? ???? ?????????????????????? ??????????????????????. + + + + + ?????????????? ???????????????????? ???????????????????? ?? ?????????????????????? ???? ???????????????????????? ???????????? ?????????????? +D - ?? ?????????????? ????????????????. +O - ?? ?????????????? ???????????????? ?????????????????? ??????????. +??????????????????????, ???????? ???????????? ???????????????? ???????????????? ???????????????? ?????????????????????? ???????????????????????? ?????????? + + + + + + + + + + + ???????????? ?? ?????????????? ??/?????? ???????????????????? ?????????????????????? ???????????????????????? ??????????, ?????????????????????? ?????? ???????? ???????????????? ?????????????????? ?????????? ???????????????? ?? ???????????????? ????. ?????????????????????? ?????? ?????????????? ???????? ???? ???????????? ???????????? ???????????? / ?????????????????? ?? ???????????????? ???? + + + + + + ?????????????? ????, ?? ?????????????? ?????????????????????? ???????????? ??/?????? ?????????????????? ?????????????????????? ???? (?? ???????????????????? ???????????? ???????????? ???????? ???????????????????????????? ?????????????? ?????? ?? ???????? ???????????????? ????) + + + + + ???????????????????? ?? ?????????????????????? ???????????? + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ?????????????????????????? ???????????????????????????????????? ???????? ???????????? + + + + + + + + ???????????????????? ?? ?????????????????? ?????????????????????? ???????????????????????? ???????????? + + + + + + ???????????? ???? ???????? ???? ???????????????????????? ???????????? ?? ?????????????? ???? ???????????????? ???????????????? + + + + + ?????????????????????????? ?????????????????? ?????????????????????? ???????????????????????? ???????????? + + + + + + + + + + ???????????????? ???????????????????????? ???????? ???? ?????????????????????????????? ?????????????? ?? ???????????????????????????????????? ???????? ???????????? ?? ???????????? ???????????? ???????????????? ???? + + + + + + + + ???????????????? ???????????????????????? ???????? ???? ?????????????????????????? ?????????????? ?? ?????????????????? ?????????????????????? ?? ???????????? ???????????? ???????????????? ???? + + + + + + + + + + + + + ?????????????????????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + ?????????????????????????? ???????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + ?????????? ???????????? ???????????????? + + + + + + + + ???????????? ???????????? ???????????????? + + + + + + ???????????????? + + + + + ???????????????????? + + + + + ???????????? + + + + + ???????????????????? ???????????????????????? + + + + + + + + ?????????????????? ???????????????? + + + + + + ???? ?????????????? ?? ???????? + + + + + ?????????????????????? + + + + + ?????????? ???????? ???????????????? + + + + + + + + + ?????????????? ???? ???????????????? ?????????????????? ??/?????? ???????????????????????? ?????????????????????? ???? ???????????????? ???????????????? ?????? ?? ?????????????????????? ?????????? + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ???????? ???????????????????? ?? ???????? + + + + + + + + ?????????????? ???????????????? ?????????????????? ??/?????? ?????????????????????? ?????????????????????? ???? ???????????????? ???????????????? ?????? ?? ?????????????????????? ?????????? + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ???????? ???????????????????? ?? ???????? + + + + + + + + + + ???????????? ?????????????? ???????????????? (??????) + + + + + + + + + + ???????????? ?????????????? ???????????????? + + + + + + ?????????????????????? ?????????????????????? + + + + + + + + + + ?????????????? ???????????? + + + + + ?????????????? ???????????????? ?? ???????????????????????????? + + + + + + + + + ?????????????? ???????????????? + + + + + + ?????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + + + ???????????????????????? ????????????. ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 239) + + + + + + + + + + ???????? ???????????? ???????????????? ?????????????? + + + + + ???????? ?????????????????? ???????????????? ?????????????? + + + + + + + + + ???????????????????????? ???????? ?????????????? ????????????????????????: +R(SO)- ??????. +P(roprietor)-?????????????????????? ???????????????????????? ??????????. + + + + + + + + + + + ???????????????????? ?? ???????????? ???????????? + + + + ???????? ?????????????????????????? (??????????????????????) ?????????????????? ????????????????????, ???? ??????????????. + + + + + + ???????? ?????????????????????????? (??????????????????????) ?????????????????? ???????????????????? (??????????), ???? ??????????????. ???????? ???????????? "?????????????????? ???????? ????????????", ???? ?? ???????? ?????????????????????? ???????????????? "-1". + + + + + + + + + + + + ?????? ??????????: +C (urrrent) - ???????????????? ???????????????????? ????????????. +N (ext) - ???????????????????? ???????????? ???? ??????????????????. + + + + + + + + + + + + + + ???????? ???????????????? ??????????, ???? ??????????????. + + + + + + ???????? ???????????????? ?????????? (??????????), ???? ??????????????. ???????? ???????????? "?????????????????? ???????? ????????????", ???? ?? ???????? ?????????????????????? ???????????????? "-1". + + + + + + + + + + + + ?????? ??????????: +C (urrrent) - ???????????????? ???????????????????? ????????????. +N (ext) - ???????????????????? ???????????? ???? ??????????????????. + + + + + + + + + + + + + + ???????? ???????????????????????????? ???????????????????? ?? ?????????????????????? ????????????????, ???? ??????????????. + + + + + + ???????? ???????????????????????????? ???????????????????? ?? ?????????????????????? ???????????????? (??????????), ???? ??????????????. ???????? ???????????? "?????????????????? ???????? ????????????", ???? ?? ???????? ?????????????????????? ???????????????? "-1". + + + + + + + + + + + + ?????? ??????????: +C (urrrent) - ???????????????? ???????????????????? ????????????. +N (ext) - ???????????????????? ???????????? ???? ??????????????????. + + + + + + + + + + + + + + + ???????????? ?????????? ?????????????? ?????????????????? ???? ????. + + + + + + ???????????? ?????????????? + + + + + + ???????? ???????????? + + + + + + + + + + ???????????????????? ???????????? + + + + + + + + ?????????? ?????????????? + + + + + + ???????? ??????????????????. ???????? "?????????????????? ???????? ????????????", ???? ?? ???????? ?????????????????????? ???????????????? "-1". + + + + + + + + + + ???????????????????? ???????????? + + + + + + + + + + + ?????????????? "???????????????????? ?????????????????????????? ?????????? ???????????????? ?????????????????? ?????????? ?? ???????????????????????????????? ?????????????? ??????????????????????????". ?????????? ???????? ????????????, ???????????? ???????? ???????????????????? ???????????????? ???????????????????????? ???????????????? ?????????????? ?? ?????????????? ???????????????? ?? ?????????????? ???????????????? ???????????????? ???????????????????????? ???????????? "???????????????? ??????????????????????????" ??/?????? "?????????????? ??????????????????????????" + + + + + ???????????????????? ?? ?????????????????????? + + + + + + + + ???????????? ???? ?????? "54 ?????????????? ?????????????????????? ????????????????" (???????????????????? ?????????? 54) + + + + + + + + + + ???????????????????? ???? ?????????????????????????? + + + + + ???????????? ?????????????????? ?????????? ?? ???????????????? ???????????????????????????????? + + + + + + + ?????????????? ???????????????? + + + + + ?????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + + + ???????????????????????? ????????????. ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 239) + + + + + + + + + + ???????? ???????????? ???????????????? ?????????????? + + + + + ???????? ?????????????????? ???????????????? ??????????????. ???? ??????????????????????, ???????? ??????????????, ?????? ?????????????? ???????????????? ???? ???????????????????????????? ???????? (IndefiniteTerm = true) + + + + + ???????????????? ?????????? ?? ?????????? ???????????? ???? ?????? + + + + + + ???????????????? ?????????? + + + + + ?????????????? ??????????????????. +?????????????????????? ?????? ???236 "?????????? ???????? ???????????????????????? ????????????, ?????????????????????????????? ?????????????? ?? ???????????? ?????????????????? ???????????? ????????????" + + + + + ?????????? ???????????? + + + + + + + + + + + + + + + ?????????????? ???????????????? ?????????????????? ?????????? ???? ???????????????? ???????????????????????????????? + + + + + ?????? ????????: MKD - ?????????????????????????????? ?????? ZHD - ?????????? ?????? ZHDBlockZastroyki - ?????????? ?????? ?????????????????????????? ?????????????????? + + + + + + + + + + + + ?????????? ???????? +???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ???????????????? (??????????????????) / ?????????? ?????????? + + + + + ?????????? ?????????????? + + + + + ?????????????????????????? ?????????????????? + + + + + ?????????????????????????? ?????????? ???????????? ???????? + + + + + ?????????????????????????? ?????????????? + + + + + ???????????????????? ?? ???? ?? ???? ???? ?????? + + + + + + + + + + + + + + ?????????????? "???????????????????? ?????????????????????????? ?????????? ?????????????? ?????????????????? ?????????? ?? ???????????????????????????????? ?????????????? ??????????????????????????" + + + + + + + ???????????? ?????????????? ?????? ???????????????????????????? ??????????????. ???????????????? ???????????? 11.6.0.2, 13.2.2.0 + + + + + + + + + + + + + ?????????????????????????? ?????????????? ?? ?????? ?????? + + + + + + + ????????????????, ???????????????????????????? ?????????????? + + + + + + + ???????? + + + + + + + + + + + ????????. ?????????????????????? ???? ?????????????????????? ???364 "???????? ?????????????????? ??????????????????" + + + + + + ?????????????? ???????????????? ?????????????? + + + + + ?????????? ?????????????? + + + + + + + + + + + ???????????????? + + + + ?????? ???????? (?? ??????????????????) + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????????????????? ?????????????????? ?? ?????? + + + + + + ?????????????????????????? ?????????????????? ?????????????????????????? + + + + + + ?????????????? ???????? + + + + + + ?????????? ?????????????????????????? + + + + + + + + + + + + ???????????????? ?????????????? ?? ???????????? ???????????? ?????????????????? ?????????????????????? + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + + + + ???????????????? ???????????????? ???? ???????????????? ???????????? ???????????????????????? ?????????? + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + + + + + + + ?????????????????????????? ??????????????????????-?????????????????? ???????????????????????? ?????????? + + + + + ?????????????????????????? ??????????????????????-???????????? ???????????????????????????????? ?????????????? + + + + + + ???????????? ???????????????????????? + + + + ???? ???????????????????? + + + + + + ?? ???????????? "??" + + + + + ?? ???????????? "????" + + + + + + + ?????????????????? ?????????????? + + + + + ?????????????????? ?????????????? ?????????????????? + + + + + ?????????????? "?????? ???????????????????? ?? ?????????????????? ????????????????????" + + + + + ???????????????????? ?????? ??????????????, ?????????????????????? ?? ?????????????????? ???????????????????? + + + + + + ??????????????, ?????? ?????????? ?????????????? ???? ?????????? 500 ???????????????? + + + + + ?????????????? ?????????????????????? ???????????????????? ?????????????????? ?? ?????????? + + + + + ???????????? ?????? ???????????????? ???? ???????????????????? ?????????????????????????? ?????????????? ???? ???????????????????????? web-???????????????? + + + + + + + + + + + + + + + + + ?????????????????? ?????????????? ?????????????????? + + + + + ???????????????? ?????????????? + + + + + ?????????? ?????????????? + + + + + + ?????????????? ???????????? + + + + + + + + + + + + + + + + + + + + + + + + + + + + ???????????? ?????????????????? ?????? (???????????????? ???????????? ???????????????? ??????????????????????????) + + + + + + + + + + ?????????????????????????? ???????????? ?????????????????? ?????? ?? ?????? ?????? + + + + + + + ???????????????? ?????? + + + + + + + + ???????????????????? ???????????????? + + + + + + + + + + + + + + + + + + ???????????????????? ???????????????? ?????? + + + + + ???????????????? ?????????????????? ?????????????????? + + + + + ?????????????? ???????????????? ?????? + + + + + ???????????????????????? ?????????????????????? ?? ?????? ?????????????????? ???????????????????? + + + + + + + + + + + + + + + + ???????????? ???????????? ??????????????????????, ???????????????????????? ?? ???????????????????????????? ??????????????, ???????????????? ???? ?????? ?????? + + + + + + + + + + ?????????????????????????? ?????????????????? ?? ???????????????????? ???????????? ???????????????? ?? ?????? ?????? + + + + + + ???????????????????? ?????????? ??????????????????????, ???????????????????????? ?? ???????????????????????????? ??????????????, ???????????????? ???? ?????? ?????? + + + + + + + + + + + + + + + ?????????????? ???????????????????? ?????? + + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ???????????? ???????????? ?????????????????? ?????? +???????????????????? ????????????????: +-Created-???????????? +-Posted-???????????????? +-Edited-???? ?????????????????? +-Annuled-?????????????????????? +-PostedFromAnotherSystem-???????????????? ???? ?????????????????????? ?? ???????????? ?????????????? + + + + + + + + + + + + + + + ?????????????????????????? ???????????? ?????????????????? ?????????????????????? + + + + + ???????????????? ?????????????????????????? ?????????????????? ?????????????????????? + + + + + + + + + + + ?????????? ???? ???????????? ???????????????? ???????????????????? ?????? + + + + + + + ???????????? ?????????????????? ?????? +???????????????????? ????????????????: +-Created-???????????? +-Posted-???????????????? +-Edited-???? ?????????????????? +-Annuled-?????????????????????? +-PostedFromAnotherSystem-???????????????? ???? ?????????????????????? ?? ???????????? ?????????????? + + + + + + + + + + + + + + ?????????????????????????? ???????????? ?????????????????? ?????????????????????? + + + + + ???????????????? ?????????????????????????? ?????????????????? ?????????????????????? + + + + + ???????????? ???????????? ?????????????????? ?????? +???????????????????? ????????????????: +-Created-???????????? +-Posted-???????????????? +-Edited-???? ?????????????????? +-Annuled-?????????????????????? +-PostedFromAnotherSystem-???????????????? ???? ?????????????????????? ?? ???????????? ?????????????? + + + + + + + + + + + + + + ?????????? ???????????? ?????????????????? + + + + + ???????? ?? ?????????? ???????????????????? ?????????????????? ???????????? ?????????????????? + + + + + ???????? ?? ?????????? ???????????????????? ???????????? ?????????????????? + + + + + + + + + ???????????? ?????????????????? ?? ?????????????????????? ?????? + + + + + + + + + + ?????????????????????????? ?????????????????? ?? ???????????????????? ?????? ?? ?????? ?????? + + + + + + + ???????????????????? ?????? ???????????????? ?????????????????? ?? ???????????????????? ?????? + + + + + ???????????????? ?????????????????????? ???? ?????????????? ???????????????????? 50% ?????????????? + +???????????????? ???????????????? ???????????? ?????? ?????????????????????? ?? ?????????? "?????????????? ?????????????????????? ?? ???????????????????????????? ??????????????" + + + + + ???????????????????????? ?????????????????????? ?? ?????? ?????????????????? ???????????????????? + + + + + + + + + + + + + + + + ?????????????? ?????????????????? ?? ???????????????????? ?????? + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ???????????????? ?????????????????????????? ?????????????????? ?? ???????????????????? ?????????????????????? + + + + + + + + + + + ?????????? ???? ???????????? ???????????????? ?????????????????? ?? ???????????????????? ?????? + + + + + + + ?????????????????????????? ?????????????????? ?? ???????????????????? ?????????????????????? + + + + + ???????????? ?????????????????? ?? ???????????????????? ?????? +???????????????????? ????????????????: +- Posted - ?????????????????? +- Goes - ?????????????????????? ???????? +- Finished - ?????????????????????? ?????????????????? +- MeetingCancelled - ???????????????? ???? ???????????????????? +- Cancelled - ?????????????????????? + + + + + ???????? ?? ?????????? ???????????????????? ???????????? ?????????????????? + + + + + ???????? ?? ?????????? ???????????????????? ?????????????????? ???????????? ?????????????????? + + + + + + + + + ???????????? ?????????????? ???????????????????????? ???? ???????????????? ?????????????????????? + + + + + + + + ?????????????? ???????????????????????? ???? ???????????????? ?????????????????????? + + + + + + + + ?????????????????????????? ???????????? ?????????????????? ?????? ?? ?????? ?????? + + + + + ?????????????????????????? ?????????????????? ?? ???????????????????? ?????? ?? ?????? ?????? + + + + + + ???????????????? ?????????????????????????? ?????????????? ???????????????????????? ???? ???????????????? ?????????????????????? + + + + + + ????????????????/?????????????????? ?????????????? + + + + + ???????????????????????? ?????????????? + + + + + + + + + + + + + + + + + + + + + + + ?????????????? ?????????????? ?????????????????????????? ???? ???????????????? ?????????????????????? +???????????????? ???????????? 13.0.0.2 ?? 13.1.8.1 + + + + + + + + ?????????????????????????? ???????????? ?????????????????? ?????????????????????? + + + + + ???????????????? ?????????????????????????? ?????????????????? ?????????????????????? + + + + + ???????????????? ?????????????????????????? ?????????????? ???????????????????????? ???? ???????????????? ?????????????????????? + + + + + ?????????????????????????? ?????????????????? ?? ???????????????????? ?????? + + + + + + + + + + + ?????????? ???? ???????????? ???????????????? ?????????????? ???????????????????????? ???? ?????????????? ?????????????????????? + + + + + ???????????????? ?????????????????????????? ?????????????? ???????????????????????? ???? ???????????????? ?????????????????????? + + + + + + ???????????????????????????? ???????????????? ?? ?????????????????????????? + + + + + + ???????????? ???????????????? + + + + + ?????????????????????? ?????????? ?????????????? ???????????????????????? + + + + + ?????????????? ???????????????????????? + + + + + + + ???????????? ???????????????????? ?????????????? ?????????????????????????? + + + + + + + + ???????????????????? ???????????? ?????????????????????????? + + + + + + + + + + ???????????????????? ???????????????????? ?????????? ???????????????????????? + + + + + + ???????????????? ?????????????????????????? ?????????????????? ?? ???????????????????? ???????????? ???????????????? ?????????????????????????? + + + + + ???????????????????? ?????????? ???????????????????????? + + + + + + + + ???????????? ?????????????????? ?? ?????????? ?????????????????????? ???????????????????? ?????????? ???????????????????????? + + + + + + ???????????????? ?????????????????????????? ?????????????????????? ???????????? ???????????????????????? ?? ?????? ?????? + + + + + ???????????????????? ?????????? ???????????????????????? + + + + + + + + ???????????????????????? ???????????????????? ?????????? ???????????????????????? + + + + + + ???????????????? ?????????????????????????? ?????????????????????? ???????????? ???????????????????????? ?? ?????? ?????? + + + + + + + + + + + + + + + + + + + + + + ?????????????? ???????????????????? ?????????????? ?????????????????????????? + + + + + + + + ???????????????? ???????????????????????????? ?????????????????? ?? ???????????????????? ???????????? ????????????????, ???????????????????? ???????????? ???? ?????????????? ???????????? ???????? ???????????????????????????? + + + + + ???????????????? ???????????????????????????? ?????????????? ?????????????????????????? + + + + + + + + + + + ???????????? ???? ?????????????? ?????????????? ???????????????????? ?? ???????????????? ?????????? + + + + + + + + ?????????? ???? + + + + + + ?????????? ???????? +???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + + ?????????????????????????? ???????????????? ?????????????????????? ???????????? ?? ?????? ?????? + + + + + ?????????????????????????? ???????????? ???????????????? ?????????????????????? ???????????? ?? ?????? ?????? + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? "??" + + + + + ???????? ???????????????????? "????" + + + + + ??????: +(D)WELLING_APARTMENT - ?????????????? ?????????????????????? ?????????? ???????????? ?????????????????? +STATE_(M)UNICIPAL_FUND - ?????????????? ?????????? ???????????? ?????????????????? ???????????????????????????????? ?????? ???????????????????????????? ?????????????????? ?????????? +(S)OCIAL_FUND - ?????????????? ?????????? ???????????? ?????????????????? ?????????????????? ?????????? ?????????????????????? ?????????????????????????? + + + + + + + + + + + + + + + + + + + + + + + + + ?????????? ???? ???????????? ???????????????? ?????????????? ???????????????????? ?? ???????????????? ?????????? + + + + + ?????????????????????????? ???????????????? ?????????????????????? ???????????? ?? ?????? ?????? + + + + + ?????????????????????????? ???????????? ???????????????? ?????????????????????? ???????????? ?? ?????? ?????? + + + + + ?????????????????? ????????????????. ?????????????????????? ?????? ???????????????? ?? ?????????????? "??????????????????" + + + + + + ???? ?????????????? ?? ???????? + + + + + ?????????????????????? + + + + + ?????????? ???????? ???????????????? + + + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ???????????????????? ?? ?????????????????????? + + + + + + + + ???????????? ???? ?????? "54 ?????????????? ?????????????????????? ????????????????" (???????????????????? ?????????? 54) + + + + + + + + + + ?????????????????????????? + + + + + ??????: +(D)WELLING_APARTMENT - ?????????????? ?????????????????????? ?????????? ???????????? ?????????????????? +STATE_(M)UNICIPAL_FUND - ?????????????? ?????????? ???????????? ?????????????????? ???????????????????????????????? ?????? ???????????????????????????? ?????????????????? ?????????? +(S)OCIAL_FUND - ?????????????? ?????????? ???????????? ?????????????????? ?????????????????? ?????????? ?????????????????????? ?????????????????????????? + + + + + + + + + + + + + + ???????????? ???? ?????????????? ?????????????????? ?????????? + + + + + + ?????????? ???????? +???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ???????????????? (??????????????????) + + + + + ?????????? ?????????????? (?????????????????????? ?? ???????????? ???????????????? ?????????????????????????? ??????????????????) + + + + + + + + ?????????????????????????? ???????????????????????????????????? ?????????????????????? ?????????????????????? ?????????????? (???????????? ?????????????? ????????????????) + + + + + + + ?????? ?????????????? ???????????????????? ???? ?? ?????? ?????? + + + + + + + ???????????????? ???????????? + + + + + + + + + ?????? ?????????????? ???????????????????? ???????????? ?? ?????? ?????? + + + + + + + ???????????????? ???????????? + + + + + + + + + ?????????????? ?????????????? ?????????????????????????? ?????????????????? + + + + + + + + + + + + + + + + + + ?????????????????????? ?????????? ???? ?????????????? ?????????????? ?????????????????? ?????????? ?????? ???? + + + + + ?????????????????????? ?????????? ???? ?????????????? ?????????????? ?????????????????? ?????????? ?????? ?????? + + + + + ?????????????????????? ?????????? ???? ?????????????? ?????????????? ?????????????????? ?????????? ?????? ?????? + + + + + ?????????????????????? ?????? ???????????????? importContract ???????????????? ???????????????????? ???? ?? ?????? ?????? + + + + + ?????????????????????? ?????? ???????????????? importCharter ???????????????? ???????????????????? ???????????? ?? ?????? ?????? + + + + + ?????????????????????? ?????? ???????????????? importMeteringDevice + + + + + + ?????????????????????????? ???? + + + + + + + + ?????????????????????? ?????? ???????????????? importAccount + + + + + + + + + + + ?????????????????????? ?????? ???????????????? importSuppleResourceContractObjectAddress + + + + + + ?????????????????????????? ???????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + + + + ?????????????????????? ?????? ???????????????? importSuppleResourceContract + + + + + + ?????????????????????????? ???????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + ???????????????? ?????????????????????????? ???????????????? ???????????????????????????????? (???? ???????????????? ???? ???????????? ?? ????????????) + + + + + + + + ?????????????????????? ?????? ???????????????? importSupplyResourceContractProject + + + + + + ?????????????????????????? ???????????? ???????????????? ???????????????????????????????? ?? ?????? ?????? + + + + + + + + + + + + + + + + + + ???????????? ???? ?????????????? ?????????????? ?????????????? ???????????????????? ?? ???????? + + + + + + ?????????????????? ???????????? ???????? ???? ????????????????. + + + + + + + + ???????????? ???? ?????????????? ?????????????? ?????????????? ???????????????????? ?? ???????? + + + + + + ?????????????? ???????????????????? ?? ?????? + + + + + + + + ???????????? ???? ?????????????? ?????????????? ?????????????? ???????????????????? ?? ???????? + + + + + + ?????????????????? ???????????? ???????? ???? ????????????????. + + + + + + + + + + + + + + + + + + ?????????????? ???????????????????????????????? + + + + + + ?????????????????? ???????????????? ???????????????? + + + + + ?????????????????????????? ???????????????? ???????????????????????????????? ?????? ???????????????? ?????????????????? 1000 ?????????????????? + + + + + + + + + ???????????? ?????????????????? ?????????? ?? ???????????????? ???????????????????????????????? + + + + + + ???????????? ?????????????????? ?????????? ?? ???????????????? ???????????????????????????????? + + + + + + ?????????????????????????? ?????????????? ?????????????????? ?????????? ?? ?????? ?????? ?????? ?????????????????? ???????????????? ?????????????????? 1000 ?????? + + + + + ?????????????????? ???????????????? ???????????????? + + + + + + + + + ?????????????????? ???????????????? ???????????????????????? ?????????????? ???????????????????? ?? ???????????????? ???????????????????????????????? + + + + + + + + + ?????????????????????????? ???????????????? ???????????????????????????????? ?????? ???????????????? ?????????????????? ???????????????? ?????????????????? + + + + + ?????????????????????????? ?????????????? ?????????????????? ?????????? ?? ?????? ?????? ?????? ???????????????? ?????????????????? ???????????????? ?????? + + + + + + ?????????????????? ???????????????? ???????????????? + + + + + + + + + + ???????????? ?????????????????????? ????/?????????????? + + + + + + ?????????????? ???????????????????????? ???? ???????????????? ?????????????????????? + + + + + ???????????????????? ???????????? ?????????????????????????? + + + + + ???? ?????? ?????????????????? ???????????????????????????? ???????????? ?????????????????? + + + + + + + + + + + ???????????????? ???? ?????? ?????? ???? ?? ?????? + + + + + ?????????????????????? ?????????? ?????????????? ????????????????????????. ?????? ???????????????? ???????????????????????????? ???????????????? ?? ?????? ?? ???????? (?????????? ?? ?????? ?? ???????? ?????????????????????? ???? ???????????????????????? ????????????). ???????????????? ?????????????????? ????, ???? ?????????????? ?????????????????? ???????????????????? ?? ??????/????????, ?????????? ???????????????? ?? ?????????????????? ?????? ??????. ?????????????? ?? ???????????????? ?????????????????? ???? ?????????????????????????? ?????????? ?? ??????/???????? ???? ?????????? ????????????????. + + + + + ???????????????????? ???? ?????????????? ???????????????????????? ???? ???????????????????? ???? ?????????????????? ?? ?????? ??????. ?????? ???????????????? ?? ?????? ?????? ???? ?????????????????????? ???????????????????? ???? ?? ?????????????????????? ????????????, ???? ?? ?????? ????????????????????. ?????? ?????????????????? ??????????????, ???????????????????????? ?? ?????? ?????? ????????, ?????????????????????? ??????????????. ???????????????? ?????????????????? ????, ???? ?????????????? ?????????????????? ???????????????????? ?? ??????, ?????????? ???????????????? ?? ?????????????????? ?????? ??????. + + + + + + ?? ?????????????? ?????????????????????? ?????????????????????? ??????????. ?????? ???????????????? ?? ?????? ?????? ?????????????????????? ???????????????????? ???? ???????????????????? ???????????????????????? ????????????, ???????????????? ?? ?????? ?? ???????? ???? ??????????????????????. ?????? ?????????????????? ??????????????, ???????????????????????? ?? ??????, ?????????????????????? ?????????????? ???? ?????? ?? ????????. ?????? ?????????????????? ??????????????, ???????????????????????? ???????????? ?? ????????, ?????????????? ???? ??????????????????????. + + + + + + ???????????????? ??????????. ?????? ???????????????? ?? ?????? ?????? ???????????????????????????? ???????????????? ?? ???????? (?????????? ?? ???????? ?????????????????????? ???? ?????????????????? ????????????). + + + + + ?????????????????????????????? ???????????? ?????????? ?????? ??????????????????????/?????????????????????? ????????. ?????? ???????????????? ?? ?????? ?????? ???????????????????????????? ???????????????? ?? ???????? (?????????? ?? ???????? ???? ?????????????????????????????? ???????????? ???????? ?????? ??????????????????????/?????????????????????? ????????). + + + + + + + + + ???????????????? ???? ?????? ?????? ?????? + + + + + ?????????????????????? ?????????? ?????????????? ????????????????????????. ?????? ???????????????? ???????????????????????????? ???????????????? ?? ?????? ?? ???????? (?????????? ?? ?????? ?? ???????? ?????????????????????? ???? ???????????????????????? ????????????). ???????????????? ?????????????????? ????, ???? ?????????????? ?????????????????? ???????????????????? ?? ??????/????????, ?????????? ???????????????? ?? ?????????????????? ?????? ??????. ?????????????? ?? ???????????????? ?????????????????? ???? ?????????????????????????? ?????????? ?? ??????/???????? ???? ?????????? ????????????????. + + + + + ???????????????????? ???? ?????????????? ???????????????????????? ???? ???????????????????? ???? ?????????????????? ?? ?????? ??????. ?????? ???????????????? ?? ?????? ?????? ???? ?????????????????????? ???????????????????? ???? ?? ?????????????????????? ????????????, ???? ?? ?????? ????????????????????. ?????? ?????????????????? ??????????????, ???????????????????????? ?? ?????? ?????? ????????, ?????????????????????? ??????????????. ???????????????? ?????????????????? ????, ???? ?????????????? ?????????????????? ???????????????????? ?? ??????, ?????????? ???????????????? ?? ?????????????????? ?????? ??????. + + + + + ?????????????? ???????????????????? ?? ??????, ???????????????????????????? ??????, ???????????????? ?? ?????????????????????? ???????????? ?? ???????????? ????????????, ?????????????????????? ???????????????????? ?????????? ?? ??????/????????. ?????? ???????????????? ?? ?????? ?????? ???? ?????????????????????? ???????????????????? ???? ?? ?????????????????????? ????????????, ???? ?? ?????? ????????????????????. ?????? ?????????????????? ??????????????, ???????????????????????? ?? ?????? ?????? ????????, ???????????? ???? ????????????????????????. + + + + + + ?? ?????????????? ?????????????????????? ?????????????????????? ??????????. ?????? ???????????????? ?? ?????? ?????? ?????????????????????? ???????????????????? ???? ???????????????????? ???????????????????????? ????????????, ???????????????? ?? ?????? ?? ???????? ???? ??????????????????????. ?????? ?????????????????? ??????????????, ???????????????????????? ?? ??????, ?????????????????????? ?????????????? ???? ?????? ?? ????????. ?????? ?????????????????? ??????????????, ???????????????????????? ???????????? ?? ????????, ?????????????? ???? ??????????????????????. + + + + + + ???????????????? ??????????. ?????? ???????????????? ?? ?????? ?????? ???????????????????????????? ???????????????? ?? ???????? (?????????? ?? ???????? ?????????????????????? ???? ?????????????????? ????????????). + + + + + ?????????????????????????????? ???????????? ?????????? ?????? ??????????????????????/?????????????????????? ????????. ?????? ???????????????? ?? ?????? ?????? ???????????????????????????? ???????????????? ?? ???????? (?????????? ?? ???????? ???? ?????????????????????????????? ???????????? ???????? ?????? ??????????????????????/?????????????????????? ????????). + + + + + + + + + ???????????????? ???? ?????? ?? ???????? ?????? ???????????????? + + + + + ???????????? ?? ?????? ?????? ???????????????? ?? ??????. + + + + + ???????????? ?? ?????? ?????? ???? ???????????????? ?? ?????? (?? ?????????????? ?????????????????????? ?????????????????????? ?????????? ?????? ???????????????????? ???? ???????????????????? ???? ?????????????? ???? ?????????????????? ?? ?????? ??????). ???????????? ?????????? ???????? ???????????????? ?? ????????. + + + + + ???? ????????????????????????, ???????????????? ?????? ??????????????????????????. + + + + + + + + + + + + + + + + + + + + + + + + + + ?????? ??????????: +(R)ight - ?????????? +(E)ncumbrance - ??????????????????????/?????????????????????? ?????????? + + + + + + + + + + + ?????????? ?????????????????????????????? ?????????????????????? + + + + + + + + + + ???????? ?????????????????????????????? ?????????????????????? + + + + + + + + + + + + ???????????? ?????????? ?????????????? ?? ??????: +(C)reated - ?????????? ?? ?????? ?????????????????????? +(D)roped - ?????????? ?????????????????? +(N)o relationship - ?????????? ?? ?????? ???? ?????????????????????????????? + + + + + + + + + + + + + + ???????????????????????????????? ???????????????? ??????, ???????????????? ?????? ?????? ?????????? ???????????????????????? ?????????? ?? ?????? + + + + + ???????????????????????????????? ???????????????? ????, ???????????????? ?????? ?????? ?????????? ???????????????????????? ?????????? ?? ?????? + + + + + ???????????????????????????????? ???????????????? ???????????????? ??????????????????, ???????????????? ?????? ?????? ?????????? ???????????????????????? ?????????? ?? ?????? + + + + + ???????????????????????????????? ???????????????? ???????????? ??????????????????, ???????????????? ?????? ?????? ?????????? ???????????????????????? ?????????? ?? ?????? + + + + + ???????????????????????????????? ???????????????? ??????????????, ???????????????? ?????? ?????? ?????????? ???????????????????????? ?????????? ?? ?????? + + + + + + + + + + ???????????? ?????????? ?????????????? ?? ????????: +(C)reated - ?????????????? ???????????? ?? ????????, ????????(??)/??????????????????????????(??) ??????????????(??) +(D)roped - ?????????? ?? ??????????/???????????????????????????? ?????????????????? +(N)o relationship - ?????????? ?? ??????????/???????????????????????????? ???? ?????????????????????????????? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ?????????????? ???????????? ?????????????? ?????????????????? ?????????? ?? ?????? ?????? (?????? ??????????????) + + + + + ?????????????????????? ?????? ???????????????? importHouseUO, importHouseOMS, ImportHouseESP + + + + + + + + + + + + + ?????????????? ???????????? ?????????????? ?????????????????? ?????????? ?? ?????? ?????? (?????? ????????????????) + + + + + + + + ???????????????? ???????????????????????????? ???????? (?????? ?????????????? ???? ????) + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ?????????????? ???????????? + + + + + ?????????????????? (?????? 24) + + + + + ???????????? ???????????????????? ?????????? (?????? 338) + + + + + ?????? ?????????? ?? ???????????????????????? + + + + + ???????????????????? ???????????? + + + + + ?????????? (???????????????????????? ?????? ???????? ????????????????????, ???? ?????????????????????? ???????????? ?? ???????????????????? "????????????????"). ???????????????? ???? ???????? ?????? ??????????????. + + + + + ?????????????? ???????? + + + + + ?????????????? ?? ???????? ?????????????? ?????????????? ?????????????????????? ???????????????? + + + + + ???????????? ?????? + + + + + ?????? ?????????????????? ?? ?????????????????????????? ?????????????????????????? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + ?????? ?????????????????? ?? ?????????????????????????? ???????????????? ???????????????????? ?????????????????? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + + + + + ???????????????? ???????????????????????????? ???????? + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? (???????????????????????? ?????? ???????? ????????????????????, ???? ?????????????????????? ???????????? ?? ???????????????????? "????????????????"). ???????????????? ???? ???????? ?????? ??????????????. + + + + + ?????????????? ???????? + + + + + + + + + ???????????????? ???????????????????????????? ???????? (???????????????????? ???????????? ?????? ????) + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ?????????????? + + + + + ?????????????????? (?????? 24) + + + + + ???????????? ???????????????????? ?????????? (?????? 338) + + + + + ?????? ?????????? ?? ???????????????????????? + + + + + ???????????????????? ???????????? + + + + + ??????????. ???????????? ?????? ?????????? ???? ???? ???????? + + + + + ?????????????? ???????? + + + + + ?????????????? ?? ???????? ?????????????? ?????????????? ?????????????????????? ???????????????? + + + + + ???????????? ?????? + + + + + ?????? ?????????????????? ?? ?????????????????????????? ?????????????????????????? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + ?????? ?????????????????? ?? ?????????????????????????? ???????????????? ???? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + + + + + ???????????????? ???????????????????????????? ???????? (???????????????????? ????????????) + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ??????????. ???????????? ?????? ?????????? ???? ???? ???????? + + + + + ?????????????? ???????? + + + + + + + + + ???????????????? ???????????????????????????? ???????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ?????????????? + + + + + ?????????????????? (?????? 24) + + + + + ???????????? ???????????????????? ?????????? (?????? 338) + + + + + ?????? ?????????? ?? ???????????????????????? + + + + + ???????????????????? ???????????? + + + + + ??????????.???????????? ?????? ?????????? ???? ???? ???????? + + + + + ?????????????? ???????? + + + + + ?????????????? ?? ???????? ?????????????? ?????????????? ?????????????????????? ???????????????? + + + + + ???????????? ?????? + + + + + ???????????? ?????????????????? ?????? ?????????????? + + + + + + + + + ???????????????? ???????????????????????????? ???????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ?????????????? + + + + + ?????????????????? (?????? 24) + + + + + ???????????? ???????????????????? ?????????? (?????? 338) + + + + + ?????? ?????????? ?? ???????????????????????? + + + + + ???????????????????? ???????????? + + + + + ??????????.???????????? ?????? ?????????? ???? ???? ???????? + + + + + ?????????????? ???????? + + + + + ?????????????? ?? ???????? ?????????????? ?????????????? ?????????????????????? ???????????????? + + + + + ???????????? ?????? + + + + + ?????? ?????????????????? ?? ?????????????????????????? ?????????????????????????? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + ?????? ?????????????????? ?? c???????????????????????? ???????????????? ???? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + + + + + ???????????????? ???????????????????????????? ???????? (?????? ????????????????). ???? ?????????? ?????????????? ?? ??????/???????? ?????????????????? + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ?????????????? + + + + + ?????????????????? (?????? 24) + + + + + ???????????? ???????????????????? ?????????? (?????? 338) + + + + + ?????? ?????????? ?? ???????????????????????? + + + + + ???????????????????? ???????????? + + + + + ?????????? (???????????????????????? ?????? ???????? ????????????????????, ???? ?????????????????????? ???????????? ?? ???????????????????? "????????????????"). ???????????????? ???? ???????? ?????? ??????????????. + + + + + ?????????????? ???????? + + + + + ?????????????? ?? ???????? ?????????????? ?????????????? ?????????????????????? ???????????????? + + + + + ???????????? ?????? + + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????? ?????????? + + + + + ?????????????????? ?????????? + + + + + ???????????? ?????????????????? ?????? ???????????????? + + + + + + + + + ?????????????????????????????? ?????? (?????? ?????????????? ???? ????) + + + + + ???????????????? ???????????????????????????? + + + + + + + + + ?????????????????????? ?????????? ?????????????? ????????????????????????. ?????? ???????????????? ???????????????????????????? ???????????????? ?? ?????? ?? ???????? (?????????? ?? ?????? ?? ???????? ?????????????????????? ???? ???????????????????????? ????????????). ???????????????? ?????????????????? ????, ???? ?????????????? ?????????????????? ???????????????????? ?? ??????/????????, ?????????? ???????????????? ?? ?????????????????? ?????? ??????. ?????????????? ?? ???????????????? ?????????????????? ???? ?????????????????????????? ?????????? ?? ??????/???????? ???? ?????????? ????????????????. + + + + + ???????????????????? ???? ?????????????? ???????????????????????? ???? ???????????????????? ???? ?????????????????? ?? ?????? ??????. ?????? ???????????????? ?? ?????? ?????? ???? ?????????????????????? ???????????????????? ???? ?? ?????????????????????? ????????????, ???? ?? ?????? ????????????????????. ?????? ?????????????????? ??????????????, ???????????????????????? ?? ?????? ?????? ????????, ?????????????????????? ??????????????. ???????????????? ?????????????????? ????, ???? ?????????????? ?????????????????? ???????????????????? ?? ??????, ?????????? ???????????????? ?? ?????????????????? ?????? ??????. + + + + + + ?? ?????????????? ?????????????????????? ?????????????????????? ??????????. ?????? ???????????????? ?? ?????? ?????? ?????????????????????? ???????????????????? ???? ???????????????????? ???????????????????????? ????????????, ???????????????? ?? ?????? ?? ???????? ???? ??????????????????????. ?????? ?????????????????? ??????????????, ???????????????????????? ?? ??????, ?????????????????????? ?????????????? ???? ?????? ?? ????????. ?????? ?????????????????? ??????????????, ???????????????????????? ???????????? ?? ????????, ?????????????? ???? ??????????????????????. + + + + + + ???????????????? ??????????. ?????? ???????????????? ?? ?????? ?????? ???????????????????????????? ???????????????? ?? ???????? (?????????? ?? ???????? ?????????????????????? ???? ?????????????????? ????????????). + + + + + ?????????????????????????????? ???????????? ?????????? ?????? ??????????????????????/?????????????????????? ????????. ?????? ???????????????? ?? ?????? ?????? ???????????????????????????? ???????????????? ?? ???????? (?????????? ?? ???????? ???? ?????????????????????????????? ???????????? ???????? ?????? ??????????????????????/?????????????????????? ????????). + + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ?????????????? ???????????? + + + + + ?????????????????? (?????? 24) + + + + + ???????????? ???????????????????? ?????????? (?????? 338) + + + + + ?????? ?????????? ?? ???????????????????????? + + + + + ???????????????????? ???????????? + + + + + ?????????? (???????????????????????? ?????? ???????? ????????????????????, ???? ?????????????????????? ???????????? ?? ???????????????????? "????????????????"). ???????????????? ???? ???????? ?????? ??????????????. + + + + + ?????????????? ???????? + + + + + ?????????????? ?? ???????? ?????????????? ?????????????? ?????????????????????? ???????????????? + + + + + ???????????? ?????? + + + + + ?????? ?????????????????? ?? ?????????????????????????? ?????????????????????????? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + ?????? ?????????????????? ?? ?????????????????????????? ???????????????? ???????????????????? ?????????????????? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + + + + + + + ???????????????????? ?????????????????? ???????????? + + + + + ???????????????????? ????????????, ???????????????????? (???????????????? ???????????????????????? ?????? ??????????????????) + + + + + + + + + + + + ?????????????????????????????? ?????? (?????? ?????????????? ???? ??????) + + + + + ???????????????? ???????????????????????????? + + + + + + + ?????????????????????????????? ?????? (?????? ?????????????? ???? ??????) + + + + + ???????????????? ???????????????????????????? + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ?????????????? + + + + + ?????????????????? (?????? 24) + + + + + ???????????? ???????????????????? ?????????? (?????? 338) + + + + + ?????? ?????????? ?? ???????????????????????? + + + + + ???????????????????? ???????????? + + + + + ?????????? (???????????????????????? ?????? ???????? ????????????????????, ???? ?????????????????????? ???????????? ?? ???????????????????? "????????????????"). ???????????????? ???? ???????? ?????? ??????????????. + + + + + ?????????????? ???????? + + + + + ?????????????? ?? ???????? ?????????????? ?????????????? ?????????????????????? ???????????????? + + + + + ???????????? ?????? + + + + + ???????????? ?????????????????? ?????? ?????????????? + + + + + + + + + + ???????????????????? ?????????????????? ???????????? + + + + + ???????????????????? ????????????, ???????????????????? (???????????????? ???????????????????????? ?????? ??????????????????) + + + + + + + + + + + + ?????????????????????????????? ?????? (?????? ?????????????? ???? ??????) + + + + + ???????????????? ???????????????????????????? + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ?????????????? + + + + + ?????????????????? (?????? 24) + + + + + ???????????? ???????????????????? ?????????? (?????? 338) + + + + + ?????? ?????????? ?? ???????????????????????? + + + + + ???????????????????? ???????????? + + + + + ?????????? (???????????????????????? ?????? ???????? ????????????????????, ???? ?????????????????????? ???????????? ?? ???????????????????? "????????????????"). ???????????????? ???? ???????? ?????? ??????????????. + + + + + ?????????????? ???????? + + + + + ?????????????? ?? ???????? ?????????????? ?????????????? ?????????????????????? ???????????????? + + + + + ???????????? ?????? + + + + + ?????? ?????????????????? ?? ?????????????????????????? ?????????????????????????? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + ?????? ?????????????????? ?? c???????????????????????? ???????????????? ???? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + + + + + + ???????????????????? ?????????????????? ???????????? + + + + + ???????????????????? ????????????, ???????????????????? (???????????????? ???????????????????????? ?????? ??????????????????) + + + + + + + + + + + + ?????????????????????????????? ?????? (???????????????????? ???????????? ?????? ????) + + + + + ???????????????? ???????????????????????????? + + + + + ???????????????????? ?????????????????? ???????????? + + + + + ???????????????????? ????????????, ???????????????????? (???????????????? ???????????????????????? ?????? ??????????????????) + + + + + + + + + + + + ?????????????????????????????? ?????? (???????????????????? ???????????? ?????? ??????) + + + + + ???????????????? ???????????????????????????? + + + + + + + ?????????????????????????????? ?????? (???????????????????? ???????????? ?????? ??????) + + + + + ???????????????? ???????????????????????????? + + + + + ???????????????????? ?????????????????? ???????????? + + + + + ???????????????????? ????????????, ???????????????????? (???????????????? ???????????????????????? ?????? ??????????????????) + + + + + + + + + + + + ?????????????????????????????? ?????? (???????????????????? ???????????? ?????? ??????) + + + + + ???????????????? ???????????????????????????? + + + + + ???????????????????? ?????????????????? ???????????? + + + + + ???????????????????? ????????????, ???????????????????? (???????????????? ???????????????????????? ?????? ??????????????????) + + + + + + + + + + + + ?????????????????????????????? ?????? (?????? ????????????????) + + + + + ???????????????? ???????????????????????????? + + + + + ???????????????????? ?????????????????? ???????????? + + + + + ?????? ??????????\???????????? ???????????????????????? ?????????? (?????? 62) + + + + + + + ???????? (?????? ?????????????? ???? ????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? ?????????? + + + + + ?????? ??????????. ???????????? ???? ?????? "?????? ??????????" (???????????????????? ?????????? 192) + + + + + ???????????? ?????? + + + + + + + ???????? (?????? ?????????????? ???? ??????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? ?????????? + + + + + ?????? ??????????. ???????????? ???? ?????? "?????? ??????????" (???????????????????? ?????????? 192) + + + + + ???????????? ?????? + + + + + + + ???????? (?????? ?????????????? ???? ??????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? ?????????? + + + + + ?????? ??????????. ???????????? ???? ?????? "?????? ??????????" (???????????????????? ?????????? 192) + + + + + ???????????? ?????? + + + + + + + ???????? (???????????????????? ???????????? ???? ????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? ?????????? + + + + + ?????? ??????????. ???????????? ???? ?????? "?????? ??????????" (???????????????????? ?????????? 192) + + + + + ???????????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + + + ???????? (?????????????????? ?????????????? ???? ??????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? ?????????? + + + + + ?????? ??????????. ???????????? ???? ?????? "?????? ??????????" (???????????????????? ?????????? 192) + + + + + ???????????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + + + ???????? (?????????????????? ?????????????? ???? ??????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? ?????????? + + + + + ?????? ??????????. ???????????? ???? ?????? "?????? ??????????" (???????????????????? ?????????? 192) + + + + + ???????????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + + + ???????? (?????? ????????????????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? ?????????? + + + + + ?????? ??????????. ???????????? ???? ?????? "?????? ??????????" (???????????????????? ?????????? 192) + + + + + ???????????? ?????? + + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + + + ?????????? ?????? (?????? ?????????????? ???? ????) + + + + + ???????????????? ???????????????????????????? + + + + + ?????????? ?????? ?????????????????????????? ?????????????????? +(???????? ???? ???????????? - ???????????? false). + + + + + ?????????????????? ?????????? ?????????? ?? ???????????????????? ?????????????? +(???????? ???? ???????????? - ???????????? false) + + + + + + + ?????????? ?????? (?????? ?????????????? ???? ??????) + + + + + ???????????????? ???????????????????????????? + + + + + ?????????? ?????? ?????????????????????????? ?????????????????? (???????? ???? ???????????? - ???????????? false). + + + + + ?????????????????? ?????????? ?????????? ?? ???????????????????? ?????????????? +(???????? ???? ???????????? - ???????????? false) + + + + + + + ?????????? ?????? (?????? ?????????????? ???? ??????) + + + + + ???????????????? ???????????????????????????? + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ?????????????? + + + + + ?????????????????? (?????? 24) + + + + + ???????????? ???????????????????? ?????????? (?????? 338) + + + + + ?????? ?????????? ?? ???????????????????????? + + + + + ???????????????????? ???????????? + + + + + ?????????? (???????????????????????? ?????? ???????? ????????????????????, ???? ?????????????????????? ???????????? ?? ???????????????????? "????????????????"). ???????????????? ???? ???????? ?????? ??????????????. + + + + + ?????????????? ???????? + + + + + ?????????????? ?? ???????? ?????????????? ?????????????? ?????????????????????? ???????????????? + + + + + ???????????? ?????? + + + + + ???????????? ?????????????????? ?????? ?????????????? + + + + + + + + + + ?????????? ?????? ?????????????????????????? ?????????????????? (???????? ???? ???????????? - ???????????? false). + + + + + ?????????????????? ?????????? ?????????? ?? ???????????????????? ?????????????? +(???????? ???? ???????????? - ???????????? false) + + + + + + + ?????????? ?????? (???????????????????? ???????????? ?????? ????) + + + + + ???????????????? ???????????????????????????? + + + + + + + ?????????? ?????? (???????????????????? ???????????? ?????? ??????) + + + + + ???????????????? ???????????????????????????? + + + + + + + ?????????? ?????? (???????????????????? ???????????? ??????) + + + + + ???????????????? ???????????????????????????? + + + + + + + ?????????? ?????? (?????? ????????????????) + + + + + ???????????????? ???????????????????????????? + + + + + ?????????? ?????? ?????????????????????????? ?????????????????? + + + + + ?????????????????? ?????????? ?????????? ?? ???????????????????? ?????????????? +(???????? ???? ???????????? - ???????????? false) + + + + + + + ?????????????? (?????? ?????????????? ???? ????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? + + + + + + + + + + + ?????? ?????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + ?????????????? (?????? ?????????????? ???? ??????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + + + ?????????????? (?????? ?????????????? ???? ??????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? + + + + + + + + + + + ?????? ?????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + ?????????????? (?????? ?????????????? ???? ??????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? + + + + + + + + + + + ?????? ?????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + ?????????????? (???????????????????? ???????????? ?????? ????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? + + + + + + + + + + + ?????? ?????????????????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + ?????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + + + ?????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? + + + + + + + + + + + ?????? ?????????????????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + ?????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? + + + + + + + + + + + ?????? ?????????????????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + ?????????????? (?????? ????????????????) + + + + + ?????????? ???????????????? +(?????????? ???????? ???? ???????????????? ?????? ???????????????????????? ??????????) + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????????????? + + + + + + + + + + + ?????? ?????????????????? + + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + ???????? ???????? ?????????????????????????? ?????????????????? (?????? ?????????????? ???? ????) + + + + + + + ?????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + ?????????? ?????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????????? ???????????????? ?????????? ?????????????? + + + + + + ???????????? ?????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + ?????????????????? ?????????????????? +(???????? ???? ????????????, ?????????????????? ?????? ??????????) + + + + + + + + + ???????? ???????? ?????????????????????????? ?????????????????? (?????? ?????????????? ???? ??????) + + + + + + + ?????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????? ?????????????????? +(???????? ???? ????????????, ?????????????????? ?????? ??????????) + + + + + + + + + ???????? ???????? ?????????????????????????? ?????????????????? (?????? ?????????????? ???? ??????) + + + + + + + ?????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + ?????????? ?????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????????? ???????????????? ?????????? ?????????????? + + + + + + ???????????? ?????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + ?????????????????? ?????????????????? +(???????? ???? ????????????, ?????????????????? ?????? ??????????) + + + + + + + + + ???????? ???????? ?????????????????????????? ?????????????????? (???????????????????? ???????????? ?????? ????) + + + + + + + ?????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + ?????????? ?????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????????? ???????????????? ?????????? ?????????????? + + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????? ?????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + ?????????????????? ?????????????????? +(???????? ???? ????????????, ?????????????????? ?????? ??????????) + + + + + + + + + ???????? ???????? ?????????????????????????? ?????????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ?????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ?????????????????? ?????????????????? +(???????? ???? ????????????, ?????????????????? ?????? ??????????) + + + + + + + + + ???????? ???????? ?????????????????????????? ?????????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ?????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + ?????????? ?????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????????? ???????????????? ?????????? ?????????????? + + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????? ?????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + ?????????????????? ?????????????????? +(???????? ???? ????????????, ?????????????????? ?????? ??????????) + + + + + + + + + ???????? ???????? ?????????????????????????? ?????????????????? (?????? ????????????????) + + + + + + + ?????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + ?????????? ?????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????????? ???????????????? ?????????? ?????????????? + + + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????? ?????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + ?????????????????? ?????????????????? +(???????? ???? ????????????, ?????????????????? ?????? ??????????) + + + + + + + + + ?????????????? ?????? ?????????????????? (?????? ?????????????? ???? ????) + + + + + + + ?????????? ?????????????????? + + + + + ???????????? ?????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????? ?????? ?????????????????? (?????? ?????????????? ???? ??????) + + + + + + + ?????????? ?????????????????? + + + + + + + + + ?????????????? ?????? ?????????????????? (?????? ?????????????? ???? ??????) + + + + + + + ?????????? ?????????????????? + + + + + ???????????? ?????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????? ?????? ?????????????????? (?????? ?????????????? ???? ??????) + + + + + + + ?????????? ?????????????????? + + + + + ???????????? ?????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????? ?????? ?????????????????? (???????????????????? ???????????? ?????? ????) + + + + + + + ?????????? ?????????????????? + + + + + ???????????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????? ?????? ?????????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ?????????? ?????????????????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + + + + + ?????????????? ?????? ?????????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ?????????? ?????????????????? + + + + + ???????????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????? ?????? ?????????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ?????????? ?????????????????? + + + + + ???????????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????? ?????? ?????????????????? (?????? ????????????????) + + + + + + + ?????????? ?????????????????? + + + + + ???????? + + + + + ???????????? ?????? + + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????? ?????????????????? (?????? ?????????????? ???? ????) + + + + + + + + + ?????????????? ???????????????????? ???????????????? + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????????? ???????????????? ?????????? ?????????????? + + + + + + + + + + ?????????? ?????????????????? (?????? ?????????????? ???? ??????) + + + + + + + + + ?????????????? ???????????????????? ???????????????? + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + + + + ?????????? ?????????????????? (?????? ?????????????? ???? ??????) + + + + + + + + + ?????????????? ???????????????????? ???????????????? + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????????? ???????????????? ?????????? ?????????????? + + + + + + + + + + ?????????? ?????????????????? (?????? ?????????????? ???? ??????) + + + + + + + + + ?????????????? ???????????????????? ?????????????? + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????????? ???????????????? ?????????? ?????????????? + + + + + + + + + + ?????????? ?????????????????? (???????????????????? ???????????? ?????? ????) + + + + + + + + + ?????????????? ???????????????????? ???????????????? + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????????? ???????????????? ?????????? ?????????????? + + + + + + + + + + ?????????? ?????????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + + + ?????????????? ???????????????????? ???????????????? + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + + + + ?????????? ?????????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + + + ?????????????? ???????????????????? ???????????????? + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????????? ???????????????? ?????????? ?????????????? + + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + + + + ?????????? ?????????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + + + ?????????????? ???????????????????? ?????????????? + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????????? ???????????????? ?????????? ?????????????? + + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + + + + ?????????? ?????????????????? (?????? ????????????????) + + + + + + + + + ?????????????? ???????????????????? ???????????????? + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ???????????????????????????? ?????????????????? (?????? 30) + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + ?????????? ?????????????? ???????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ?????????????????????? ???????????????? ?????????? ?????????????? + + + + + + + + + + ?????????????? ?????????????????? (?????? ?????????????? ???? ????) + + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????? ?????????????? ???????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ??????????????????, ???????????????????????? ?????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + + + + ?????????????? ?????????????????? (?????? ?????????????? ???? ??????) + + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????? ?????????????? ???????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + + + + ?????????????? ?????????????????? (?????? ?????????????? ???? ??????, ????????????????) + + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????? ?????????????? ???????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ??????????????????, ???????????????????????? ?????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + + + + ?????????????? ?????????????????? (?????? ?????????????? ???? ??????) + + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????? ?????????????? ???????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ??????????????????, ???????????????????????? ?????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + + + + ?????????????? ?????????????????? (???????????????????? ???????????? ?????? ????) + + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????? ?????????????? ???????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ??????????????????, ???????????????????????? ?????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + + + + ?????????????? ?????????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????? ?????????????? ???????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + + + + + ?????????????? ?????????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????? ?????????????? ???????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ??????????????????, ???????????????????????? ?????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + + + + ?????????????? ?????????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????? ?????????????? ???????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ??????????????????, ???????????????????????? ?????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + + + + ?????????????? ?????????????????? (?????? ????????????????) + + + + + + + ???????? ?????????????????? ???????? ???? ????????, ?? ???????????????? ?????????????????? ?????????????? ?????? ???????????????????????? ?????????? + + + + + ?????????? ?????????????? ???????????????? ?????????????????? ???? ???????????????? ?????????????????? + + + + + ??????????????????, ???????????????????????? ?????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + + + + ?????????????? (?????? ?????????????? ???? ????) + + + + + + + ?????????? ?????????????? + + + + + ?????????????? + + + + + ???????????? ?????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????? (?????? ?????????????? ???? ??????) + + + + + + + ?????????? ?????????????? + + + + + ?????????????? + + + + + + + + + ?????????????? (?????? ?????????????? ???? ??????) + + + + + + + ?????????? ?????????????? + + + + + ?????????????? + + + + + ???????????? ?????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????? (?????? ?????????????? ???? ??????) + + + + + + + ?????????? ?????????????? + + + + + ?????????????? + + + + + ???????????? ?????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????? (???????????????????? ???????????? ?????? ????) + + + + + + + ?????????? ?????????????? + + + + + ?????????????? + + + + + ???????????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ?????????? ?????????????? + + + + + ?????????????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + + + + + ?????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ?????????? ?????????????? + + + + + ?????????????? + + + + + ???????????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????? (???????????????????? ???????????? ?????? ??????) + + + + + + + ?????????? ?????????????? + + + + + ?????????????? + + + + + ???????????? ?????? + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????? (?????? ????????????????) + + + + + + + ?????????? ?????????????? + + + + + ?????????????? + + + + + ???????? + + + + + ???????????? ?????? + + + + + + ?????????????? ?????????????????????????? ?????????????? ?????????????????? ?????????? (?????? 330) + + + + + ?????????????? ??????????????????????????.???????????????????????????? ???????????????????? + + + + + ???????????????????? ???????????????????????? ?????????????????????? + + + + + + + + + ?????????????????? ?????????????????? ?????? ?????????? + + + + + ?????????? + + + + + ?????????????? + + + + + + + ???????????????????? ???????????? (??????) + + + + + + + + + ???????????????????? ?????????????????? ???????????? (??????) + + + + + + + + + ?????? ?????????? ?? ???????????????????????? (??????) + + + + + + + + ?????????? ??????????????????, ?????????????? (??????) + + + + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????? ???????????? ?????? ?????????????? ?? ?????????????????????? ????????????, ???? ?????????????????????????? ?? ???????????? ???????????????? ?????????? ???????????????????? ???? ???????????????????? ???????????? ????????????????. ?? ?????????????????? ???????????? ?????????????????????????? ???????????????? ?????????? ???????????????? ?? NULL. + + + + + ???????? ?????????????????????????? ?????????????? ?? ?????? ?????? + + + + + ???????????? ???????????? ?????? ?????????????? ???? + + + + + ?????? ???????????? ?? ?????????????????????? ?????????? ???????????????? ???????????????? ???? + + + + + ???????????????? ???????????????????? + + + + + + + ???????????????? ???????????? ???????????? ?????? ?????????????? ???? + + + + + ???????????? + + + + + ???????????????????????? + + + + + ???????? + + + + + ?????????? + + + + + ???????????????????? + + + + + ???????????????????????? (???????????? ???? ?????? ???????????? ??????????????????????) + + + + + ???????? (???????????? ???? ????????) + + + + + + + + + + ?????????????? ???????? ?????? ???????????? ???? ?????????? ?????????????????? ?? ???????????????????????? ???????????? + + + + + ?????????????? ???????? ?????? ???????????? ???? ???????????????????????? ????????????. + + + + + ?????????????? ???????? ?????? ???????????? ???????????????????????? ?????????????? + + + + + ?????????????? ???????? ?????? + + + + + ?????????????? ???????? ??????/?????? + + + + + ?????????????? ???????? ?????? + + + + + + ???????? ???????????????? ???? ?? ?????? ?????? (???????????????????????? ?????? ??????????????, ?????????????????? ?????? ??????????????????????????) + + + + + ???????????????????? ?????????????????????? + + + + + + + + + + ?????????? ?????????????? ?????? ???? + + + + + ?????????? ?????????????? + + + + + ???????????????????????? ?????????????? + + + + + ???????? ???????????? + + + + + ?????????????????? + + + + + + + ?????????????????????????? ?????????????????? + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????????????????????? ?????????????? + + + + + + ???????? ???????????????? ??????????, ???????????? ???????? ?? % + + + + + + + + + + + + + + + ???????????????? ?? ?????????????????????? + + + + + + ???????????????? ??????????????????????? + + + + + ?????????????? ?????????? ???? ??????????????????(??) ??????????????????? + + + + + ?? ???????????? ???????????????????? ??????????/?????????????????????????? ????????????????/???????????? ???? ???????????? ??????????????????????, ???????????? ?????????????? ?????????????????????? ???? ?????????? ?????????????????????????? ?????????????????? ?? ???????????????? ??????????. + + + + ???????????????????? ????????/???????????????????????????? ??????????????????????????????. + + + + + ??????????????????????. ????/????/????. ???????????? ???? ???????????? ?????????????????????? + + + + + + + + + + + + + + ?????????????? ???????? ?????? ???????????? ???? ?????????? ?????????????????? ?? ???????????????????????? ???????????? + + + + + ?????????????? ???????? ?????? ???????????? ???? ???????????????????????? ????????????. + + + + + ?????????????? ???????? ?????? ???????????? ???????????????????????? ?????????????? + + + + + ?????????????? ???????? ?????? + + + + + ?????????????? ???????? ??????/?????? + + + + + ?????????????? ???????? ?????? + + + + + + ???????? ???????????????? ???? ?? ?????? ?????? + + + + + ???????????????????? ?????????????????????? + + + + + ?????????? ?????????????? ?????? ???? + + + + + ?????????? ?????????????? + + + + + ???????????????????????? ?????????????? + + + + + ???????? ???????????? + + + + + ?????????????????? + + + + + + + ?????????????????????????? ?????????????????? + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????????????????????? ?????????????? + + + + + + ???????? ???????????????? ??????????, ???????????? ???????? ?? % + + + + + + + + + + + + + + ???????????????? ?? ?????????????????????? + + + + + + ???????????????? ??????????????????????? + + + + + ?????????????? ?????????? ???? ??????????????????(??) ??????????????????? + + + + + ?? ???????????? ???????????????????? ??????????/?????????????????????????? ????????????????/???????????? ???? ???????????? ??????????????????????, ???????????? ?????????????? ?????????????????????? ???? ?????????? ?????????????????????????? ?????????????????? ?? ???????????????? ??????????. + + + + ???????????????????? ????????/???????????????????????????? ??????????????????????????????. + + + + + ??????????????????????. ????/????/????. ???????????? ???? ???????????? ?????????????????????? + + + + + + + + + + + ???????????????????? ???????? + + + + + + + ?????? (M- ??????????????, F-??????????????) + + + + + + + + + + + + + ???????? ???????????????? + + + + + + + + + + + + + ???????????????????? ???????? + + + + + + + ?????? (M- ??????????????, F-??????????????) + + + + + + + + + + + + + ???????? ???????????????? + + + + + + + ?????????????????????????? ???????????????? + + + + + + ????????????????, ???????????????????????????? ???????????????? (?????? 95) + + + + + ?????????? ?????????????????? + + + + + + + + + + + ?????????? ?????????????????? + + + + + + + + + + + ???????? ???????????? ?????????????????? + + + + + + + + + + + + + ???????????????????????????? ???? + + + + + ???????????????????? ?????????????????????? + + + + + + + + + + ???????????????????? + + + + ?????????????????????? ????. ???????????? ???? ?????????????? ?? ?????????????? ???????????? + + + + + ?????????????????????? ????/????/????. ???????????? ???? ???????????? ?????????????????????? + + + + + ???? ???? ???????????????? ?????????????????????? ??????????. ???????????? ???? ?????????????? ?? ?????????????? ???????????? + + + + + ?????????????????????? ????/????/????. ???????????? ???? ???????????? ?????????????????????? + + + + + + ?????????????? ?????????????? + + + + + ?????????????? ?????????????? + + + + + ?????????????? ?????????????? + + + + + ???????? ???????????? + + + + + + + ?????????????????? ?????????????????? ???? + + + + + ?????????????? ???????????????? (?????? 22) + + + + + ???????? ???????????????? + + + + + ???????????????????? + + + + + + + + + + + + + ?????? ?????????????? ?????????????????? ???? + + + + + ?????????????? ???????????????????????????????? + + + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + True, ???????? ?????????????? ???? ???????????????? ?????????????????? ??/?????? ???????????????????????? ?????????????????????? ???? ???????????????? ???????????????? ?????? ?? ?????????????????????? ??????????. + + + + + + + + + ?????????????? ?????????? ???????????? ?????????????????? + + + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ??????: +(D)WELLING_APARTMENT - ?????????????? ?????????????????????? ?????????? ???????????? ?????????????????? +STATE_(M)UNICIPAL_FUND - ?????????????? ?????????? ???????????? ?????????????????? ???????????????????????????????? ?????? ???????????????????????????? ?????????????????? ?????????? +(S)OCIAL_FUND - ?????????????? ?????????? ???????????? ?????????????????? ?????????????????? ?????????? ?????????????????????? ?????????????????????????? + + + + + + + + + + + + + + + + + + + + + + + ?????????? ???????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ???????? ???????????????????? ?? ???????? + + + + + + + + + + + ???????????????????????????? ???????????? ???? + + + + + ???????? ???????????? ?????????????????????????? ???????????? + + + + + ???????? ?????????????????? ?????????????????????????? ???????????? + + + + + ???????????? ???? ???????????????????? ???????????????????????????? ?????????? (?????? ???1) + + + + + ?????????????????? + + + + + + + ?????????????????????????? ???????????????????????????? ???????????? ???? + + + + + ???????????????? ?????????????????????????? ???????????????? (???? ???????????????? ???? ???????????? ?? ????????????) + + + + + ?????????????????????????? ???????????? ???????????????? + + + + + ???????????????? ?????????????????????????? ???????????? (???? ???????????????? ???? ???????????? ?? ????????????) + + + + + ?????????????????????????? ???????????? ???????????? ?? ?????? ?????? + + + + + + + ?????????? ?????????????????? + + + + + + + + + + + + + + ?????????? ???????????????? ?????????????????? ???????????????????????????? ?? ?????????? (????????????????????) ???????????????? ?????????? ?? ?????????????????? ???????? ???????????? ?? ???????? ?????????????????? ?????????????? ???????????????? ?????????????????? + + + + + + ???????????? ?????????????? ?????????? ?????????????????? ???? + + + + + ?????????????????? ?????????????? ?????????? ?????????????????? ???? + + + + + + + + ???????? ?????????????????????????? (??????????????????????) ?????????????????? ???????????????????? ?????? ???????????????? ?????????? ???? ?????????? ?????????????????? ?? (??????) ???????????????????????? ???????????? + + + + + + + ???????? ???????????? (???? 1-30) + + + + + + + + + + + ?????????????????? ???????? ???????????? + + + + + + + ???????????????? ???????????? + + + + + + + ???????????????????? ???????????? + + + + + + + + + + ???????? ???????????????? ?????????? ???? ?????????? ?????????????????? ?? (??????) ???????????????????????? ???????????? + + + + + + + ???????? ???????????? (???? 1-30) + + + + + + + + + + + ?????????????????? ???????? ???????????? + + + + + + + ???????????????? ???????????? + + + + + + + ???????????????????? ???????????? + + + + + + + + + + + + + + ?????????? ???????????????? ?????????????????? ???????????????????????????? ?? ?????????? (????????????????????) ???????????????? ?????????? ?? ?????????????????? ???????? ???????????? ?? ???????? ?????????????????? ?????????????? ???????????????? ?????????????????? + + + + + + ???????????? ?????????????? ?????????? ?????????????????? ???? + + + + + ?????????????????? ?????????????? ?????????? ?????????????????? ???? + + + + + + + + ???????? ?????????????????????????? (??????????????????????) ?????????????????? ???????????????????? ?????? ???????????????? ?????????? ???? ?????????? ?????????????????? ?? (??????) ???????????????????????? ???????????? + + + + + + + ???????? ???????????? (???? 1-30) + + + + + + + + ?????????????????? ???????? ???????????? + + + + + + + ???????????????? ???????????? + + + + + + + ???????????????????? ???????????? + + + + + + + + + + ???????? ???????????????? ?????????? ???? ?????????? ?????????????????? ?? (??????) ???????????????????????? ???????????? + + + + + + + ???????? ???????????? (???? 1-30) + + + + + + + + ?????????????????? ???????? ???????????? + + + + + + + ???????????????? ???????????? + + + + + + + ???????????????????? ???????????? + + + + + + + + + + + + ?????? ???????????? ?????? + + + + + + ???????? ???????????? + + + + + + + + + + + ?????????????????? ???????? ???????????? + + + + + + ???????????????????? ????????????? + + + + + + + ?????? ???????????? ?????? ?????? ???????????????? + + + + + + ???????? ???????????? + + + + + + + + ?????????????????? ???????? ???????????? + + + + + + ???????????????????? ????????????? + + + + + + + + + ?????????? ???????????????? ?????????????????? ???????????????????????????? ?? ?????????? (????????????????????) ???????????????? ?????????? ?? ?????????????????? ???????? ???????????? ?? ???????? ?????????????????? ?????????????? ???????????????? ?????????????????? + + + + + + ???????????? ?????????????? ?????????? ?????????????????? ???? + + + + + ?????????????????? ?????????????? ?????????? ?????????????????? ???? + + + + + + + + ???????? ?????????????????????????? (??????????????????????) ?????????????????? ???????????????????? ?????? ???????????????? ?????????? ???? ?????????? ?????????????????? ?? (??????) ???????????????????????? ???????????? + + + + + + + ???????? ???????????? (???? 1-30) + + + + + + + + + + + ?????????????????? ???????? ???????????? + + + + + + + ???????????????? ???????????? + + + + + + + ???????????????????? ???????????? + + + + + + + + + + ???????? ???????????????? ?????????? ???? ?????????? ?????????????????? ?? (??????) ???????????????????????? ???????????? + + + + + + + ???????? ???????????? (???? 1-30) + + + + + + + + + + + ?????????????????? ???????? ???????????? + + + + + + + ???????????????? ???????????? + + + + + + + ???????????????????? ???????????? + + + + + + + + + + + + + + ?????????? ???????????????? ?????????????????? ???????????????????????????? ?? ?????????? (????????????????????) ???????????????? ?????????? ?? ?????????????????? ???????? ???????????? ?? ???????? ?????????????????? ?????????????? ???????????????? ?????????????????? + + + + + + ???????????? ?????????????? ?????????? ?????????????????? ???? + + + + + ?????????????????? ?????????????? ?????????? ?????????????????? ???? + + + + + + + + ???????? ?????????????????????????? (??????????????????????) ?????????????????? ???????????????????? ?????? ???????????????? ?????????? ???? ?????????? ?????????????????? ?? (??????) ???????????????????????? ???????????? + + + + + + + ???????? ???????????? (???? 1-30) + + + + + + + + ?????????????????? ???????? ???????????? + + + + + + + ???????????????? ???????????? + + + + + + + ???????????????????? ???????????? + + + + + + + + + + ???????? ???????????????? ?????????? ???? ?????????? ?????????????????? ?? (??????) ???????????????????????? ???????????? + + + + + + + ???????? ???????????? (???? 1-30) + + + + + + + + ?????????????????? ???????? ???????????? + + + + + + + ???????????????? ???????????? + + + + + + + ???????????????????? ???????????? + + + + + + + + + + + + ?????? ???????????? ?????? ????????????/?????????????????? ?????????????? ?????????? ?????????????????? ???? ???? + + + + + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + + ???????? ???????????? ???????????????????????????? ?????????? + + + + + ???????? ?????????????????? ???????????????????????????? ?????????? + + + + + + + + + + ?????????????????????????? ?? ?????? ?????? (???????????? ???? ???????????????????? ??????????????????????) + + + + + ?????????????????????? ???????????????? + + + + + + + + + ?????????????? ?????????????????????? + + + + + + + + + ???????? ??????????????????????, ?????????????????????? ???????????????? ???????????? + + + + + + + + + ?????????????? ???????????? ?????????????????? + + + + + + + + + ???????????? ???? ?????? + + + + + ???????? ???????????? ???????????????????????????? ???????????? + + + + + ???????? ?????????????????? ???????????????????????????? ???????????? + + + + + + + + + ?????????? + + + + + + + + + + ???????? + + + + + + + + + ?????????? + + + + + + + + + + ???????? + + + + + + + + + ?????????????? ?????????????????????? ???? + + + + + + + + + ?????????????? ???? + + + + + ???????????? ???? ???????????????????????????? ???????????????????? + + + + + + + + + ?????????????? ?????????? + + + + + ???????????? ???? ???????????????? ???????????????? ?????????????????????????? + + + + + + + ?????????? + + + + + ???????? ???????????????????? ???????? TC??/??????/ ?????????????????????? (?????????????????????? ???????????????????? ????????????) + + + + + ???????????????????? ?? ???????????? + + + + + ???????????????? ???????????????? ?????????????????????????? + + + + + + ???????????????? ???????????????? ?????????????????????????? (???????????????????? ???????????? ??????????????????) + + + + + ?????????????????????????? ???????????? ?????????????????? ?????????????????????? (???????????????????? ?????????????????? ???? ?????????????? ???????????????? ?? ??????????????????????) + + + + + + + + ????????????????, ???????????????????? ?????????????? ???? ?????????????????????? ????????????, ?????????????????????? (?????? ?????????????????? True MeetingProtocol ??????????????????????????) + + + + + ?????????????????? ???????????? + + + + + ?????????????????????????? ???????????????? ???????? ???????????????? ?????????? ???? ???????? ??????. ?????? ?????????????????????????????? ?????????????????? ?????????????????????? ???????????????? true. + + + + + ?????????????????? (true) ?????? ?????????????????? (false) ???????????????? ?????????????????? ?????????????? ?????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ?????????? ???????? ????????????. ???????? ?????????????? ???? ??????????????, ?????????????????????? ???????????????? ???????????????????? ?????????????????? "?????????????????? ???????????????? ?????????????????? ?????????????????? ???????????????????????????? ?????? ?????????? (????????????????????) ???????????????? ?????????? ?? ?????????? ???????? ???????????? ???? ???????? ??????????????????". + + + + + + + ?????????? (?????? ????????????????) + + + + + ???????? ?????????????????????? TC??/??????/?????????????????????? (?????????????????????? ???????????????????? ????????????) + + + + + ???????????????????? ?? ???????????? + + + + + ???????????????? ???????????????? ?????????????????????????? + + + + + + ???????????????? ???????????????? ?????????????????????????? (???????????????????? ???????????? ??????????????????) + + + + + ?????????????????????????? ???????????? ?????????????????? ?????????????????????? (???????????????????? ?????????????????? ???? ?????????????? ???????????????? ?? ??????????????????????) + + + + + + + + ????????????????, ???????????????????? ?????????????? ???? ?????????????????????? ????????????, ?????????????????????? (?????? ?????????????????? True MeetingProtocol ??????????????????????????) + + + + + ?????????????????? ???????????? + + + + + ?????????????????????????? ???????????????? ???????? ???????????????? ?????????? ???? ???????? ??????. ?????? ?????????????????????????????? ?????????????????? ?????????????????????? ???????????????? true. + + + + + ?????????????????? (true) ?????? ?????????????????? (false) ???????????????? ?????????????????? ?????????????? ?????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ?????????? ???????? ????????????. + + + + + + + ???? + + + + + ?????????? ?????????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ???????? ???????????????????? ?? ???????? + + + + + ?????????????????????? ???????? ?????????????????? + + + + + ???????? ???????????????? (?????????????????????? ?????? ????????????????) + + + + + + ?????????? + + + + + + + + + + ??????/?????? + + + + + + + + + + + + + ???????????? ?????????????? ???????????????? + + + + ?????????????????????? ?????????????? ?????????????????? ?????????? (?????????? ?????????????? ???????????? ???????? ???????????????????? ?????????????????????? ????????????) + + + + + ??????/???????????????????? + + + + + ?????????????????????? ???????????????????????????? ?????????? + + + + + ???????????????????? + + + + + ??????????, ???????????????????????????? ???? ???????????????? ?????????????? ???? ?????????????????????? ?????????????????????? ?????????????????????? + + + + + + ???????????????? ?? ?????????????????? ?????????????????? ????????????????/???????????????? ?????????????????????????? + + + + + + ???????????????? ?????????????????? ????????????????/???????????????? ?????????????????????????? (???????????????????? ???????????? ??????????????????) + + + + + + + + ?????????????? ???? ????????????????????????, ???????????????? ?? ?????????? ?????? ?????????????????????? ?????????????????????????? ?????????????????????????????? ???????????????????????????? + + + + + + + + + + ???????????????? ?????????????????? ???????????????? + + + + + + ???????????????? ???????????????? ?????????????????????????? + + + + + + ???????????????? ?????????????????? ?????????????????? + + + + + ????????????????, ???????????????????????????? ???????????????? ?????????????? ?????????????? ???????????????????? ?????????????????????? + + + + + + + + ?????????????????????????? ???????????? ?????????????????? ?????????????????????? (???????????????????? ?????????????????? ???? ?????????????? ???????????????? ?? ??????????????????????) + + + + + + + + +???????????? ???? ?????? "?????????????????? ???????????????????? ????????????????" (???????????????????? ?????????? 58). + + + + + ???????????????? ?? ????????????. ?????? EditContract ?????????????????????? ?????????????????? ????????????, ???????????????? ?????????? ?????????????????????? ???? ???????????????????? ????????????. + + + + + ?????????????? ???? ???????????????????? ?? ???????????????????? + + + + + ???????????????????????????? ???????????????????? + + + + + + + + ?????????????????? ?????????????????????????????? ???????????????????? + + + + + + + + + + ???????????? ??????????????????????????, ?????????????????????? ??????????????. + +?????????????? ????????????????????, ???????? ???????????????? ???????????????? ???????????????? ???????????????????????? ?????????????? ?????????????????? ?????????? ?? ???????????????????? ???????????????????? ???????????????? ?????????????? "?????????????? ???????????? ???????????????? ??????????????????????????". ?? ?????????????????? ?????????????? ?????????????? ???? ?????????????????????? + + + + + ???????????????????? ???? ???????? ?? ????????????????????????. ????????????????????, ???????? ?? "?????????????????? ???????????????????? ????????????????" ?????????????? "???????????????????? ???? ???????? ?? ????????????????????????". + + + + + ??????????. ????????????????????, ???????? ?? "?????????????????? ???????????????????? ????????????????" ?????????????? "??????????". + + + + + ?????????????? ???????????? ???????????????? ????????????????????????????. + +?????????? ?????????????????????? ???????????? ?? ?????? ????????????, ???????? ?? "?????????????????? ???????????????????? ????????????????" ?????????????? "?????????????? ???????????? ???????????????? ????????????????????????????" + + + + + ?????????????????????????? ?????????????? ???? ?????????????? ?????????????? ???? ?????????????????????? ?????????????????????? ??????????????????????. ????????????????????, ???????? ?? ???????????????? "?????????????????? ???????????????????? ????????????????" ?????????????? "?????????????? ???????????? ???????????????? ????????????????????????????". + + + + + ?????????????????????????? ???????????????????????????? ?????????????? ???? ???????? ?????? ?????? ?????????????????????? ???????? ?????????????????? ???????????????? ????????????????. ?????? ?????????????????????????????? ?????????????????????????????? ?????????????????????? ???????????????? true. + + + + + + + ???? (?????? ????????????????) + + + + + ?????????? ?????????????????? + + + + + + + + + + + ???????? ???????????????????? + + + + + ???????? ???????????????????? ?? ???????? + + + + + ?????????????????????? ???????? ?????????????????? + + + + + ???????? ???????????????? (?????????????????????? ?????? ????????????????) + + + + + + ?????????? + + + + + + + + + + ??????/?????? + + + + + + + + + + + + + ???????????? ?????????????? ???????????????? + + + + ?????????????????????? ?????????????? ?????????????????? ?????????? (?????????? ?????????????? ???????????? ???????? ???????????????????? ?????????????????????? ????????????) + + + + + ??????/???????????????????? + + + + + ?????????????????????? ???????????????????????????? ?????????? + + + + + ???????????????????? + + + + + ??????????, ???????????????????????????? ???? ???????????????? ?????????????? ???? ?????????????????????? ?????????????????????? ?????????????????????? + + + + + + ???????????????? ?? ?????????????????? ?????????????????? ????????????????/???????????????? ?????????????????????????? + + + + + + ???????????????? ?????????????????? ????????????????/???????????????? ?????????????????????????? (???????????????????? ???????????? ??????????????????) + + + + + + + + ?????????????? ???? ????????????????????????, ???????????????? ?? ?????????? ?????? ?????????????????????? ?????????????????????????? ?????????????????????????????? ???????????????????????????? + + + + + + + + + + ???????????????? ?????????????????? ???????????????? + + + + + + ???????????????? ???????????????? ?????????????????????????? + + + + + + ???????????????? ?????????????????? ?????????????????? + + + + + ????????????????, ???????????????????????????? ???????????????? ?????????????? ?????????????? ???????????????????? ?????????????????????? + + + + + + + + ?????????????????????????? ???????????? ?????????????????? ?????????????????????? (???????????????????? ?????????????????? ???? ?????????????? ???????????????? ?? ??????????????????????) + + + + + + + + +???????????? ???? ?????? "?????????????????? ???????????????????? ????????????????" (???????????????????? ?????????? 58). + + + + + ???????????????? ?? ????????????. ?????? EditContract ?????????????????????? ?????????????????? ????????????, ???????????????? ?????????? ?????????????????????? ???? ???????????????????? ????????????. + + + + + ?????????????? ???? ???????????????????? ?? ???????????????????? + + + + + ???????????????????????????? ???????????????????? + + + + + + + + ?????????????????? ?????????????????????????????? ???????????????????? + + + + + + + + + + ???????????? ??????????????????????????, ?????????????????????? ??????????????. + + + + + ???????????????????? ???? ???????? ?? ????????????????????????. ????????????????????, ???????? ?? "?????????????????? ???????????????????? ????????????????" ?????????????? "???????????????????? ???? ???????? ?? ????????????????????????". + + + + + ??????????. ????????????????????, ???????? ?? "?????????????????? ???????????????????? ????????????????" ?????????????? "??????????". + + + + + ?????????????? ???????????? ???????????????? ????????????????????????????. + + + + + ?????????????????????????? ?????????????? ???? ?????????????? ?????????????? ???? ?????????????????????? ?????????????????????? ??????????????????????. + + + + + ?????????????????????????? ???????????????????????????? ?????????????? ???? ???????? ?????? ?????? ?????????????????????? ???????? ?????????????????? ???????????????? ????????????????. ?????? ?????????????????????????????? ?????????????????????????????? ?????????????????????? ???????????????? true. + + + + + ?????????????????? (true) ?????? ?????????????????? (false) ???????????????? ?????????????????? ?????????????? ?????????????????? ???? ???????????????????????????? ???????????????? ?????????? ?? ?????????? ???????? ????????????. + + + + + + + ???????????? ???? ?? ?????? ??????: +Project - ???????????? +ApprovalProcess - ???? ?????????????????????? +Rejected - ???????????????? +Approved - ?????????????????? +Terminated - ???????????????????? +Reviewed - ???????????????????? +Annul - ???????????????? ???????????????????????? + + + + + + ???????????? ???????????? ?? ?????? ??????: + Project - ???????????? + Approved - ?????????????????? + Terminated - ????????????????????/???????????? + Annul - ?????????????????????? + Reviewed - ???????????????????? + ApprovalProcess - ???? ?????????????????????? + Rejected - ???????????????? + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ?????????????????????????? ???????????? ?????????????? ???????????????????? ?? ?????? ?????? + + + + + ???????????? ?????????????? ???????????????????? + + + + + + + + + + + + + ???????????? ???????????????????????? ??????????????: +Project-???????????? +ApprovalProcess-???? ?????????????????????? +Rejected-???????????????? +Approved-?????????????????? +Locked-???????????????????????? +Annul-???????????????? ???????????????????????? + + + + + + ?????????????????????????? ???????????????? + + + + + ?????????????? ???????????????????????? + + + + + + + + + + + + ?????? ???????????????????? ?? ?????????????? ?????????? ???? ?????????? ?????????????????? ???? ???? + + + + + ???????? ???????????? ?????????????? + + + + + ???????? ?????????????????? ?????????????? + + + + + ???????????? ?????????? (????????) ???? ????????????, ???????????? ???? ???????????????????? ?????? (???????? ???????????????????? ???????????????????? ???????????? ???????????????? ??????????????????????????)/???????????? ?????????? ???? ???????????????????? ???????????? ??????????????????, ?????????????????????????? ???? ?????????????????????? ?????????????????? ???????????????? (???????? ???????????????????? ???????????????????? ?????????????????? ????????????????) + + + + + ???????? ?????????????? ???? ????????????, ?????????????????????? ?????????????? ???????????????? ?? ???????????? ???? ????????????????????, ???????????????????????? ?? ???? + + + + ???????????????? ???????????? ???????????????? ?????????????????????????? ?????????????????? ?? ?????????????????????????????? ???????? ???? ???????????????????????? ?????????????? ?????????? ???? ???????????????????? ???????????? ?????????????????? + + + + + ?????????????????????????? ???????????? ?????????????????? ?????????????????????? ?? ???????????????? ?? ?????????? 12.1 ???????????????? ???????????? ???????????? ???????????????????? ??(??????) ?? ?????????? 15.1 ?????????????? ???????????????? ?????????????? ?????????????? ????????????????????. + + + + + + ???????????????????? ?? ?????????????? ?????????? (????????, ????????????) ???? ???????????????????? ?? ?????????????? ???????????? ???????????? ?????????????????? ?? ?????????????????????????????? ????????/???????????????????? ?? ?????????????? ?????????? ???? ???????????????????? ???????????? ??????????????????, ?????????????????????????? ???? ?????????????????????? ?????????????????? ???????????????? ???? ???????????? ?????????????????????? ?????????????????????? ?????? ???????????????????? ?????????????????????????????? ?????????? + + + + + + ????????????/???????????? ?????????????????????? (?????? ???59) + + + + + ???????????? ?????????? (????????, ????????????) ???? ???????????? (????????????)/???????????? ?????????? ???? ???????????? (????????????), ?? ?????????? ?????????? ?????????????????????? ??????????, ?? ???????????????????????? - ???? ?????????? ?????????? ????????????. + + + + + + + + ?????? ?????????????? ??????????: +(P)rotocol - ???????????????????????? ???????????????????? ???????????? ???????????????? ?????????????????????????? +(??)ompetition - ?????????????????????????? ???? ?????????????????????? ?????????????????? ???????????????? +(A)uthority - ?????????????????????????? ?????????????? ???????????????? ???????????????????????????? + + + + + + + + + + + + + + + + ?????? ???????????????????? ?? ?????????????? ?????????? ???? ?????????? ?????????????????? ???? ???????????? + + + + + ???????? ???????????? ?????????????? + + + + + ???????? ?????????????????? ?????????????? + + + + + ???????????????????? ?? ?????????????? ???????????????????????? ???????????????? ?? (??????) ?????????????? ???????????? ????????????????????????, ??????????????????????, +?????????????????? ?? ?????????????? ???????????????? ???? ???????????????????? ?? ?????????????? ???????????? ???????????? ?????????????????? ?? ?????? + + + + + + ???????????? ???????????????????????? ???????????????? ?? (??????) ?????????????? ???????????? ????????????????????????, ?????????????????????? + + + + + ???????????????? ???????????? ???????????????? ???????????? ????????????????????????, ?????????????????????? ???? ?????????????????????? ???????????????????????? ???????????????? ?? (??????) ?????????????? ???????????? ????????????????????????, ?????????????????????? + + + + + + + + ???????????????????? ?? ?????????????? ?????????? ???? ???????????????????? ?? ???????????? ???????????? ?????????????????? ?????? ???????????????????????? +?????????????????? ?? ??????, ???? ?????????????????????? ???????????? ????????????????????????, ?????????????????????? + + + + + + ???????????? ?????????? ???? ???????????????????? ?? ???????????? ???????????? ?????????????????? ?????? ???????????????????????? ?????????????????? ?? ?????? + + + + + ???????????????? ???????????? ???????????????? ???????????? ????????????????????????, ?????????????????????? ???? ?????????????????????? ?????????????? ?????????? ???? ???????????????????? ?? ???????????? ???????????? ?????????????????? ?????? ???????????????????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + + + ???????????????????? ?? ?????????????? ?????????? (????????, ????????????) ???? ???????????????????? ?? ?????????????? ???????????? ???????????? ?????????????????? ?? ?????????????????????????????? ???????? + + + + + + ????????????/???????????? ?????????????????????? (?????? ???59) + + + + + ???????????? ?????????? (????????) ???? ????????????, ???????????? ???? ???????????????????? ??????. ?? ?????????? ?????????? ?????????????????????? ??????????, ?? ???????????????????????? ?????????? ?????????? ????????????. + + + + + + + + + + ?????? ???????? ?????????????????????? ???????????????? + + + + + + + + ?????????????????????????? ???????????? ???????????????? ?? ?????????????? ?????????? ???? ???? + + + + + ?????????????????????????? ???????????? ???????????????? ?? ?????????????? ?????????? ???? ???????????? + + + + + ?????????????????????? ???????????? ?? ???????????? ????????????????, ???????? ???????????????? ???? ?????????????????????? ?????????????? ?? ???????????????? ???????????????????? ?????????????????????? ?? ???????????????? ???????????????? + + + + + ?????????????????????? ???????????? ?? ???????????? ???????????????????? ?? ???????????????? ???????????????????? ?????? (????????), ???????? ???????????????? ???? ?????????????????????? ?????????????? ???????????? ?????????????????????? ?? ???????? + + + + + ?????????????????????????????? ?????????????????? ?????????? + + + + + + + + + + + + + + + + + ?????????? ???????????????????? ???????????????? + + + + + + + + + + + + + ???????????????? ???? ?????????????????????? ???????????????? + + + + + + ???????????????????? ???????? (?????????????????????? ??????????????????) + + + + + ?????????????????????? ?????????????????? ???????????????? ???? ?????? ????. ???????? (????) + + + + + + + + ?????????????????????????? ?????????? + + + + + + + + + + ???????????????? ?????? + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + +?????????????????????? ?? ????????????????????, ???????? "?????? ????????????????" = "???????????????? ??????????????????????????" ?? ???? ?????????????????? ??????/???????????????????? + + + + + ???????????????????????? ?????????????????????????? ??????????/ ???????????????????? + + + + + ?????????? ?????????????????? + + + + + + + + + + ???????? ?????????????????????? ?????????????????? + + + + + ?????????? ???????????????????? + + + + ?????????????? ?????????????????????? (???????????????? ??????????) + + + + + + ???????? ???????????? ???????????? ?????????????? ??????????????????????????. + + + + + ???????? ?????????????????? ???????????? ?????????????? + + + + + ?????????? ???????????? ?????????????? + + + + + + + + + + + + + + + ?????????? ?????????????????????? + + + + + + + + + ???????? ?? ?????????? ???????????????????? ???????????????? + + + + + + + + + + + ?????????????? ?????????????????????? ?? ???????????????????????????? ??????????????. ???? ???????????????????????? ?????? ?????????????? ???????????????????? + + + + + + ???????? ?? ?????????? ???????????? ???????????????????? ?????????????????????? + + + + + ???????? ?? ?????????? ?????????????????? ???????????????????? ?????????????????????? + + + + + ?????????????? ???????????? ?????????????????????? ?? ???????????????????? ?????????? ?????????????? ?????????????????????????? + + + + + + + + + + ?????????????? ???????????????????????? ?? ?????????????????????? ?? (??????) ??????????????????????, ?????????????? ?????????? ???????????????????????? ???? ???????????? ???????????????? + + + + + + + + + + + + + + ??????????-?????????????? ?????????????????????? + + + + + + + ???????? ?? ?????????? ???????????????????? ???????????????? + + + + + ?????????? ???????????????????? ???????????????? + + + + + + + + + + + ???????? ???????????? ???????????? ?????????????? ??????????????????????????. + + + + + ???????? ?????????????????? ???????????? ?????????????? + + + + + ?????????? ???????????? ?????????????? + + + + + + + + + + + + + + + + ?????? ???????????????? + +???????????????? ?????????????????? ????????????????: +-Owners - ???????????????? ?????????????????????????? +-Homeowners - ???????????????? ?????? +-Cooperative - ???????????????? ?????????????????????? + +???? ?????????????????? ?????????????????????????????? ???????????????? "???????????????? ??????????????????????????", ???????? ???? ?????????????????? + + + + + ?????? ???????????????? + + + + ???????????????????????? ???????????????? + + + + + ?????????????????? ???????????????? + + + + + + + ?????????????????????????? ???????????????? +???????????????????? ???????????????? +(C)OMPETENT - ???????????????????? (?????????? ????????????) +(N)OT_COMPETENT- ???? ???????????????????? (???????????? ??????????????????????) + + + + + + + + + + + + ???????????????? + + + + + + + ?????????? ?????????????? + + + + + ???????????? + + + + + + + + + + + ?????? ?????????????? (?????? ???63) + +?????????????????????? ?? ????????????????????, ???????? "?????? ????????????????" = "???????????????? ??????????????????????????" + + + + + ?????? ?????????????? ?????? ?????? (?????? ???341) + +?????????????????????? ?? ????????????????????, ???????? "?????? ????????????????" = "???????????????? ??????" + + + + + + + + + + ?????? ?????????????? ?????? ?????????????????????? + +?????????????????????? ?? ????????????????????, ???????? "?????? ????????????????" = "???????????????? ??????????????????????" + + + + ???????? ?? ???????????? + + + + + ?????? ?? ???????????? + + + + + + ???????????????????? ?????????????????????? + + + + ???????????????????? ?????????????????????? ???????? + + + + + ???????????????????? ?????????????????????? ???????????????? + + + + + ???????????????????? ?????????????????????? ?????????????????????????? + + + + + + ?????????????????? ???????????? ???????????????????????? ?????????? (???????????????????? ???????? ??????????\???????????? ???????????????????????? ???????????? ?????? 62). ?????? ?????????????? ???????????? ?????????????????? "???????????????? ???? ??????????????". + + + + + ?????????????????? ???????????? ???????????????????? ?????? (???????????????????? ?????????????? ?????????????????????? ?????? 25) + + + + + ??????????????, ?? ?????????????? ???????????????????? ??????????????????????. ?????????????????????? ???????????? ?????? ?????????????? "?????????????????????????? ???????? ???????????????????????????? ?????????????? ?????? ???????????????????? ???????????? ???????????????? ?????????????????????????? ?????????????????? ?? ?????????????????????????????? ???????? ?? ?????????? ???????????????? ??????????????????????" + + + + + ???????????????? ?? ???????????????????? ???????? + +?????????????????????? ???????????? ?????? ???????????????? ?? ?????????? "?????????????????????? ???????????????????????????? ???????????? ???????????????? ?? ?????????????????? ?????????? ??(??????) ????????" + + + + + + ???????? ?????????????????????? +???????????????????? ????????????????: +DECISION_IS_(M)ADE - ?????????????? ?????????????? +DECISION_IS_(N)OT_MADE - ?????????????? ???? ?????????????? + + + + + + + + + + + + + + ?????????????????? ??????????????????. ?????????????????????? ?????? ???????????????????? ?????? ?? ?????????????? "????????????????" + + + + + + + + + + + + ?????????????????? ?? ???????????????????? ?????? + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + +?????????????????????? ?? ????????????????????, ???????? "?????? ????????????????" = "???????????????? ??????????????????????????" ?? ???? ?????????????????? ??????/???????????????????? + + + + + ???????????????????????? ?????????????????????????? ??????????/ ???????????????????? + + + + + ?????????? ?????????????????? + + + + + ???????? ?????????????????????? ?????????????????? + +?????????????????????? ?? ???????????????????? ?????? ???????? ??????????????????, ?????????? ??????????????????????, ???????????????????? ?? ?????????????? ?????????????? ?????? ??????. ?????? ????????????????, ???????????????????? ?? ?????????????? ?????? ?????? ???????????????? ???????????????? ?????????? ?????????????????????????????? ?? ?? ???????? ?????????????????????? ?????????????????? ?????????????? ???????? ?? ??????????. + + + + + ?????? ???????????????? + + + + ???????????????????????? ???????????????? + + + + + ?????????????????? ???????????????? + + + + + + ?????????? ???????????????????? + + + + ?????????????? ?????????????????????? (???????????????? ??????????) + + + + + + ???????? ???????????? ???????????? ?????????????? + + + + + ???????? ?????????????????? ???????????? ?????????????? + + + + + ?????????? ???????????? ?????????????? + + + + + + + + + + + + + + + ?????????? ?????????????????????? + + + + + + ???????? ?? ?????????? ???????????????????? ???????????????? + + + + + ?????????? ???????????????????? ???????????????? + + + + + + + + + + + + + + + ????????-?????????????? ?????????????????????? + + + + + + ???????? ???????????? ???????????? ?????????????? + + + + + ???????? ?????????????????? ???????????? ?????????????? + + + + + ?????????? ???????????? ?????????????? + + + + + + + + + + + ???????? ?? ?????????? ???????????????????? ???????????????? + + + + + ?????????? ???????????????????? ???????????????? + + + + + + + + + + + + + + + ?????????????? ?????????????????????? ?? ???????????????????????????? ?????????????? + + + + + + ???????? ?? ?????????? ???????????? ???????????????????? ?????????????????????? + + + + + ???????? ?? ?????????? ?????????????????? ???????????????????? ?????????????????????? + + + + + ?????????????? ???????????? ?????????????????????? ?? ???????????????????? ?????????? ?????????????? ?????????????????????????? + + + + + + + + + + ?????????????? ???????????????????????? ?? ?????????????????????? ?? (??????) ??????????????????????, ?????????????? ?????????? ???????????????????????? ???? ???????????? ???????????????? + + + + + + + + + + ??????????????, ?? ?????????????? ???????????????????? ?????????????????????? + + + + + ???????????? ?????? + +?????????????????????? ???????????? ???????? ?? tns:VotingSystem ?????????????? "???????????????????????? ???????????????????????????? ??????????????" ?????? "????????" + + + + + ???????????????? ???? ???????? + + + + + ?????????? ?????? ?????????????????????? ?????????? ???????????????????????????? ???????????? ???????????????? + + + + + + + + + + + + + + + + ?????? ???????????????? + +???????????????? ?????????????????? ????????????????: +-Owners - ???????????????? ?????????????????????????? +-Homeowners - ???????????????? ?????? +-Cooperative - ???????????????? ?????????????????????? + +???? ?????????????????? ?????????????????????????????? ???????????????? "???????????????? ??????????????????????????" + + + + + + ???????????????? + + + + + + ?????????? ?????????????? + + + + + ???????????? + + + + + + + + + + + ?????? ?????????????? (?????? ???63) + +?????????????????????? ?? ????????????????????, ???????? "?????? ????????????????" = "???????????????? ??????????????????????????" + + + + + ?????? ?????????????? ?????? ?????? (?????? ???341) + +?????????????????????? ?? ????????????????????, ???????? "?????? ????????????????" = "???????????????? ??????" + + + + + + + + + + ?????? ?????????????? ?????? ?????????????????????? + +?????????????????????? ?? ????????????????????, ???????? "?????? ????????????????" = "???????????????? ??????????????????????" + + + + ???????? ?? ???????????? + + + + + ?????? ?? ???????????? + + + + + + ?????????????????? ???????????? ???????????????????????? ?????????? (???????????????????? ???????? ??????????\???????????? ???????????????????????? ???????????? ?????? 62). ?????? ?????????????? ???????????? ?????????????????? "???????????????? ???? ??????????????". + + + + + ?????????????????? ???????????? ???????????????????? ?????? (???????????????????? ?????????????? ?????????????????????? ?????? 25) + + + + + ??????????????, ?? ?????????????? ???????????????????? ??????????????????????. ?????????????????????? ???????????? ?????? ?????????????? "?????????????????????????? ???????? ???????????????????????????? ?????????????? ?????? ???????????????????? ???????????? ???????????????? ?????????????????????????? ?????????????????? ?? ?????????????????????????????? ???????? ?? ?????????? ???????????????? ??????????????????????" + + + + + ???????????????? ?? ???????????????????? ???????? + +?????????????????????? ???????????? ?????? ???????????????? ?? ?????????? "?????????????????????? ???????????????????????????? ???????????? ???????????????? ?? ?????????????????? ?????????? ??(??????) ????????" + + + + + + + + ?????????????????? ??????????????????. ?????????????????????? ?????? ?????????????????? ?? ?????????????? "?????????????????? ??????????????????" ?? ?? ???????????? ???????????????????? ???????????????? ???? "?????????????? ?????????????????????? ?? ???????????????????????????? ??????????????" + + + + + + + + + + + + ?????????????? ?????????????????? ?? ???????????????????? ?????? + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + +?????????????????????? ?? ????????????????????, ???????? "?????? ????????????????" = "???????????????? ??????????????????????????" ?? ???? ?????????????????? ??????/???????????????????? + + + + + ???????????????????????? ?????????????????????????? ??????????/ ???????????????????? + + + + + ?????????? ?????????????????? + + + + + ???????? ?????????????????????? ?????????????????? + + + + + ?????? ???????????????? + + + + ???????????????????????? ???????????????? + + + + + ?????????????????? ???????????????? + + + + + + ?????????? ???????????????????? + + + + ?????????????? ?????????????????????? (???????????????? ??????????) + + + + + + ???????? ???????????? ???????????? ?????????????? + + + + + ???????? ?????????????????? ???????????? ?????????????? + + + + + ?????????? ???????????? ?????????????? + + + + + + + + + + + + + + + ?????????? ?????????????????????? + + + + + + ???????? ?? ?????????? ???????????????????? ???????????????? + + + + + ?????????? ???????????????????? ???????????????? + + + + + + + + + + + + + + + ????????-?????????????? ?????????????????????? + + + + + + ???????? ???????????? ???????????? ?????????????? + + + + + ???????? ?????????????????? ???????????? ?????????????? + + + + + ?????????? ???????????? ?????????????? + + + + + + + + + + + ???????? ?? ?????????? ???????????????????? ???????????????? + + + + + ?????????? ???????????????????? ???????????????? + + + + + + + + + + + + + + + ?????????????? ?????????????????????? ?? ???????????????????????????? ?????????????? + + + + + + ???????? ?? ?????????? ???????????? ???????????????????? ?????????????????????? + + + + + ???????? ?? ?????????? ?????????????????? ???????????????????? ?????????????????????? + + + + + ?????????????? ???????????? ?????????????????????? ?? ???????????????????? ?????????? ?????????????? ?????????????????????????? + + + + + + + + + + ?????????????? ???????????????????????? ?? ?????????????????????? ?? (??????) ??????????????????????, ?????????????? ?????????? ???????????????????????? ???? ???????????? ???????????????? + + + + + + + + + + ??????????????, ?? ?????????????? ???????????????????? ?????????????????????? + + + + + ???????????? ?????? + +?????????????????????? ???????????? ???????? ?? tns:VotingSystem ?????????????? "???????????????????????? ???????????????????????????? ??????????????" ?????? "????????" + + + + + ???????????????? ???? ???????? + + + + + ?????????? ?????? ?????????????????????? ?????????? ???????????????????????????? ???????????? ???????????????? + + + + + + + + + + + + + + + + ?????? ???????????????? + +???????????????? ?????????????????? ????????????????: +-Owners - ???????????????? ?????????????????????????? +-Homeowners - ???????????????? ?????? +-Cooperative - ???????????????? ?????????????????????? + +???? ?????????????????? ?????????????????????????????? ???????????????? "???????????????? ??????????????????????????" + + + + + + ???????????????? + + + + + + ?????????? ?????????????? + + + + + ???????????? + + + + + + + + + + + ?????? ?????????????? (?????? ???63) + +?????????????????????? ?? ????????????????????, ???????? "?????? ????????????????" = "???????????????? ??????????????????????????" + + + + + ?????? ?????????????? ?????? ?????? (?????? ???341) + +?????????????????????? ?? ????????????????????, ???????? "?????? ????????????????" = "???????????????? ??????" + + + + + + + + + + ?????? ?????????????? ?????? ?????????????????????? + +?????????????????????? ?? ????????????????????, ???????? "?????? ????????????????" = "???????????????? ??????????????????????" + + + + ???????? ?? ???????????? + + + + + ?????? ?? ???????????? + + + + + + ?????????????????? ???????????? ???????????????????????? ?????????? (???????????????????? ???????? ??????????\???????????? ???????????????????????? ???????????? ?????? 62). ?????? ?????????????? ???????????? ?????????????????? "???????????????? ???? ??????????????". + + + + + ?????????????????? ???????????? ???????????????????? ?????? (???????????????????? ?????????????? ?????????????????????? ?????? 25) + + + + + ??????????????, ?? ?????????????? ???????????????????? ??????????????????????. ?????????????????????? ???????????? ?????? ?????????????? "?????????????????????????? ???????? ???????????????????????????? ?????????????? ?????? ???????????????????? ???????????? ???????????????? ?????????????????????????? ?????????????????? ?? ?????????????????????????????? ???????? ?? ?????????? ???????????????? ??????????????????????" + + + + + ???????????????? ?? ???????????????????? ???????? + +?????????????????????? ???????????? ?????? ???????????????? ?? ?????????? "?????????????????????? ???????????????????????????? ???????????? ???????????????? ?? ?????????????????? ?????????? ??(??????) ????????" + + + + + + + + ?????????????????? ??????????????????. ?????????????????????? ?????? ?????????????????? ?? ?????????????? "?????????????????? ??????????????????" ?? ?? ???????????? ???????????????????? ???????????????? ???? "?????????????? ?????????????????????? ?? ???????????????????????????? ??????????????" + + + + + + + + + + + + ???????????????? ???? ???????? + + + + + ???????????????????? ???????? (?????????????????????? ??????????????????) + + + + + + ???????????????????? ???????? (?????????????????????? ??????????????????) + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + +?????????? ???????????????????? ???????????????????? ???? ???????? + + + + + ?????????? ?????????????????????? ???????????????????? + + + + + + + + + + + ?????????? ?????????????????????? ???????????????? + + + + + + + + + + + ?????????? ?????????????????????? ?????????? + + + + + + + + + + + + + + ?????????????????????? ?????????????????? ???????????????? ???? ?????? ????. ???????? (????) + + + + + + + ?????????????????????????? ?????????????????? ?????? + + + + + ?????????????????? ?????????????????????????? ?????????????????? + + + + + + + + + + + ??????????????????????, ?????????????????? ?????????????? ???? ?????????????????????????? + + + + + ?????????????????????? ?????? ???????????????????? ????????, ?????????????????? ?????????????? ???? ?????????????????????????? + + + + + + ???????? ?????????????? ???? ??????????????????????????. ???? ?????????????????? ?????????????????????? ???????? ???????????????????? ?????????????????????????? + + + + + ?????????? ?????????????? ???? ?????????????????????????? + + + + + + + + + + ?????????????? ?????????????????????????? ???? ?????? (?????????271). ???? ?????????????????? ???????????? ?? ?????????? 3 "???????????? ??????????" + + + + + ?????????????????????? ?????????? ?????????????????? ???? ??????????????????????????. ?????????????????????? ???????????????????? ???????? ???? ???????????? ??????????, ???????? ?????????????? ?????????????????????????? ???? ?????? "?????????????? ????????" (?????? ???????????? 1) + + + + + + + ?????????? ?????? ?????????????????????? ?? ???????????????????????????? ?????????????? + + + + + ?????????? ?????????????????? + + + + + + + + + + ???????? ?????????????????????? ?????????????????? + + + + + ?????????????????????????? ???????????????? +???????????????????? ???????????????? +(C)OMPETENT - ???????????????????? (?????????? ????????????) +(N)OT_COMPETENT- ???? ???????????????????? (???????????? ??????????????????????) + + + + + + + + + + + + ???????????????? + + + + + + ?????????? ?????????????? + + + + + ???????????????????? ?????????????????????? + + + + ???????????????????? ?????????????????????? ???????? + + + + + ???????????????????? ?????????????????????? ???????????????? + + + + + ???????????????????? ?????????????????????? ?????????????????????????? + + + + + + ???????? ?????????????????????? +???????????????????? ????????????????: +DECISION_IS_(M)ADE - ?????????????? ?????????????? +DECISION_IS_(N)OT_MADE - ?????????????? ???? ?????????????? + + + + + + + + + + + + + + + + + ???????????????? ?????? (?????? ????????????????) + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ???????????????????????? ?????????????????????????? ??????????/ ???????????????????? + + + + + ?????????? ?????????????????? + + + + + + + + + + ???????? ?????????????????????? ?????????????????? + + + + + ?????????? ???????????????????? + + + + ?????????????? ?????????????????????? (???????????????? ??????????) + + + + + + ???????? ???????????? ???????????? ?????????????? ?????????????????????????? + + + + + ???????? ?????????????????? ???????????? ?????????????? + + + + + ?????????? ???????????? ?????????????? + + + + + + + + + + + + + + + ?????????? ?????????????????????? + + + + + + + + + ???????? ?? ?????????? ???????????????????? ???????????????? + + + + + + + + + + + ?????????????? ?????????????????????? ?? ???????????????????????????? ?????????????? + + + + + + ???????? ?? ?????????? ???????????? ???????????????????? ?????????????????????? + + + + + ???????? ?? ?????????? ?????????????????? ???????????????????? ?????????????????????? + + + + + ?????????????? ???????????? ?????????????????????? ?? ???????????????????? ?????????? ?????????????? ?????????????????????????? + + + + + + + + + + ?????????????? ???????????????????????? ?? ?????????????????????? ?? (??????) ??????????????????????, ?????????????? ?????????? ???????????????????????? ???? ???????????? ???????????????? + + + + + + + + + + ??????????????, ?? ?????????????? ???????????????????? ?????????????????????? + + + + + ???????????? ?????? + +?????????????????????? ???????????? ???????? ?? tns:VotingSystem ?????????????? "???????????????????????? ???????????????????????????? ??????????????" ?????? "????????" + + + + + + + + + ??????????-?????????????? ?????????????????????? + + + + + + + ???????? ?? ?????????? ???????????????????? ???????????????? + + + + + ?????????? ???????????????????? ???????????????? + + + + + + + + + + + ???????? ???????????? ???????????? ?????????????? ?????????????????????????? + + + + + ???????? ?????????????????? ???????????? ?????????????? + + + + + ?????????? ???????????? ?????????????? + + + + + + + + + + + + + + + + ?????? ???????????????? + +???????????????? ?????????????????? ????????????????: +-Owners - ???????????????? ?????????????????????????? +-Homeowners - ???????????????? ?????? +-Cooperative - ???????????????? ?????????????????????? + + + + + ?????? ???????????????? + + + + ???????????????????????? ???????????????? + + + + + ?????????????????? ???????????????? + + + + + + ???????????????? ???? ?????????????????????? ???????????????? + + + + + + ???????????????????? ???????? (?????????????????????? ??????????????????) + + + + + ?????????????????????? ?????????????????? ???????????????? ???? ?????? ????. ???????? (????) + + + + + + + + ?????????????????????????? ???????????????? +???????????????????? ???????????????? +(C)OMPETENT - ???????????????????? (?????????? ????????????) +(N)OT_COMPETENT- ???? ???????????????????? (???????????? ??????????????????????) + + + + + + + + + + + + ???????????????? + + + + + + + ?????????? ?????????????? + + + + + ???????????? + + + + + + + + + + + ?????? ?????????????? (?????? ???63) + + + + + ?????? ?????????????? ?????? ?????? (?????? ???341) + + + + + + + + + + ?????? ?????????????? ?????? ?????????????????????? + + + + ???????? ?? ???????????? + + + + + ?????? ?? ???????????? + + + + + + ???????????????????? ?????????????????????? + + + + ???????????????????? ?????????????????????? ???????? + + + + + ???????????????????? ?????????????????????? ???????????????? + + + + + ???????????????????? ?????????????????????? ?????????????????????????? + + + + + + ?????????????????? ???????????? ???????????????????????? ?????????? (???????????????????? ???????? ??????????\???????????? ???????????????????????? ???????????? ?????? 62) + + + + + ?????????????????? ???????????? ???????????????????? ?????? (???????????????????? ?????????????? ?????????????????????? ?????? 25) + + + + + ??????????????, ?? ?????????????? ???????????????????? ??????????????????????. ?????????????????????? ???????????? ?????? ?????????????? "?????????????????????????? ???????? ???????????????????????????? ?????????????? ?????? ???????????????????? ???????????? ???????????????? ?????????????????????????? ?????????????????? ?? ?????????????????????????????? ???????? ?? ?????????? ???????????????? ??????????????????????" + + + + + ???????????????? ?? ???????????????????? ???????? + +?????????????????????? ???????????? ?????? ???????????????? ?? ?????????? "?????????????????????? ???????????????????????????? ???????????? ???????????????? ?? ?????????????????? ?????????? ??(??????) ????????" + + + + + + ???????? ?????????????????????? +???????????????????? ????????????????: +DECISION_IS_(M)ADE - ?????????????? ?????????????? +DECISION_IS_(N)OT_MADE - ?????????????? ???? ?????????????? + + + + + + + + + + + + + + ?????????????????? ??????????????????. ?????????????????????? ?????? ???????????????????? ?????? ?? ?????????????? "????????????????" + + + + + + + + + + + + ???????????????????? ?? ??????????????, ?? ?????????????? ???????????????????? ???????????????? + + + + + ??????????????, ?? ?????????????? ???????????????????? ?????????????????????? + + + + + ?????????????????????? ???????? ?? VotingSystem ?????????????? "???????????????????????? ???????????????????????????? ??????????????" ?????? "???????? ??????????????" + + + + ???????????????????????? ?????????????? + + + + + + + + + + + ?????????????????????????? ??????????????. ?????????? ???????? ???????????????? ???????????? ???????? ?? VotingSystem ?????????????? "???????????????????????? ???????????????????????????? ??????????????" + + + + + + ?????????? ?? ???????? ????????????????. ?????????????????????? ???????? ?? VotingSystem ?????????????? "???????????????????????? ???????????????????????????? ??????????????" ?????? "???????? ??????????????" + + + + + + + + + + + + + + + ??????????????????/???????????????????? + + + + ?????????????????????? + + + + + ???????????????????? ???????? + + + + + + ??????????. ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ???????????????? + + + + + ???????? ???????????????? + + + + + ???????? ???????????? ???????????????? ???????????????? + + + + + ?????????????????????? ???????? ?????????????????? ???????????????? ???????????????? + + + + + ?????????????? ???????????????? + + + + + + + + + + ?????????????????????? + + + + + + + + + + ???????????? ?????????? ???? ???????????????????????????? ?? ?????????????????????? ?????????? ???????????? ?????????????????? ?????????????????????????? ?????????????????? ?? ?????? ?? ?????????? + + + + + ?????????????????????? ???????????????????????? ??????????????, ?????????????????? ???? ?????????????????????? ???????????? ???????????? ?????????????????? + + + + + + + + + + ?????????????????? ???????????????? (??????????????/???????????????????????????? ????????????????????) + + + + + ???????????????? ???????????????? ?????????????????????????? + + + + + + ???????????????? ???????????????? ?????????????????????????? (???????????????????? ???????????? ??????????????????) + + + + + + ?????????? ?????????????????? + + + + + + + + + + ???????? ?????????????????????? ?????????????????? + + + + + ??????????????????, ???????????????????????????? ???????????????????? ?????????????????? ?????????????? + + + + + + + + ?????????????????????????? ???????????? ?????????????????? ???????????????? ?????????????????????????? ?? ?????? ?????? (???????????????????? ?????????????????? ???? ?????????????? ???????????????? ?? ??????????????????????) + + + + + + + + ?????????????? ???????????????? ???? ?????????????????????????? ????????????? + + + + + + + + + ??????????????????/???????????????????? + + + + ?????????????????????? + + + + + ???????????????????? ???????? + + + + + + ??????????. ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ???????????????? + + + + + ???????? ???????????????? + + + + + ???????? ???????????? ???????????????? ???????????????? + + + + + ?????????????????????? ???????? ?????????????????? ???????????????? ???????????????? + + + + + ?????????????? ???????????????? + + + + + + + + + + ?????????????????????? + + + + + + + + + + ???????????? ?????????? ???? ???????????????????????????? ?? ?????????????????????? ?????????? ???????????? ?????????????????? ?????????????????????????? ?????????????????? ?? ?????? ?? ?????????? + + + + + + + + + + + ?????????????????????? ???????????????????????? ??????????????, ?????????????????? ???? ?????????????????????? ???????????? ???????????? ?????????????????? + + + + + + + + + + ?????????????????? ???????????????? (??????????????/???????????????????????????? ????????????????????) + + + + + ???????????????? ???????????????? ?????????????????????????? + + + + + + ???????????????? ???????????????? ?????????????????????????? (???????????????????? ???????????? ??????????????????) + + + + + + ?????????? ?????????????????? + + + + + + + + + + ???????? ?????????????????????? ?????????????????? + + + + + ??????????????????, ???????????????????????????? ???????????????????? ?????????????????? ?????????????? + + + + + + + + ?????????????????????????? ???????????? ?????????????????? ???????????????? ?????????????????????????? ?? ?????? ?????? (???????????????????? ?????????????????? ???? ?????????????? ???????????????? ?? ??????????????????????) + + + + + + + + + + ?????????????????? - ???????????????????? ???????? + + + + + + + ?????? (M- ??????????????, F-??????????????) + + + + + + + + + + + + + ???????? ???????????????? + + + + + + + + + ?????????? ???????????????? + + + + + + + + + + + + + + + ?????????????????????????? ???????????????? + + + + + + ????????????????, ???????????????????????????? ???????????????? (?????? 95) + + + + + ?????????? ?????????????????? + + + + + + + + + + + ?????????? ?????????????????? + + + + + + + + + + + ???????? ???????????? ?????????????????? + + + + + + + + ?????? ???????????????? + + + + + + + + + + ???????????? ?????????????????? ?? ???????????????????? ???????????? ???????????????? + + + + + + + + + + + + ??????????????, ?? ?????????????? ???????????????????? ???????????????? + + + + + ?????? ?????? + + + + + ?????????????????????? ?????????????????????????????? ???????????????????????????? ?????????????? ?????????????? ???????????? ?????????????????????????????? ?? ?????????????????????????? ???????????? (????????) + + + + + ???????????????????????? ???????????????????????????? ?????????????? + + + + + ???????? ?????????????? + + + + + + + ?????????? ?????????????? ?? ?????????????????????? + + + + + + + + + ?????????????? ???????????????????????? ???? ????????????????, ???????????????????? ?? ???????????????????? ?????????? + + + + + + + ???????????????? ?? ??????????????????????????. + +??????????????????????, ???????? ?? ?????????????????? ?????????????????? ?????????????????????????? ???????????????????????? + + + + + ???????????? ???????????????? + + + + + ?????????????????????? ?????????? ?????????????? ???????????????????????? + + + + + + + ?????????????? ???? ?????????????? + + + + + ?????????? ?????????????? + + + + + ?????????????? ???????????????????????? + + + + ?????????????? ???????????????????????? ???????? + + + + + ?????????????? ???????????????????????? ???????????????? + + + + + ?????????????? ???????????????????????? ?????????????????????????? + + + + + + ?????????????? "?????????????????????? ???????????????????????? ?? ???????????????????????????? ??????????????". ?????????? ???????? ?????????? true ???????????? ?????? ?????????????????????? ?? ???????????? ???????????????????? "?????????????? ?????????????????????? ?? ???????????????????????????? ??????????????" + + + + + + + ???????????????????????????? ?????????????? ???? ?????????????? + + + + + + ?????????? ?????????????? + + + + + ???????????? + + + + + + + + + + + + ?????????????? ???????????????????????? + + + + ?????????????? ???????????????????????? ???????? + + + + + ?????????????? ???????????????????????? ???????????????? + + + + + ?????????????? ???????????????????????? ?????????????????????????? + + + + + + ?????????????? "?????????????????????? ???????????????????????? ?? ???????????????????????????? ??????????????". ?????????? ???????? ?????????? true ???????????? ?????? ?????????????????????? ?? ???????????? ???????????????????? "?????????????? ?????????????????????? ?? ???????????????????????????? ??????????????" + + + + + + + ???????????????????? ???????? ?????? ?????????????? + + + + + + + + ?????????????????????????? ???????????????? ?????? ?????????????? + + + + + + ????????????????, ???????????????????????????? ???????????????? (?????? 95) + + + + + ?????????? ?????????????????? + + + + + + + + + + + ?????????? ?????????????????? + + + + + + + + + + + + + + ???????????????? ?? ???????????????????????? + + + + + + ???????????????????? ???????? (?????????????????????? ??????????????????) + + + + + + + ?????????????????? ???????????????????????????? ???????????????? + + + + + ?????????????????????????? ???????????????? ???????????????????????? + + + + + + + + + + ?????????????????????? ?????????????????????? ???? ?????? ????. ???????? (????) + + + + + + + + ???????????????? ?? ?????????????????????????? + + + + + + ?????????? ?????????????????????????????? ?????????????????????? + + + + + + + + + + ???????? ?????????????????????????????? ?????????????????????? + + + + + ?????????? ?????????????????? + + + + + ?????????? ?????????????? ?????????????????? + + + + + ?????? ?????????????????????????? + + + + + + ?????????????? + + + + + ???????????????????????????? + + + + + ???????????????????? + + + + + + + + ???????????? ????????, ?????????????????????????? ????????????????????????. +??????????????????????, ???????? "?????? ??????????????????????????"="??????????????" + + + + + + ???????? ??????????????????????????. ???????????? ???????? (??????????????????) + + + + + + + + + + + ???????? ??????????????????????????. ???????????? ???????? (??????????????????????) + + + + + + + + + + + + + + + + + ???????????????? ?? ?????????????????????????? ?????? ???????????????? + + + + + + ?????????? ?????????????????????????????? ?????????????????????? + + + + + + + + + + ???????? ?????????????????????????????? ?????????????????????? + + + + + ?????????? ?????????????????? + + + + + ?????????? ?????????????? ?????????????????? + + + + + ?????? ?????????????????????????? + + + + + + ?????????????? + + + + + ???????????????????????????? + + + + + ???????????????????? + + + + + + + + ???????????? ????????, ?????????????????????????? ????????????????????????. +??????????????????????, ???????? "?????? ??????????????????????????"="??????????????" + + + + + + ???????? ??????????????????????????. ???????????? ???????? (??????????????????) + + + + + + + + + + + ???????? ??????????????????????????. ???????????? ???????? (??????????????????????) + + + + + + + + + + + + + + + + + ???????????????? ?? ?????????????????????????? + + + + + + + ???????????????????? ???????? (??????????????????????????) + + + + + + + ?????????????????? ???????????????????????????? ???????????????? + + + + + ?????????????????????????? ???????????????? ?????????????????????????? + + + + + + + + + + ?????????????????????? ?????????????????????????? ???? ?????? ????. ???????? + + + + + + ?????????????????????????? ???????????????????????? ?????????????????? ???? ?????????????????? ????????????????????????, ???????????????????????????? ?????????????????????? + + + + + ????????????????, ???????????????????????????? ???????????????? ?????????????????????????????????? ???????????????????????? ?????????????????? + + + + + + + + ???????????????????? ?????????? ???????????????????????? + + + + + + + ???????????????? ?? ??????????????????????????. ??????????????????????, ???????? ?????????? ???????????? ???????????????????????????? ???????????????????????? + + + + + ?????????????????????? ?????????? ???????????? ???????????????????????? + + + + + + + ???????????? ?????????????????????? ???????????? ???????????????????????? + + + + + ???????????????? + + + + + ?????????????????????? + + + + + + + ???????????????????? ?????????? ???????????????????????? (?????? ????????????????) + + + + + ???????????????? ?????????????????????????? ?????????????????? ?? ???????????????????? ???????????? ???????????????? + + + + + ???????????????? ?????????????????????????? ?????????????????????? ???????????? ???????????????????????? + + + + + + + ???????????????? ?? ??????????????????????????. ??????????????????????, ???????? ?????????? ???????????? ???????????????????????????? ???????????????????????? + + + + + ?????????????????????? ?????????? ???????????? ???????????????????????? + + + + + ???????????? ?????????????????????? ???????????? ????????????????????????. +???????????????????? ????????????????: +-Posted-???????????????? +-Annuled-?????????????????????? + + + + + ???????? ?? ?????????? ???????????????????? ?????????????????????? ???????????? + + + + + + + ???????????? ?????????????????? ?????????? + + + + + ?????? ????????: MKD - ?????????????????????????????? ?????? ZHD - ?????????? ?????? ZHDBlockZastroyki - ?????????? ?????? ?????????????????????????? ?????????????????? + + + + + + + + + + + + ?????????? ???????? +???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ???????????????? (??????????????????) / ?????????? ?????????? + + + + + ?????????? ?????????????? (?????????????????????? ?? ???????????? ???????????????? ?????????????????????????? ??????????????????) + + + + + + + ???????????? ?????????????????? ?????????? (??????????????) + + + + + ?????? ????????: MKD - ?????????????????????????????? ?????? ZHD - ?????????? ?????? ZHDBlockZastroyki - ?????????? ?????? ?????????????????????????? ?????????????????? + + + + + + + + + + + + ?????????? ???????? +???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? + + + + + ?????????? ???????????????? (??????????????????) / ?????????? ?????????? + + + + + ?????????? ?????????????? (?????????????????????? ?? ???????????? ???????????????? ?????????????????????????? ??????????????????) + + + + + + + ?????????? ???????????????? ???????????????????? ???????????????? + + + + + + ?????????????????????????? ???????????????? ???????????????????? ???????????????? + + + + ?????????? + + + + + ???????????????? + + + + ???????????? ?????????????????? + + + + + ?????????? ?????????????????? + + + + + + + + + ???????????????? ?????????????????????????? + + + + + + + ?????????????????????? ???????? ?????? ???????????????????????????? ?????????????????????????????? ?? ???????? + + + + + + + + ???????????????????? ???????? ?? ???????? + + + + + ?????????????? + + + + + + + + + + + ?????? + + + + + + + + + + + ???????????????? + + + + + + + + + + + ?????? (M- ??????????????, F-??????????????) + + + + + + + + + + + + + ???????? ???????????????? + + + + + + + + + ?????????? ???????????????? + + + + + + + + + + + + + ???? ?? ???? ?????? ?????? ?? ???????????????? ???????????????????????????????? + + + + + ?????? ????. ???????????? ???? ?????? "?????? ???????????????????????? ????????????" (???????????????????? ?????????? 3) + + + + + + + + + + ???????????????????????? ????????????. ???????????? ???? ?????? "???????????????????????????? ????????????" (???????????????????? ?????????? 239) + + + + + + + + + + ???????? ???????????? ???????????????? ?????????????? + + + + + ???????? ?????????????????? ???????????????? ??????????????. ???????????????? ????????????????????????, ???????? ?????????????? ???????????????? ?? AutomaticRollOverOneYear ?????? ???? ?????????????? ???????????????? ?? IndefiniteTerm + + + + + + + ???????????????? ?????????? ???????????????? ?????????????? ???? ???????????????? + + + + + + + + + ???????????????? ???????????????????? ???????????????? + + + + + + + + + + + ???????????????????????? ?????????? ???????????????????? ???????????????? + + + + + + + + ???????????????? ???????????????????????????? ???? + + + + + ?????????????????? (????????????????) ?????????? ???? + + + + + + + + + + ?????????? ???? (?????????????????????? ?????? ???????????????????? ?????? ??????????????) + + + + + + + + + + ???????????? ???? (?????????????????????? ?????? ???????????????????? ?????? ??????????????) + + + + + + + + + + ???????? ?????????????????? + + + + + ???????? ?????????? ?? ???????????????????????? +???????? ??????????????????????, ???????? ?????? ???? ?????????????? ???? "???????????????????????? (??????????????????????)" + + + + + ?????????????? ?????????????????????? ???????????????????????????? ???????????? ?????????????????? + + + + + ???????????????????? ?? ?????????????? ?????????????????????? ???????????????????????????? ???????????? ?????????????????? ???? ?????????????????? ???????????????????????? ?????????????????????????? ?????????????? (?????????????????????? ?????? ????????????????????, ???????? tns:RemoteMeteringMode = true, ?? ?????????????????? ???????????? ???????? ???? ???????????????????????????? ?????? ??????????????) + + + + + + + + + + ???????? ?????????????????? ?????????????? (???????? ?????????????????????? ?????? ????????????????????, ???????? ???? - ???????????????????????? (??????????????????????)) + + + + + ?????????????????????????? ???????????????? (?????? 16) (???????? ?????????????????????? ?????? ????????????????????, ???????? ???? - ???????????????????????? (??????????????????????)) + + + + + ???????? ???????????????????????????? ???? ??????????????- ?????????????????????????? (?????????????????????? ?????? ???????????????????? ?????? ??????????????) + + + + + ?????????????? ???????????????? ???????????????????? + + + + + ?????????????? ???????????????? ???????????????? + + + + + ?????????????? ?????? ?????????????????????????? ?????????? ?????????????????????????? ?????? + + + + + + ???????????????????????????? ???????????????????????? ???? (?????? ?????????????? ?????????? = "???????????????????????? (??????????????????????)") + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? (?????? ?????????????? ?????????????????????? ?????? ???????????????????? ?????????? ?? ???????????? ??????????, ?????????? ?????????????????????? ???????????????? ?????????????? FIASHouseGuid) + + + + + ???????????????????? ?? ?????????????? ???????????????? ?????????????????????? ?? ?????????????????? ???? ???????????????????????????? ???? ???????? ?????????? (?????????????????????? ?????? ????????????????????, ???????? tns:TemperatureSensor = true, ?? ?????????????????? ???????????? ???????? ???? ???????????????????????????? ?????? ??????????????) + + + + + + + + + + ???????????????????? ?? ?????????????? ???????????????? ???????????????? ?? ?????????????????? ???? ???????????????????????????? ???? ???????? ?????????? (?????????????????????? ?????? ????????????????????, ???????? tns:PressureSensor = true, ?? ?????????????????? ???????????? ???????? ???? ???????????????????????????? ?????? ??????????????) + + + + + + + + + + ?????????????????????? ?????????? ?????????????? ???????? ?????????? + + + + + ?????????????????????? ?????????? ???????? ?????????? ???????? ?????????? ?? ???????????????????????? + + + + + + + + ???????????????????????????? ?????? ???????????? ?????????????????? (?????? ?????????????? ?????????? = "????????????????????????????") + + + + + + ?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????). +?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????). +?????????????????????? ?????? ?????????????? ???????????? 11.1.0.8 ?? ???????????????? ???????????? 11.1.0.2 ?? 14.8.0.1 + + + + + ?????????????????????????? ???? + + + + + ?????????????????????? ?????????? ???????? ?????????? ???????? ?????????? ?? ???????????????????????? + + + + + ?????????????????????? ?????? ???????????????? ?????? ???????????? 14.8.0.1. ?????? ?????????????? ???????????????????????? + + + + + + ?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????) ?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????). +?????????????????????? ?????? ???????????????? ???????????? 11.1.0.2 ?? 14.8.0.1 + + + + + ?????????? ?????????????????? + + + + + + + + + + ???????????????? ???????????????????????? ???? ?????? ?????? ???????????? ?????????????????? + + + + + + + + ???????????????????????????? ?????? ???????????????? ?????????????????? (?????? ?????????????? ?????????? = "????????????????????????????") + + + + + + ?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????). +?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????). +?????????????????????? ?????? ?????????????? ???????????? 11.1.0.8 ?? ???????????????? ???????????? 11.1.0.2 ?? 14.8.0.1 + + + + + ?????????????????????????? ???? + + + + + ?????????????????????? ?????????? ???????? ?????????? ???????? ?????????? ?? ???????????????????????? + + + + + ?????????????????????? ?????? ???????????????? ?????? ???????????? 14.8.0.1. ?????? ?????????????? ???????????????????????? + + + + + + ?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????) ?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????). +?????????????????????? ?????? ???????????????? ???????????? 11.1.0.2 ?? 14.8.0.1 + + + + + ?????????? ?????????????????? + + + + + + + + + + ???????????????? ???????????????????????? ???? ?????? ?????? ???????????????? ?????????????????? + + + + + + + + ???????????????????????????? ?????? ???????????? ???????? (?????? ?????????????? ?????????? = "????????????????????????????", ?????? ???????? = "??????????") + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ???????? (?????? ?????????????? ?????????????????????? ?????? ???????????????????? ?????????? ?? ???????????? ??????????, ?????????? ?????????????????????? ???????????????? ?????????????? FIASHouseGuid) + + + + + ?????????????????????????? ???? + + + + + ?????????????????????? ?????????? ???????? ?????????? ???????? ?????????? ?? ???????????????????????? + + + + + + + ???????????????? ???????????????????????? ???? ?????? ?????? ???????????? ???????? + + + + + + + + ???????????????????????????? ???????????????????? ?????? (?????? ?????????????? ?????????? = "??????????????????") + + + + + + ?????????????????????????? ??????????????. +?????????????????????? ?????? ?????????????? ?? ???????????????? ???????????? 11.1.0.2 + + + + + ?????????????????????????? ???? + + + + + ?????????????????????? ?????????? ???????? ?????????? ???????? ?????????? ?? ???????????????????????? + + + + + ?????????????????????? ?????? ???????????????? ?????? ???????????? 14.8.0.1. ?????? ?????????????? ???????????????????????? + + + + + + ?????????????????????????? ?????????????? + + + + + ?????????? ?????????????? + + + + + + + + + + ???????????????? ???????????????????????? ???? ?????? ???????????????????? ?????? + + + + + + + + ???????????????????????????? ?????????????????????????????? ???? (?????? ?????????????? ?????????????????????????? ??????????????????) (?????? ?????????????? ?????????? = "?????????? (????????????????????)") + + + + + + ?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????). +?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????). +?????????????????????? ?????? ?????????????? ???????????? 11.1.0.8 ?? ???????????????? ???????????? 11.1.0.2 ?? 14.8.0.1 + + + + + ?????????????????????????? ???? + + + + + ?????????????????????? ?????????? ???????? ?????????? ???????? ?????????? ?? ???????????????????????? + + + + + ?????????????????????? ?????? ???????????????? ?????? ???????????? 14.8.0.1. ?????? ?????????????? ???????????????????????? + + + + + + ?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????) ?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????). +?????????????????????? ?????? ???????????????? ???????????? 11.1.0.2 ?? 14.8.0.1 + + + + + ?????????? ?????????????????? + + + + + + + + + + ???????????????? ???????????????????????? ???? ?????? ?????????????????????????????? ???? + + + + + + + + + + + ?????? ?????? ???????????????? ????, ???????????????????????????? ???? ???? ???????????? ???????????????? ??????????????????, ?? ?????????? ?????? ???????????????? ???????????????? ?? ???? + + + + + ???????????????? ???????????????????????????? + + + + + ???????????????????? ?? ?????????? ???????????????? ???? ?? ?????????????? ????. ?????? ???????????????????? ???????????? ?? ????, ???????? ???? ?????????? ?????????? ?? ?????????????? ????, ???????????????????? ?????????????????? ???????????????????? ?????????????????? ?????????????????? ???? + + + + ?????????? ??????????????(????) ???????????????????????? ???????????? ?? ?????????????? ???????????????? ???? (???????????? ?? ?????????????? ???? ??????) + + + + + ?????????? ??????????????(????) ???????????????????????? ?? ?????????????? ???????????????????? ???????????????? ?????????? + + + + + + ?????????? ?????????????????? ???????????????? ?????????????? ??????????. ?????????????????? ????????????????: in - ???? ??????????/???? ???????????????? ????????????????????????, out - ???? ????????????/???? ???????????????? ????????????????????????. ???????? ???????????? ?????????? ???????????????? ?????????????????????????? ??????????????, ???? ???? ?????????????????????????????? ???? ??????????/???? ????????????; ???????? ???????????? ?????????? ???????????????? ???????????????????????? ????????????, ???????????????? ???? ?????????????????????????? ??????????????, ???? ???? ?????????????????????????????? ???? ???????????????? ???????????????????????? / ???? ???????????????? ???????????????????????? + + + + + + + + + + + ?????????????????????????? ???????????? ????, ?????????????????????? ?? ?????? ??????, ?? ?????????????? ?????????????????? ???????????????????? ?????????? ???????????????? ???? + + + + + + + + + + ???????????????? ?? ???????????????????????? ?????????????? ?? ?????????????????? ???????????????????? ?????????????????? ???? (???????????????? ??????????????, ??????, ?????????????? ????????, ???????????????? ????????, ?????????????? ?????????????? ????????). ?????????????????????? ???????????? ?????? ????, ?????????????????????????????? ?????????????????? + + + + + ?????????????????? ???????????????????? ?????????????????? ?? ?????????????????????? ?????????????????????????? ?????? ????, ?????????????????????? ????????????????????????????. ?????????????????????? ???????????? ?????? ????, ?????????????????????????????? ?????????????????? + + + + + ???????????????? ?? ???????????????????????? ???????????????? ???? (????????????????????????????, ???????????????? ??????????????, ??????, ?????????????? ????????, ???????????????? ????????, ?????????????? ?????????????? ????????). ?????????????????????? ???????????? ?????? ????, ?????????????????????????????? ?????????? ?????????????????????????? ???? + + + + + + + + ?????? ?????? ???????????????? ????, ???????????????????????????? ???? ???? ???????????? ???????????????? ??????????????????, ?? ?????????? ?????? ???????????????? ???????????????? ?? ???? + + + + + ???????????????? ???????????????????????????? + + + + + ???????????????????? ?? ?????????? ???????????????? ???? ?? ?????????????? ????. ?????? ???????????????????? ???????????? ?? ????, ???????? ???? ?????????? ?????????? ?? ?????????????? ????, ???????????????????? ?????????????????? ???????????????????? ?????????????????? ?????????????????? ???? + + + + ?????????? ??????????????(????) ???????????????????????? ???????????? ?? ?????????????? ???????????????? ???? (???????????? ?? ?????????????? ???? ??????) + + + + + ?????????? ??????????????(????) ???????????????????????? ?? ?????????????? ???????????????????? ???????????????? ?????????? + + + + + + ?????????? ?????????????????? ???????????????? ?????????????? ??????????. ?????????????????? ????????????????: in - ???? ??????????/???? ???????????????? ????????????????????????, out - ???? ????????????/???? ???????????????? ????????????????????????. ???????? ???????????? ?????????? ???????????????? ?????????????????????????? ??????????????, ???? ???? ?????????????????????????????? ???? ??????????/???? ????????????; ???????? ???????????? ?????????? ???????????????? ???????????????????????? ????????????, ???????????????? ???? ?????????????????????????? ??????????????, ???? ???? ?????????????????????????????? ???? ???????????????? ???????????????????????? / ???? ???????????????? ???????????????????????? + + + + + + + + + + + ?????????????????????????? ???????????? ????, ?????????????????????? ?? ?????? ??????, ?? ?????????????? ?????????????????? ???????????????????? ?????????? ???????????????? ???? + + + + + + + + + + ???????????????? ?? ???????????????????????? ?????????????? ?? ?????????????????? ???????????????????? ?????????????????? ???? (???????????????? ??????????????, ??????, ?????????????? ????????, ???????????????? ????????, ?????????????? ?????????????? ????????). ?????????????????????? ???????????? ?????? ????, ?????????????????????????????? ?????????????????? + + + + + ?????????????????? ???????????????????? ?????????????????? ?? ?????????????????????? ?????????????????????????? ?????? ????, ?????????????????????? ????????????????????????????. ?????????????????????? ???????????? ?????? ????, ?????????????????????????????? ?????????????????? + + + + + ???????????????? ?? ???????????????????????? ???????????????? ???? (????????????????????????????, ???????????????? ??????????????, ??????, ?????????????? ????????, ???????????????? ????????, ?????????????? ?????????????? ????????). ?????????????????????? ???????????? ?????? ????, ?????????????????????????????? ?????????? ?????????????????????????? ???? + + + + + + + + ?????? ?????? ???????????????????????????? ???? ?????????? ???????????? ???????????????? ?????????????????? + + + + + ?????????????????? (????????????????) ?????????? ???? + + + + + + + + + + ?????????? ???? (?????????????????????? ?????? ???????????????????? ?????? ??????????????) + + + + + + + + + + ???????????? ???? (?????????????????????? ?????? ???????????????????? ?????? ??????????????) + + + + + + + + + + ???????? ?????????????????? + + + + + ???????? ?????????? ?? ???????????????????????? + + + + + ?????????????? ?????????????????????? ???????????????????????????? ???????????? ?????????????????? + + + + + ???????????????????? ?? ?????????????? ?????????????????????? ???????????????????????????? ???????????? ?????????????????? ???? ?????????????????? ???????????????????????? ?????????????????????????? ?????????????? (?????????????????????? ?????? ????????????????????, ???????? tns:RemoteMeteringMode = true, ?? ?????????????????? ???????????? ???????? ???? ???????????????????????????? ?????? ??????????????) + + + + + + + + + + ?????????????? ???????????????? ???????????????????? + + + + + ?????????????? ???????????????? ???????????????? + + + + + ???????????????????????????? ???????????????????????? ???? (???????????????? ?????????????????????? "?????? ?????????????? ??????????" = ???????????????????????? (????????????????????????)) + + + + + + ???????????????????? ?? ?????????????? ???????????????? ?????????????????????? ?? ?????????????????? ???? ???????????????????????????? ???? ???????? ?????????? (?????????????????????? ?????? ????????????????????, ???????? tns:TemperatureSensor = true, ?? ?????????????????? ???????????? ???????? ???? ???????????????????????????? ?????? ??????????????) + + + + + + + + + + ???????????????????? ?? ?????????????? ???????????????? ???????????????? ?? ?????????????????? ???? ???????????????????????????? ???? ???????? ?????????? (?????????????????????? ?????? ????????????????????, ???????? tns:PressureSensor = true, ?? ?????????????????? ???????????? ???????? ???? ???????????????????????????? ?????? ??????????????) + + + + + + + + + + + + + ?? ???????????? ?????????????????? ?????????????? ???????????? ???????????????????? ???????????????? ???? ???????????????????? ???????????????? (???????????? ?????????? ?????????????????? ????????????????) + + + + + ?????????????????????? ?????????? ???????? ?????????? ???????? ?????????? ?? ???????????????????????? + + + + + ?????????????????????? ???????????? ?????? ????, ?????????????????????????????? ?????????????????? + + + + ???????????? ???? ?????????????????? ?????????????? ??????????????????. ???????????????????????? ???????????? (???????????????? ??????????????, ??????, ?????????????? ????????, ???????????????? ????????, ?????????????? ?????????????? ????????) ???????????? ???????? ???????????? ?????? ????, ?????? ?? ?????? ???????????????? ???? + + + + + ???????????? ???? ?????????????????? ?????????????? ?????????????????? ???? ?????????????????????????? ??????????????. ???????????????????? ???????????????? ?????? ???????????????????? ?????????????? ?????????????????? ?? ?????????????????????? ?? ?????????? ???? ???? ???????????????????? ?????????????? (???????? ???????? ?????????????????? ?????????????????????????????? ???????????? ???????? ??????????????????). + + + + + + ???????? ?????????????????? ?????????????? (???????? ?????????? ?????????????????????????? ?????????? ???????????? ???????????????? ??????????????????, ???? ?????????????????? ?? ???????????????????????????? ?????????? ???????????????? ???????????? ??????????????) + + + + + ???????? ???????????????????????????? ???? ??????????????-?????????????????????????? + + + + + ?????????????? ?????? ?????????????????????????? ?????????? ?????????????????????????? ?????? + + + + + ???????????????????? ?? ?????????? ???????????????? ???? ?? ?????????????? ????. ?????? ???????????????????? ???????????? ?? ????, ???????? ???? ?????????? ?????????? ?? ?????????????? ????, ???????????????????? ?????????????????? ???????????????????? ?????????????????? ?????????????????? ???? + + + + ?????????? ??????????????(????) ???????????????????????? ???????????? ?? ?????????????? ???????????????? ???? (???????????? ?? ?????????????? ???? ??????) + + + + + ?????????? ??????????????(????) ???????????????????????? ?? ?????????????? ???????????????????? ???????????????? ?????????? + + + + + + ?????????? ?????????????????? ???????????????? ?????????????? ??????????. ?????????????????? ????????????????: in - ???? ??????????/???? ???????????????? ????????????????????????, out - ???? ????????????/???? ???????????????? ????????????????????????. ???????? ???????????? ?????????? ???????????????? ?????????????????????????? ??????????????, ???? ???? ?????????????????????????????? ???? ??????????/???? ????????????; ???????? ???????????? ?????????? ???????????????? ???????????????????????? ????????????, ???????????????? ???? ?????????????????????????? ??????????????, ???? ???? ?????????????????????????????? ???? ???????????????? ???????????????????????? / ???? ???????????????? ???????????????????????? + + + + + + + + + + + ?????????????????????????? ???????????? ????, ?????????????????????? ?? ?????? ??????, ?? ?????????????? ?????????????????? ???????????????????? ?????????? ???????????????? ???? + + + + + + + + + ?????????????????? ???????????? ???????????????????????????? ???? + + + + + + ???????????????????????????? ?????? ???????????? ?????????????????? (?????? ?????????????? ?????????? = "????????????????????????????") + + + + + + ?????????????????????????? ?????????????????? (?????? = ?????????? ??????????????????) + + + + + + + + ???????????????????????????? ?????? ???????????????? ?????????????????? (?????? ?????????????? ?????????? = "????????????????????????????") + + + + + + ?????????????????????????? ?????????????????? (?????? = ?????????????? ??????????????????) + + + + + + + + ???????????????????????????? ?????? ???????????? ???????? (?????? ?????????????? ?????????? = "????????????????????????????", ?????? ???????? = "??????????") + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ????????, ?????????????? ???????????????????? ???????????????????? ?? ???????????????? ???????????? ???? (???? ???????????? ?????????????????????? ?????? ?????????????? tns:importMeteringDeviceDataRequest/tns:FIASHouseGuid) + + + + + ?????????????? "???????????????? ?????????? ???? ???? ?????????? ????????, ?????????????????? ?? tns:importMeteringDeviceDataRequest/tns:FIASHouseGuid?" + + + + + + + + ???????????????????????????? ???????????????????????? ???? (?????? ?????????????? ?????????? = "???????????????????????? (??????????????????????)") + + + + + + ???????????????????? ???????????????????? ?????????????????????????? ???????? ???? ????????, ?????????????? ???????????????????? ???????????????????? ?? ???????????????? ???????????? ???? (???? ???????????? ?????????????????????? ?????? ?????????????? tns:importMeteringDeviceDataRequest/tns:FIASHouseGuid) + + + + + ?????????????? "???????????????? ?????????? ???? ???? ?????????? ???????? ???????????????????? ?? tns:importMeteringDeviceDataRequest/ tns:FIASHouseGuid?" + + + + + + + + ???????????????????????????? ???????????????????? ?????? (?????? ?????????????? ?????????? = "??????????????????" + + + + + + ?????????????????????????? ?????????????? + + + + + + + + ???????????????????????????? ?????????????????????????????? ???? (?????? ?????????????? ?????????????????????????? ??????????????????) (?????? ?????????????? ?????????? = "?????????? (????????????????????)") + + + + + + ?????????????????????????? ???????????? ?????????????????? + + + + + + + + + + + + + ???????????????? ?? ???????????????????????? ?????????????? ???? ?? ?????????????????? ???????????????????? ?????????????????? (???????????????? ????????, ?????????????? ????????, ???????????????? ??????????????, ??????, ?????????????? ?????????????? ????????). ???????????????????????? ?????? ???????????????? / ?????????????????? ???? ?????? ?????????????????????? ???? + + + + + + + ?????? ?????????????? ?????????????????? ?????????????????? ???? (???? ???????????????????????? ???????????????????????????? ????????). ???????????????????? ?????? ????????????????????, ???????? ???? ?????????????????? ???? ???????????????????? ???? ???? ?????????????????????????? ?????????????? ???? ?????????????????? + + + + + 112: ????????, 113: ???????????????????? ????????, 233: ??????????????????????, 245: ????????????????-??????, 246: ????????????????-??????, 271: ????????????, A056: ????????????????????, A058: ???????????????????? + + + + + + + + + + + + + + + + + + + ???????????????? ?? ???????????????????????? ?????????????? ???? ?? ?????????????????? ???????????????????? ?????????????????? (???????????????? ????????, ?????????????? ????????, ???????????????? ??????????????, ??????, ?????????????? ?????????????? ????????). ???????????????????????? ?????? ???????????????? / ?????????????????? ???? ?????? ?????????????????????? ???? + + + + + + + ?????? ?????????????? ?????????????????? ?????????????????? ???? (???? ???????????????????????? ???????????????????????????? ????????). ???????????????????? ?????? ????????????????????, ???????? ???? ?????????????????? ???? ???????????????????? ???? ???? ?????????????????????????? ?????????????? ???? ?????????????????? + + + + + 112: ????????, 113: ???????????????????? ????????, 233: ??????????????????????, 245: ????????????????-??????, 246: ????????????????-??????, 271: ????????????, A056: ????????????????????, A058: ???????????????????? + + + + + + + + + + + + + + + ???????????????? ?????????????????? ????, ???????????????????? ?? ???????????????? ?????????????????? ?????????????????????????? ?????????????? ???? ??????????????????. ??????????????????????, ???????? ???? ?????????????????? ???? ???????????????????? ???? ???? ???? ???? ?????????????????? + + + + + + ???????????????? + + + + + ?????????????? ?????????????????? ?????????????????????????? ?????????????? ???? ?????????????????? + + + + + + + + + + + + ???????????? ?????????????????????????? ????: ???????????????????????? ????????????, ?????????????????? ???????????????????? ?????????????????? ?? ???????????????? ?????????????????? ???? ?? (???????? ????????????????????) ?? ???????????????? ?????????????????? ?????????????????????????? ?????????????? ???? ??????????????????, ???????????????? ???????????? ?? ???????????????????? ????. ???????????????????????? ?????? ???????????????? ???????????? ???? + + + + + + + ???????????????? ?????????????????? ????, ???????????????????? ?? ???????????????? ?????????????????? ?????????????????????????? ?????????????? ???? ??????????????????. ??????????????????????, ???????? ???? ?????????????????? ???? ???????????????????? ???? ???? ???? ???? ?????????????????? + + + + + + ???????????????? + + + + + ?????????????? ?????????????????? ?????????????????????????? ?????????????? ???? ?????????????????? + + + + + + + + ?????? ?????????????? + + + + + ?????????????????????????? ??????????????????????, ?????????????? ?????????? ?????????????????? ?? ??????????????. ???? ??????????????????????, ???????? ?????????????????? ???????? ?????????????? ?????????????????????? + + + + + + + + + ?????????????????? ???????????????????? ?????????????????? (?????????????????????????? ??????????????) ?? ???????????????? ?? ???? (??????????. ?????????????????????????? ?? ????). ?? ?????????????????????? ???? ???????????????????? ??????????????????, ???????????????? ?????? ???????????????? ????, ???????????????????????? ?????? ?????? ???? ???????????????????? ?????????????? + + + + + + + ?????????????????????? ?????????????????????????? + + + + + + + + + + + + ?????? ?????????????? ?????????????????? ?????????????????? ???? (???? ???????????????????????? ???????????????????????????? ????????). ???????????????????? ?????? ????????????????????, ???????? ???? ?????????????????? ???? ???????????????????? ???? ???? ?????????????????????????? ?????????????? ???? ?????????????????? + + + + + 245: ????????????????-?????? + + + + + + + + + + + + ?????????????????? ???????????????????? ?????????????????? (?????????????????????????? ??????????????) ?? ???????????????????? ???????????????? ?? ???? (??????????. ??????????????????????????). ?? ?????????????????????? ???? ???????????????????? ??????????????????, ???????????????? ?????? ???????????????? ????, ???????????????????????? ?????? ?????? ???? ???????????????????? ??????????????. + + + + + + + ?????????????????????? ?????????????????????????? + + + + + + + + + + + + + + + + ???????????? ???????????????????????????? ????: ???????????????????????? ????????????, ?????????????????? ???????????????????? ?????????????????? ?? ???????????????? ?????????????????? ???? ?? (???????? ????????????????????) ?? ???????????????? ?????????????????? ?????????????????????????? ?????????????? ???? ??????????????????, ???????????????? ???????????? ?? ???????????????????? ????. ???????????????????????? ?????? ???????????????? ???????????? ???? + + + + + + + ?????????????????????? ?????????????????????????? + + + + + + + + + + + + ?????? ?????????????? ?????????????????? ?????????????????? ???? (???? ???????????????????????? ???????????????????????????? ????????). ???????????????????? ?????? ????????????????????, ???????? ???? ?????????????????? ???? ???????????????????? ???? ???? ?????????????????????????? ?????????????? ???? ?????????????????? + + + + + 245: ????????????????-?????? + + + + + + + + ???????????????? ?????????????????? ????, ???????????????????? ?? ???????????????? ?????????????????? ?????????????????????????? ?????????????? ???? ??????????????????. ??????????????????????, ???????? ???? ?????????????????? ???? ???????????????????? ???? ???? ???? ???? ?????????????????? + + + + + + ???????????????? ???? ???????????? T1 + + + + + ???????????????? ???? ???????????? T2 + + + + + ???????????????? ???? ???????????? T3 + + + + + ?????????????? ?????????????????? ?????????????????????????? ?????????????? ???? ?????????????????? + + + + + + + + + + + + ???????????? ???????????????????????????? ????: ???????????????????????? ????????????, ?????????????????? ???????????????????? ?????????????????? ?? ???????????????? ?????????????????? ???? ?? (???????? ????????????????????) ?? ???????????????? ?????????????????? ?????????????????????????? ?????????????? ???? ??????????????????, ???????????????? ???????????? ?? ???????????????????? ????. ???????????????????????? ?????? ???????????????? ???????????? ???? + + + + + + + ???????????????? ?????????????????? ????, ???????????????????? ?? ???????????????? ?????????????????? ?????????????????????????? ?????????????? ???? ??????????????????. ??????????????????????, ???????? ???? ?????????????????? ???? ???????????????????? ???? ???? ???? ???? ?????????????????? + + + + + + ???????????????? ???? ???????????? T1 + + + + + ???????????????? ???? ???????????? T2 + + + + + ???????????????? ???? ???????????? T3 + + + + + ?????????????? ?????????????????? ?????????????????????????? ?????????????? ???? ?????????????????? + + + + + + + + ?????? ?????????????? + + + + + ?????????????????????????? ??????????????????????, ?????????????? ?????????? ?????????????????? ?? ??????????????. ???? ??????????????????????, ???????? ?????????????????? ???????? ?????????????? ?????????????????????? + + + + + + + + + ???????????????? ?? ???????????????????????? ?????????????? ???? (????????????????????????????, ???????????????? ??????????????, ??????, ?????????????? ????????, ???????????????? ????????, ?????????????? ?????????????? ????????) + + + + + ???????????????????????? ???????????? (????????????????????????????, ???????????????? ??????????????, ??????, ?????????????? ????????, ???????????????? ????????, ?????????????? ?????????????? ????????) (?????? 2) + + + + + ?????? ?????????????? ?????????????????? ?????????????????? ???? ???? ???? + + + + + + + + + + + + + + + + + ???????????????????? ?????????????? ???? (1, 2 ?????? 3). ?????????????????????? ???????????? ?????? ???? - ???????????????????????????? + + + + + + + + + + + ?????????????????????? ??????????????????????????. ?????????? ?????????????????????? ???????????? ?????? ???? ???????????????????????????? + + + + + + + + + + + + + + ???????????????????? ???? ?????????????????????????? (??????????????) + + + + + ?????????????? ???????????????????????? + + + + + + + + + + + + ???????????? ?????????????????? + + + + + + ?????? ?????????????????? ?? ?????????????????????????? ???????????????? ???????????????????? ?????????????????? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + ?????? ?????????????????? ?? ?????????????????????????? ?????????????????????????? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + + ?????? ?????????????????? (?????????????????????? ???????????????????? ???? ?????????????????????? ?????? 362) + + + + + + + ???????????? ?????????????????? ?????? ???????????????? + + + + + ?????? ?????????????????? ?? ?????????????????????????? ?????????????????????????? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + ?????? ?????????????????? ?? ?????????????????????????? ???????????????? ???????????????????? ?????????????????? ?? ?? ???????????? ???????????? ???????????????????????? ?? ???????????????? ?????????????????? + + + + + ?????? ?????????????????? (???????????????? ???? ?????????????????????? 362) + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-individual-registry-base.xsd b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-individual-registry-base.xsd new file mode 100644 index 0000000..0ff232e --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-individual-registry-base.xsd @@ -0,0 +1,157 @@ + + + + + + + Удостоверение личности + + + + + + Документ, удостоверяющий личность (НСИ 95) + + + + + Серия документа + + + + + + + + + + + Номер документа + + + + + + + + + + + Дата выдачи документа + + + + + + + + Физическое лицо + + + + + + + + + + + + + + + + + + СНИЛС + + + + + + + + + + + Фамилия + + + + + + + + + + + Имя + + + + + + + + + + + Отчество + + + + + + + + + + + ФИО + + + + + + + + + + ФИО + + + + + + + + + + Пол (M- мужской, F-женский) + + + + + + + + + + + + + Дата рождения + + + + + Место рождения + + + + + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-metering-device-base.xsd b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-metering-device-base.xsd new file mode 100644 index 0000000..c009401 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-metering-device-base.xsd @@ -0,0 +1,159 @@ + + + + + + + Идентификатор ПУ + + + + + + Показание ПУ. Значение (15 до запятой, 7 после) + + + + + + + + Коммунальный ресурс и показание ПУ для однотарифного ПУ. Используется при импорте показаний поверки и фиксации показаний ПУ при его замене, а также, как базовый класс для других типов + + + + + Коммунальный ресурс (тепловая энергия, газ, горячая вода, холодная вода, сточные бытовые воды) (НСИ 2) + + + + + Значение + + + + + + + Данные однотарифного ПУ: коммунальный ресурс, последнее полученное показание в единицах измерения ПУ, источник данных о показаниях ПУ. Используется при экспорте данных ПУ + + + + + + + Кем внесено + + + + + Идентификатор организации, которая ввела показания в Систему. Не заполняется, если показания были введены гражданином + + + + + + + + + Данные однотарифного ПУ: коммунальный ресурс, последнее полученное показание в единицах измерения ПУ, источник данных о показаниях ПУ, время внесения в Систему. Используется при экспорте показаний ПУ + + + + + + + Дата и время внесения в Систему + + + + + + + + + Показания ПУ электрической энергии. Используется при импорте показаний поверки и фиксации показаний ПУ при его замене, а также, как базовый класс для других типов + + + + + Значение по тарифу T1 + + + + + Значение по тарифу T2 + + + + + Значение по тарифу T3 + + + + + + + Данные многотарифного ПУ: коммунальный ресурс, последние полученные показания в единицах измерения ПУ, источник данных о показаниях ПУ. Используется при экспорте данных ПУ + + + + + + + Кем внесено + + + + + Идентификатор организации, которая ввела показания в Систему. Не заполняется, если показания были введены гражданином + + + + + + + + + Данные многотарифного ПУ: коммунальный ресурс, последнее полученное показание в единицах измерения ПУ, источник данных о показаниях ПУ, время внесения в Систему. Используется при экспорте показаний ПУ + + + + + + + Дата и время внесения в Систему + + + + + + + + + Объемы потребленных ресурсов по ПУ (электроэнергия, тепловая энергия, газ, горячая вода, холодная вода, сточные бытовые воды) + + + + + Коммунальный ресурс (электроэнергия, тепловая энергия, газ, горячая вода, холодная вода, сточные бытовые воды) (НСИ 2) + + + + + Объем по тарифу T1 + + + + + Объем по тарифу T2 + + + + + Объем по тарифу T3 + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-nsi-base.xsd b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-nsi-base.xsd new file mode 100644 index 0000000..cbd302d --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-nsi-base.xsd @@ -0,0 +1,427 @@ + + + + + + + + + + + + Ссылка на справочник + + + + + Код записи справочника + + + + + Идентификатор записи в соответствующем справочнике ГИС ЖКХ + + + + + Значение + + + + + + + + + + + + Скалярный тип. Наименование справочника. Строка не более 200 символов. + + + + + + + + Скалярный тип. Реестровый номер справочника. Код не более 10 символов. + + + + + + + + Составной тип. Наименование, дата и время последнего изменения справочника. + + + + + Реестровый номер справочника. + + + + + Наименование справочника. + + + + + Дата и время последнего изменения справочника. + + + + + + + Перечень справочников с датой последнего изменения каждого из них. + + + + + Дата и время формирования перечня справочников. + + + + + Наименование, дата и время последнего изменения справочника. + + + + + + + + Данные справочника. + + + + + Реестровый номер справочника. + + + + + Дата и время формирования данных справочника. + + + + + Элемент справочника верхнего уровня. + + + + + + + Составной тип. Элемент справочника. + + + + + Код элемента справочника, уникальный в пределах справочника. + + + + + Глобально-уникальный идентификатор элемента справочника. + + + + + + Дата и время последнего изменения элемента справочника (в том числе создания). + + + + + + Дата начала действия значения + + + + + Дата окончания действия значения + + + + + + + Признак актуальности элемента справочника. + + + + + Наименование и значение поля для элемента справочника. + + + + + Дочерний элемент. + + + + + + + Составной тип. Наименование и значение поля для элемента справочника. Абстрактный тип. + + + + + Наименование поля элемента справочника. + + + + + + + Составной тип. Наименование и значение поля типа "Строка" для элемента справочника. + + + + + + + Значение поля элемента справочника типа "Строка". + + + + + + + + + Составной тип. Наименование и значение поля типа "Да/Нет" для элемента справочника. + + + + + + + Значение поля элемента справочника типа "Да/Нет". + + + + + + + + + Составной тип. Наименование и значение поля типа "Вещественное" для элемента справочника. + + + + + + + Значение поля элемента справочника типа "Вещественное". + + + + + + + + + Составной тип. Наименование и значение поля типа "Дата" для элемента справочника. + + + + + + + Значение поля элемента справочника типа "Дата". + + + + + + + + + Составной тип. Наименование и значение поля типа "Целое число" для элемента справочника. + + + + + + + Значение поля элемента справочника типа "Целое число". + + + + + + + + + Составной тип. Наименование и значение поля типа "Перечислимый" для элемента справочника. + + + + + + + Запись элемента справочника типа "Перечислимый". + + + + + + Код поля элемента справочника типа "Перечислимый". + + + + + Значение поля элемента справочника типа "Перечислимый". + + + + + + + + + + + + Составной тип. Наименование и значение поля типа "Ссылка на справочник" для элемента справочника. + + + + + + + Ссылка на справочник. + + + + + + Реестровый номер справочника. + + + + + + + + + + + + + Составной тип. Наименование и значение поля типа "Ссылка на элемент внутреннего справочника" для элемента справочника. + + + + + + + Ссылка на элемент внутреннего справочника. + + + + + + Реестровый номер справочника. + + + + + Ссылка на элемент справочника. + + + + + + + + + + + + Составной тип. Наименование и значение поля типа "Ссылка на элемент справочника ОКЕИ" для элемента справочника. + + + + + + + Код единицы измерения по справочнику ОКЕИ. + + + + + + + + + Составной тип. Наименование и значение поля типа "Ссылка на элемент справочника ФИАС" для элемента справочника. + + + + + + + Ссылка на элемент справочника ФИАС. + + + + + + Идентификационный код позиции в справочнике ФИАС. + + + + + Глобально-уникальный идентификатор адресного объекта в справочнике ФИАС. + + + + + + + + + + + + Составной тип. Наименование и значение поля "Вложение" + + + + + + + Документ + + + + + + + + + Скалярный тип. Наименование поля элемента справочника. Строка не более 200 символов. + + + + + + + + Группа справочника: +NSI - (по умолчанию) общесистемный +NSIRAO - ОЖФ + + + + + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-organizations-base.xsd b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-organizations-base.xsd new file mode 100644 index 0000000..c001395 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-organizations-base.xsd @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + КПП + + + + + + + + + + + + + ОГРН + + + + + + + + + + ОГРНИП + + + + + + + + + + ОКОПФ + + + + + + + + + + + ОКОГУ + + + + + + + + + + Телефон + + + + + + + + + + + + + + + + + + + + + + + БИК + + + + + + + + БИК + + + + + + ИНН + + + + + НЗА (Номер записи об аккредитации) + + + + + + + + НЗА (Номер записи об аккредитации) + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-organizations-registry-base.xsd b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-organizations-registry-base.xsd new file mode 100644 index 0000000..f53a4c7 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-organizations-registry-base.xsd @@ -0,0 +1,265 @@ + + + + + + + + + Полное наименование + + + + + + + + + + + Фирменное наименование + + + + + Юридическое лицо + + + + + + + + + Дата государственной регистрации + + + + + + + + Адрес регистрации + + + + + Адрес регистрации (Глобальный уникальный идентификатор дома по ФИАС) + + + + + Дата прекращения деятельности + + + + + + + ОП (Обособленное подразделение) + + + + + Полное наименование + + + + + + + + + + + Сокращенное наименование + + + + + + + + + + + + + + + Адрес регистрации + + + + + + + + + + + Адрес регистрации (Глобальный уникальный идентификатор дома по ФИАС) + + + + + Дата прекращения деятельности + + + + + Источник информации + + + + + + + от + + + + + + + + + + + ФПИЮЛ (Филиал или представительство иностранного юридического лица) + + + + + + + + + + Адрес места нахождения(жительства)_текст + + + + + Адрес места нахождения(жительства)_ФИАС + + + + + Дата внесения записи в реестр аккредитованных + + + + + Дата прекращения действия аккредитации + + + + + Страна регистрации иностранного ЮЛ (Справочник ОКСМ, альфа-2) + + + + + + + + + + + + + Индивидуальный предприниматель + + + + + Фамилия + + + + + Имя + + + + + Отчество + + + + + Пол (M- мужской, F-женский) + + + + + + + + + + + + + ОГРН + + + + + Дата государственной регистрации + + + + + + + + Организация в реестре организаций + + + + + + + + + + Версия организации в реестре организаций + + + + + + + + + + Организация и версия организации в реестре организаций + + + + + + + + + Идентификатор корневой сущности организации в реестре организаций + + + + + Идентификатор версии записи в реестре организаций + + + + + Сокращенное наименование + + + + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-premises-base.xsd b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-premises-base.xsd new file mode 100644 index 0000000..7f6914b --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/hcs-premises-base.xsd @@ -0,0 +1,73 @@ + + + + + + Глобальный уникальный идентификатор дома по ФИАС + + + + + + Тип уникального номера дома + + + + + + + + Тип уникального номера помещения + + + + + + + + Тип уникального номера комнаты + + + + + + + + Площадь жилого помещения (7 до запятой, 2 после) + + + + + + + + + + Площадь территории/здания + + + + + + + + + + Площадь помещения + + + + + + + + + + Площадь помещения (для экспорта данных) + + + + + + + \ No newline at end of file diff --git a/Hcs.Client/Connected Services/Service.Async.HouseManagement/xmldsig-core-schema.xsd b/Hcs.Client/Connected Services/Service.Async.HouseManagement/xmldsig-core-schema.xsd new file mode 100644 index 0000000..e036087 --- /dev/null +++ b/Hcs.Client/Connected Services/Service.Async.HouseManagement/xmldsig-core-schema.xsd @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Hcs.Client/Hcs.Client.csproj b/Hcs.Client/Hcs.Client.csproj index f2f2601..2b16469 100644 --- a/Hcs.Client/Hcs.Client.csproj +++ b/Hcs.Client/Hcs.Client.csproj @@ -65,6 +65,7 @@ + @@ -79,9 +80,12 @@ + + + @@ -197,6 +201,11 @@ True Reference.svcmap + + True + True + Reference.svcmap + True True @@ -788,6 +797,169 @@ Designer + + Designer + + + Designer + + + Designer + + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Designer + Designer @@ -1158,6 +1330,7 @@ + @@ -1213,6 +1386,12 @@ WCF Proxy Generator Reference.cs + + + + WCF Proxy Generator + Reference.cs + diff --git a/Hcs.Client/app.config b/Hcs.Client/app.config index d9c33ae..c268af9 100644 --- a/Hcs.Client/app.config +++ b/Hcs.Client/app.config @@ -30,6 +30,10 @@ + + + + @@ -62,6 +66,10 @@ + \ No newline at end of file diff --git a/Hcs.TestApp/Hcs.TestApp.csproj b/Hcs.TestApp/Hcs.TestApp.csproj index 720faab..7a2b154 100644 --- a/Hcs.TestApp/Hcs.TestApp.csproj +++ b/Hcs.TestApp/Hcs.TestApp.csproj @@ -76,6 +76,7 @@ + diff --git a/Hcs.TestApp/TestApp/Program.cs b/Hcs.TestApp/TestApp/Program.cs index 0989797..7a5d5fc 100644 --- a/Hcs.TestApp/TestApp/Program.cs +++ b/Hcs.TestApp/TestApp/Program.cs @@ -36,10 +36,13 @@ namespace Hcs.TestApp client.SetSigningCertificate(cert); + var houseManagementScenario = new HouseManagementScenario(client); var nsiScenario = new NsiScenario(client); var nsiCommonScenario = new NsiCommonScenario(client); try { + //houseManagementScenario.ExportSupplyResourceContractDataByGuid(); + //nsiScenario.ExportDataProviderNsiItem1(); //nsiScenario.ExportDataProviderNsiItem51(); //nsiScenario.ExportDataProviderNsiItem59(); diff --git a/Hcs.TestApp/TestApp/Scenario/HouseManagementScenario.cs b/Hcs.TestApp/TestApp/Scenario/HouseManagementScenario.cs new file mode 100644 index 0000000..6aa471c --- /dev/null +++ b/Hcs.TestApp/TestApp/Scenario/HouseManagementScenario.cs @@ -0,0 +1,16 @@ +using Hcs.Client; +using System; + +namespace Hcs.TestApp.Scenario +{ + internal class HouseManagementScenario(UniClient client) + { + private readonly UniClient client = client; + + internal void ExportSupplyResourceContractDataByGuid() + { + var result = client.HouseManagement.ExportSupplyResourceContractDataAsync(Guid.Parse("575a7ff9-5473-4ab4-b077-fa80c1f85f0b")).Result; + Console.WriteLine("Scenario execution " + (result != null ? "succeeded" : "failed")); + } + } +} diff --git a/Hcs.TestApp/TestApp/Scenario/NsiCommonScenario.cs b/Hcs.TestApp/TestApp/Scenario/NsiCommonScenario.cs index 6019141..a4ee2b5 100644 --- a/Hcs.TestApp/TestApp/Scenario/NsiCommonScenario.cs +++ b/Hcs.TestApp/TestApp/Scenario/NsiCommonScenario.cs @@ -10,7 +10,7 @@ namespace Hcs.TestApp.Scenario internal void ExportNsiItem2() { - var result = client.NsiCommon.ExportNsiItem(2, ListGroup.NSI).Result; + var result = client.NsiCommon.ExportNsiItemAsync(2, ListGroup.NSI).Result; Console.WriteLine("Scenario execution " + (result != null ? "succeeded" : "failed")); } } diff --git a/Hcs.TestApp/TestApp/Scenario/NsiScenario.cs b/Hcs.TestApp/TestApp/Scenario/NsiScenario.cs index d59e23c..2af8453 100644 --- a/Hcs.TestApp/TestApp/Scenario/NsiScenario.cs +++ b/Hcs.TestApp/TestApp/Scenario/NsiScenario.cs @@ -11,43 +11,43 @@ namespace Hcs.TestApp.Scenario internal void ExportDataProviderNsiItem1() { - var result = client.Nsi.ExportDataProviderNsiItem(exportDataProviderNsiItemRequestRegistryNumber.Item1).Result; + var result = client.Nsi.ExportDataProviderNsiItemAsync(exportDataProviderNsiItemRequestRegistryNumber.Item1).Result; Console.WriteLine("Scenario execution " + (result.Count() > 0 ? "succeeded" : "failed")); } internal void ExportDataProviderNsiItem51() { - var result = client.Nsi.ExportDataProviderNsiItem(exportDataProviderNsiItemRequestRegistryNumber.Item51).Result; + var result = client.Nsi.ExportDataProviderNsiItemAsync(exportDataProviderNsiItemRequestRegistryNumber.Item51).Result; Console.WriteLine("Scenario execution " + (result.Count() > 0 ? "succeeded" : "failed")); } internal void ExportDataProviderNsiItem59() { - var result = client.Nsi.ExportDataProviderNsiItem(exportDataProviderNsiItemRequestRegistryNumber.Item59).Result; + var result = client.Nsi.ExportDataProviderNsiItemAsync(exportDataProviderNsiItemRequestRegistryNumber.Item59).Result; Console.WriteLine("Scenario execution " + (result.Count() > 0 ? "succeeded" : "failed")); } internal void ExportDataProviderNsiItem219() { - var result = client.Nsi.ExportDataProviderNsiItem(exportDataProviderNsiItemRequestRegistryNumber.Item219).Result; + var result = client.Nsi.ExportDataProviderNsiItemAsync(exportDataProviderNsiItemRequestRegistryNumber.Item219).Result; Console.WriteLine("Scenario execution " + (result.Count() > 0 ? "succeeded" : "failed")); } internal void ExportDataProviderNsiItem272() { - var result = client.Nsi.ExportDataProviderNsiItem(exportDataProviderNsiItemRequestRegistryNumber.Item272).Result; + var result = client.Nsi.ExportDataProviderNsiItemAsync(exportDataProviderNsiItemRequestRegistryNumber.Item272).Result; Console.WriteLine("Scenario execution " + (result.Count() > 0 ? "succeeded" : "failed")); } internal void ExportDataProviderNsiItem302() { - var result = client.Nsi.ExportDataProviderNsiItem(exportDataProviderNsiItemRequestRegistryNumber.Item302).Result; + var result = client.Nsi.ExportDataProviderNsiItemAsync(exportDataProviderNsiItemRequestRegistryNumber.Item302).Result; Console.WriteLine("Scenario execution " + (result.Count() > 0 ? "succeeded" : "failed")); } internal void ExportDataProviderNsiItem337() { - var result = client.Nsi.ExportDataProviderNsiItem(exportDataProviderNsiItemRequestRegistryNumber.Item337).Result; + var result = client.Nsi.ExportDataProviderNsiItemAsync(exportDataProviderNsiItemRequestRegistryNumber.Item337).Result; Console.WriteLine("Scenario execution " + (result.Count() > 0 ? "succeeded" : "failed")); } }