diff --git a/Core.ApplicationServices/Organizations/Handlers/AuthorizedUpdateOrganizationFromFKOrganisationCommandHandler.cs b/Core.ApplicationServices/Organizations/Handlers/AuthorizedUpdateOrganizationFromFKOrganisationCommandHandler.cs index c2c6657c3c..36977968e1 100644 --- a/Core.ApplicationServices/Organizations/Handlers/AuthorizedUpdateOrganizationFromFKOrganisationCommandHandler.cs +++ b/Core.ApplicationServices/Organizations/Handlers/AuthorizedUpdateOrganizationFromFKOrganisationCommandHandler.cs @@ -17,7 +17,7 @@ namespace Core.ApplicationServices.Organizations.Handlers { public class AuthorizedUpdateOrganizationFromFKOrganisationCommandHandler : ICommandHandler> { - private readonly IStsOrganizationUnitService _stsOrganizationUnitService; + private readonly IStsOrganizationSystemService _stsOrganizationSystemService; private readonly IGenericRepository _organizationUnitRepository; private readonly ILogger _logger; private readonly IDomainEvents _domainEvents; @@ -28,7 +28,7 @@ public class AuthorizedUpdateOrganizationFromFKOrganisationCommandHandler : ICom private readonly IGenericRepository _stsChangeLogRepository; public AuthorizedUpdateOrganizationFromFKOrganisationCommandHandler( - IStsOrganizationUnitService stsOrganizationUnitService, + IStsOrganizationSystemService stsOrganizationSystemService, IGenericRepository organizationUnitRepository, ILogger logger, IDomainEvents domainEvents, @@ -38,7 +38,7 @@ public AuthorizedUpdateOrganizationFromFKOrganisationCommandHandler( IOperationClock operationClock, IGenericRepository stsChangeLogRepository) { - _stsOrganizationUnitService = stsOrganizationUnitService; + _stsOrganizationSystemService = stsOrganizationSystemService; _organizationUnitRepository = organizationUnitRepository; _logger = logger; _domainEvents = domainEvents; @@ -59,7 +59,7 @@ public Maybe Execute(AuthorizedUpdateOrganizationFromFKOrganisat //Load the external tree if not already provided var organizationTree = command .PreloadedExternalTree - .Match(tree => tree, () => _stsOrganizationUnitService.ResolveOrganizationTree(organization)); + .Match(tree => tree, () => _stsOrganizationSystemService.ResolveOrganizationTree(organization)); if (organizationTree.Failed) { var error = organizationTree.Error; diff --git a/Core.ApplicationServices/Organizations/Handlers/ReportPendingFkOrganizationChangesToStakeHoldersHandler.cs b/Core.ApplicationServices/Organizations/Handlers/ReportPendingFkOrganizationChangesToStakeHoldersHandler.cs index 437e9a1b6c..59383e9cbd 100644 --- a/Core.ApplicationServices/Organizations/Handlers/ReportPendingFkOrganizationChangesToStakeHoldersHandler.cs +++ b/Core.ApplicationServices/Organizations/Handlers/ReportPendingFkOrganizationChangesToStakeHoldersHandler.cs @@ -16,7 +16,7 @@ namespace Core.ApplicationServices.Organizations.Handlers public class ReportPendingFkOrganizationChangesToStakeHoldersHandler : ICommandHandler> { - private readonly IStsOrganizationUnitService _stsOrganizationUnitService; + private readonly IStsOrganizationSystemService _stsOrganizationSystemService; private readonly ILogger _logger; private readonly ITransactionManager _transactionManager; private readonly IOperationClock _operationClock; @@ -24,14 +24,14 @@ public class ReportPendingFkOrganizationChangesToStakeHoldersHandler : ICommandH private readonly IDomainEvents _domainEvents; public ReportPendingFkOrganizationChangesToStakeHoldersHandler( - IStsOrganizationUnitService stsOrganizationUnitService, + IStsOrganizationSystemService stsOrganizationSystemService, ILogger logger, ITransactionManager transactionManager, IOperationClock operationClock, IDatabaseControl databaseControl, IDomainEvents domainEvents) { - _stsOrganizationUnitService = stsOrganizationUnitService; + _stsOrganizationSystemService = stsOrganizationSystemService; _logger = logger; _transactionManager = transactionManager; _operationClock = operationClock; @@ -46,7 +46,7 @@ public Maybe Execute(ReportPendingFkOrganizationChangesToStakeHo //Load the external tree if not already provided var organization = command.Organization; var connection = command.Connection; - var organizationTree = _stsOrganizationUnitService.ResolveOrganizationTree(organization); + var organizationTree = _stsOrganizationSystemService.ResolveOrganizationTree(organization); if (organizationTree.Failed) { diff --git a/Core.ApplicationServices/Organizations/StsOrganizationSynchronizationService.cs b/Core.ApplicationServices/Organizations/StsOrganizationSynchronizationService.cs index 3cdc048b06..18991e023f 100644 --- a/Core.ApplicationServices/Organizations/StsOrganizationSynchronizationService.cs +++ b/Core.ApplicationServices/Organizations/StsOrganizationSynchronizationService.cs @@ -23,7 +23,7 @@ namespace Core.ApplicationServices.Organizations { public class StsOrganizationSynchronizationService : IStsOrganizationSynchronizationService { - private readonly IStsOrganizationUnitService _stsOrganizationUnitService; + private readonly IStsOrganizationSystemService _stsOrganizationSystemService; private readonly IOrganizationService _organizationService; private readonly ILogger _logger; private readonly IStsOrganizationService _stsOrganizationService; @@ -38,7 +38,7 @@ public class StsOrganizationSynchronizationService : IStsOrganizationSynchroniza public StsOrganizationSynchronizationService( IAuthorizationContext authorizationContext, - IStsOrganizationUnitService stsOrganizationUnitService, + IStsOrganizationSystemService stsOrganizationSystemService, IOrganizationService organizationService, ILogger logger, IStsOrganizationService stsOrganizationService, @@ -50,7 +50,7 @@ public StsOrganizationSynchronizationService( IOperationClock operationClock, ICommandBus commandBus) { - _stsOrganizationUnitService = stsOrganizationUnitService; + _stsOrganizationSystemService = stsOrganizationSystemService; _organizationService = organizationService; _logger = logger; _stsOrganizationService = stsOrganizationService; @@ -188,7 +188,7 @@ public Result, OperationError> GetChan private Result LoadOrganizationUnits(Organization organization) { - return _stsOrganizationUnitService.ResolveOrganizationTree(organization).Match>(root => root, detailedOperationError => new OperationError($"Failed to load organization tree:{detailedOperationError.Detail:G}:{detailedOperationError.FailureType:G}:{detailedOperationError.Message}", detailedOperationError.FailureType)); + return _stsOrganizationSystemService.ResolveOrganizationTree(organization).Match>(root => root, detailedOperationError => new OperationError($"Failed to load organization tree:{detailedOperationError.Detail:G}:{detailedOperationError.FailureType:G}:{detailedOperationError.Message}", detailedOperationError.FailureType)); } private Result GetOrganizationWithImportPermission(Guid organizationId) diff --git a/Core.DomainServices/Core.DomainServices.csproj b/Core.DomainServices/Core.DomainServices.csproj index cb2b8dbcb3..53829be405 100644 --- a/Core.DomainServices/Core.DomainServices.csproj +++ b/Core.DomainServices/Core.DomainServices.csproj @@ -97,7 +97,7 @@ - + diff --git a/Core.DomainServices/Organizations/IStsOrganizationUnitService.cs b/Core.DomainServices/Organizations/IStsOrganizationSystemService.cs similarity index 86% rename from Core.DomainServices/Organizations/IStsOrganizationUnitService.cs rename to Core.DomainServices/Organizations/IStsOrganizationSystemService.cs index f2d8ad7468..8f4b3e6fce 100644 --- a/Core.DomainServices/Organizations/IStsOrganizationUnitService.cs +++ b/Core.DomainServices/Organizations/IStsOrganizationSystemService.cs @@ -4,7 +4,7 @@ namespace Core.DomainServices.Organizations { - public interface IStsOrganizationUnitService + public interface IStsOrganizationSystemService { Result> ResolveOrganizationTree(Organization organization); } diff --git a/DeploymentScripts/DeployWebsite.ps1 b/DeploymentScripts/DeployWebsite.ps1 index d4024d37a8..97d2999443 100644 --- a/DeploymentScripts/DeployWebsite.ps1 +++ b/DeploymentScripts/DeployWebsite.ps1 @@ -1,6 +1,13 @@ Function Deploy-Website($packageDirectory, $msDeployUrl, $msDeployUser, $msDeployPassword, $logLevel, $esUrl, $securityKeyString, $smtpFromMail, $smtpNwHost, $resetPwTtl, $mailSuffix, $baseUrl, $kitosEnvName, $buildNumber, $kitosDbConnectionString, $hangfireConnectionString, $defaultUserPassword, $useDefaultUserPassword, $ssoServiceProviderServer, $ssoIDPEndPoints, $ssoServiceProviderId, $ssoCertificateThumbPrint, $stsOrganisationEndpointHost, $robotsFileName, $smtpNetworkPort, $smtpNetworkUsername, $smtpNetworkPassword) { $msdeploy = "C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe"; + + #Base64 encode $kitosContext variable, and add base64: at the beggining + $kitosContext = "base64:" + [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($kitosDbConnectionString)) + + #Base64 encode $hangfireConnectionString variable, and add base64: at the beggining + $hangfireContext = "base64:" + [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($hangfireConnectionString)) + $fullCommand=$(("`"{0}`" " + "-verb:sync " + "-source:package=`"{1}\Presentation.Web.zip`" " + @@ -34,7 +41,7 @@ Function Deploy-Website($packageDirectory, $msDeployUrl, $msDeployUser, $msDeplo "-setParam:name=`"SmtpPort`",value=`"{25}`" " + "-setParam:name=`"SmtpUserName`",value=`"{26}`" " + "-setParam:name=`"SmtpPassword`",value=`"{27}`"") ` - -f $msdeploy, $packageDirectory, $msDeployUrl, $msDeployUser, $msDeployPassword, $logLevel, $esUrl, $securityKeyString, $smtpFromMail, $smtpNwHost, $resetPwTtl, $baseUrl, $mailSuffix, $kitosEnvName, $buildNumber, $kitosDbConnectionString, $hangfireConnectionString, $defaultUserPassword, $useDefaultUserPassword, $ssoServiceProviderServer, $ssoIDPEndPoints, $ssoServiceProviderId, $ssoCertificateThumbPrint, $stsOrganisationEndpointHost, $robotsFileName, $smtpNetworkPort, $smtpNetworkUsername, $smtpNetworkPassword) + -f $msdeploy, $packageDirectory, $msDeployUrl, $msDeployUser, $msDeployPassword, $logLevel, $esUrl, $securityKeyString, $smtpFromMail, $smtpNwHost, $resetPwTtl, $baseUrl, $mailSuffix, $kitosEnvName, $buildNumber, $kitosContext, $hangfireContext, $defaultUserPassword, $useDefaultUserPassword, $ssoServiceProviderServer, $ssoIDPEndPoints, $ssoServiceProviderId, $ssoCertificateThumbPrint, $stsOrganisationEndpointHost, $robotsFileName, $smtpNetworkPort, $smtpNetworkUsername, $smtpNetworkPassword) & cmd.exe /C $fullCommand diff --git a/Infrastructure.DataAccess/Infrastructure.DataAccess.csproj b/Infrastructure.DataAccess/Infrastructure.DataAccess.csproj index 75dc629cb7..8d58d89994 100644 --- a/Infrastructure.DataAccess/Infrastructure.DataAccess.csproj +++ b/Infrastructure.DataAccess/Infrastructure.DataAccess.csproj @@ -49,6 +49,7 @@ + @@ -1054,6 +1055,7 @@ + diff --git a/Infrastructure.DataAccess/KitosContext.cs b/Infrastructure.DataAccess/KitosContext.cs index b0a069da63..568363fdc6 100644 --- a/Infrastructure.DataAccess/KitosContext.cs +++ b/Infrastructure.DataAccess/KitosContext.cs @@ -22,13 +22,14 @@ using Core.DomainModel.Notification; using Core.DomainModel.Tracking; using Core.DomainModel.UIConfiguration; +using Infrastructure.DataAccess.Tools; namespace Infrastructure.DataAccess { public class KitosContext : DbContext { - public KitosContext() : this("KitosContext") { } - + public KitosContext() : this(ConnectionStringTools.GetConnectionString("KitosContext")) { } + public KitosContext(string nameOrConnectionString) : base(nameOrConnectionString) { diff --git a/Infrastructure.DataAccess/Tools/ConnectionStringTools.cs b/Infrastructure.DataAccess/Tools/ConnectionStringTools.cs new file mode 100644 index 0000000000..a919d638f0 --- /dev/null +++ b/Infrastructure.DataAccess/Tools/ConnectionStringTools.cs @@ -0,0 +1,19 @@ +using System; + +namespace Infrastructure.DataAccess.Tools +{ + public class ConnectionStringTools + { + public static string GetConnectionString(string dbName) + { + var connectionString = System.Configuration.ConfigurationManager.ConnectionStrings[dbName]?.ConnectionString ?? dbName; + if (!connectionString.StartsWith("base64:")) + return connectionString; + + var base64EncodedString = connectionString.Substring("base64:".Length); + var base64EncodedBytes = Convert.FromBase64String(base64EncodedString); + connectionString = System.Text.Encoding.UTF8.GetString(base64EncodedBytes); + return connectionString; + } + } +} diff --git a/Infrastructure.Ninject/Infrastructure.Ninject.csproj b/Infrastructure.Ninject/Infrastructure.Ninject.csproj index 65caaac063..e7edfd4bb8 100644 --- a/Infrastructure.Ninject/Infrastructure.Ninject.csproj +++ b/Infrastructure.Ninject/Infrastructure.Ninject.csproj @@ -21,6 +21,7 @@ DEBUG;TRACE prompt 4 + latest pdbonly @@ -29,6 +30,7 @@ TRACE prompt 4 + latest diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Adresse.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Adresse.xsd new file mode 100644 index 0000000000..e3929fe9ac --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Adresse.xsd @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/AdresseOperationer.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/AdresseOperationer.xsd new file mode 100644 index 0000000000..aa019d2b5f --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/AdresseOperationer.xsd @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/AuthorityContext_1.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/AuthorityContext_1.xsd similarity index 100% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/AuthorityContext_1.xsd rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/AuthorityContext_1.xsd diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Bruger.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Bruger.xsd new file mode 100644 index 0000000000..8844f6ef51 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Bruger.xsd @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/BrugerOperationer.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/BrugerOperationer.xsd new file mode 100644 index 0000000000..f49f77f673 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/BrugerOperationer.xsd @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/CallContext_1.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/CallContext_1.xsd similarity index 100% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/CallContext_1.xsd rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/CallContext_1.xsd diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/GenerelleDefinitioner.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/GenerelleDefinitioner.xsd new file mode 100644 index 0000000000..1cd19da05d --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/GenerelleDefinitioner.xsd @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.FremsoegobjekthierarkiResponseType.datasource b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.FremsoegobjekthierarkiResponseType.datasource new file mode 100644 index 0000000000..a5bf13d051 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.FremsoegobjekthierarkiResponseType.datasource @@ -0,0 +1,10 @@ + + + + Infrastructure.STS.OrganizationSystem.OrganisationSystem.FremsoegobjekthierarkiResponseType, Connected Services.OrganisationSystem.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.OpretResponseType.datasource b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.ImportResponseType.datasource similarity index 51% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.OpretResponseType.datasource rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.ImportResponseType.datasource index 1c9feaeac5..ecf8892113 100644 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.OpretResponseType.datasource +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.ImportResponseType.datasource @@ -5,6 +5,6 @@ Renaming the file extension or editing the content of this file may cause the file to be unrecognizable by the program. --> - - Infrastructure.STS.OrganizationUnit.ServiceReference.OpretResponseType, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + + Infrastructure.STS.OrganizationSystem.OrganisationSystem.ImportResponseType, Connected Services.OrganisationSystem.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType.datasource b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType.datasource similarity index 69% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType.datasource rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType.datasource index 55a7b35c84..71a7f053f7 100644 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType.datasource +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType.datasource @@ -6,5 +6,5 @@ cause the file to be unrecognizable by the program. --> - Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType, Connected Services.OrganisationSystem.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiResponse.datasource b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiResponse.datasource new file mode 100644 index 0000000000..2045590984 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiResponse.datasource @@ -0,0 +1,10 @@ + + + + Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiResponse, Connected Services.OrganisationSystem.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.PassiverResponseType.datasource b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.importResponse.datasource similarity index 62% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.PassiverResponseType.datasource rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.importResponse.datasource index 74b72b890e..2d70a16c7e 100644 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.PassiverResponseType.datasource +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Infrastructure.STS.OrganizationSystem.OrganisationSystem.importResponse.datasource @@ -5,6 +5,6 @@ Renaming the file extension or editing the content of this file may cause the file to be unrecognizable by the program. --> - - Infrastructure.STS.OrganizationUnit.ServiceReference.PassiverResponseType, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + + Infrastructure.STS.OrganizationSystem.OrganisationSystem.importResponse, Connected Services.OrganisationSystem.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Interessefaellesskab.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Interessefaellesskab.xsd new file mode 100644 index 0000000000..8fc7f8a2df --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Interessefaellesskab.xsd @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/InteressefaellesskabOperationer.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/InteressefaellesskabOperationer.xsd new file mode 100644 index 0000000000..a0c98408c8 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/InteressefaellesskabOperationer.xsd @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/ItSystem.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/ItSystem.xsd new file mode 100644 index 0000000000..582a490ecf --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/ItSystem.xsd @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/ItSystemOperationer.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/ItSystemOperationer.xsd new file mode 100644 index 0000000000..e0667e6711 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/ItSystemOperationer.xsd @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Myndighed.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Myndighed.xsd new file mode 100644 index 0000000000..7a03c35470 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Myndighed.xsd @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/MyndighedOperationer.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/MyndighedOperationer.xsd new file mode 100644 index 0000000000..853926557f --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/MyndighedOperationer.xsd @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Organisation.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Organisation.xsd new file mode 100644 index 0000000000..e4bf92b25f --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Organisation.xsd @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationEnhed.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationEnhed.xsd similarity index 95% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationEnhed.xsd rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationEnhed.xsd index 36ceef0286..0c3c0eacf0 100644 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationEnhed.xsd +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationEnhed.xsd @@ -1,5 +1,5 @@ - + diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationEnhedOperationer.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationEnhedOperationer.xsd similarity index 95% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationEnhedOperationer.xsd rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationEnhedOperationer.xsd index 46274a48a9..19b879b0ed 100644 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationEnhedOperationer.xsd +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationEnhedOperationer.xsd @@ -1,5 +1,5 @@ - + diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationFaelles.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationFaelles.xsd similarity index 92% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationFaelles.xsd rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationFaelles.xsd index 18c70764b2..729385c715 100644 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationFaelles.xsd +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationFaelles.xsd @@ -1,5 +1,5 @@ - + diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationFunktion.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationFunktion.xsd new file mode 100644 index 0000000000..556b7b7fd1 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationFunktion.xsd @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationFunktionOperationer.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationFunktionOperationer.xsd new file mode 100644 index 0000000000..5fefd7a485 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationFunktionOperationer.xsd @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationOperationer.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationOperationer.xsd new file mode 100644 index 0000000000..97b4139b19 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationOperationer.xsd @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationSystemOperationer.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationSystemOperationer.xsd new file mode 100644 index 0000000000..984bf294bc --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationSystemOperationer.xsd @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationSystemService.wsdl b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationSystemService.wsdl new file mode 100644 index 0000000000..42cd43e2e9 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationSystemService.wsdl @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationSystemServiceMsg.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationSystemServiceMsg.xsd new file mode 100644 index 0000000000..78a190dec5 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/OrganisationSystemServiceMsg.xsd @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Part.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Part.xsd similarity index 82% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Part.xsd rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Part.xsd index 2ce9ea4273..5743f70f4e 100644 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Part.xsd +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Part.xsd @@ -1,5 +1,5 @@ - + diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Person.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Person.xsd new file mode 100644 index 0000000000..37276026eb --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Person.xsd @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/PersonOperationer.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/PersonOperationer.xsd new file mode 100644 index 0000000000..e11510558a --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/PersonOperationer.xsd @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Reference.cs b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Reference.cs new file mode 100644 index 0000000000..5eb289a476 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Reference.cs @@ -0,0 +1,6970 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Infrastructure.STS.OrganizationSystem.OrganisationSystem { + + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] + public partial class ServiceplatformFaultType : object, System.ComponentModel.INotifyPropertyChanged { + + private ErrorType[] errorListField; + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=0)] + [System.Xml.Serialization.XmlArrayItemAttribute("Error", IsNullable=false)] + public ErrorType[] ErrorList { + get { + return this.errorListField; + } + set { + this.errorListField = value; + this.RaisePropertyChanged("ErrorList"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] + public partial class ErrorType : object, System.ComponentModel.INotifyPropertyChanged { + + private string errorCodeField; + + private string errorTextField; + + /// + [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 ErrorText { + get { + return this.errorTextField; + } + set { + this.errorTextField = value; + this.RaisePropertyChanged("ErrorText"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="FiltreretOejebliksbilledeType", Namespace="urn:oio:sts:organisation:person:1.1.3.0")] + public partial class FiltreretOejebliksbilledeType9 : object, System.ComponentModel.INotifyPropertyChanged { + + private SagDokObjektType objektTypeField; + + private RegistreringType6[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SagDokObjektType ObjektType { + get { + return this.objektTypeField; + } + set { + this.objektTypeField = value; + this.RaisePropertyChanged("ObjektType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=1)] + public RegistreringType6[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + + public event System.ComponentModel.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(PartType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(AktoerType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(InteressefaellesskabType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationFunktionType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ItSystemType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationEnhedType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BrugerType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PersonType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(VirksomhedType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MyndighedType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(AdresseType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesFiltreretOutputType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class SagDokObjektType : object, System.ComponentModel.INotifyPropertyChanged { + + private string uUIDIdentifikatorField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string UUIDIdentifikator { + get { + return this.uUIDIdentifikatorField; + } + set { + this.uUIDIdentifikatorField = value; + this.RaisePropertyChanged("UUIDIdentifikator"); + } + } + + public event System.ComponentModel.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(AktoerType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(InteressefaellesskabType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationFunktionType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ItSystemType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationEnhedType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BrugerType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PersonType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(VirksomhedType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MyndighedType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:part:1.1.3.0")] + public partial class PartType : SagDokObjektType { + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(InteressefaellesskabType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationFunktionType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ItSystemType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationEnhedType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BrugerType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:1.1.3.0")] + public partial class AktoerType : PartType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:interessefaellesskab:1.1.3.0")] + public partial class InteressefaellesskabType : AktoerType { + + private RegistreringType10[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=0)] + public RegistreringType10[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RegistreringType", Namespace="urn:oio:sts:organisation:interessefaellesskab:1.1.3.0")] + public partial class RegistreringType10 : RegistreringType { + + private AttributListeType2 attributListeField; + + private TilstandListeType2 tilstandListeField; + + private RelationListeType2 relationListeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttributListeType2 AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType2 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType2 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="AttributListeType", Namespace="urn:oio:sts:organisation:interessefaellesskab:1.1.3.0")] + public partial class AttributListeType2 : object, System.ComponentModel.INotifyPropertyChanged { + + private EgenskabType2[] egenskabField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Egenskab", Order=0)] + public EgenskabType2[] Egenskab { + get { + return this.egenskabField; + } + set { + this.egenskabField = value; + this.RaisePropertyChanged("Egenskab"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="EgenskabType", Namespace="urn:oio:sts:organisation:interessefaellesskab:1.1.3.0")] + public partial class EgenskabType2 : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private string brugervendtNoegleTekstField; + + private string interessefaellesskabNavnField; + + private string interessefaellesskabTypeTekstField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public string BrugervendtNoegleTekst { + get { + return this.brugervendtNoegleTekstField; + } + set { + this.brugervendtNoegleTekstField = value; + this.RaisePropertyChanged("BrugervendtNoegleTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=2)] + public string InteressefaellesskabNavn { + get { + return this.interessefaellesskabNavnField; + } + set { + this.interessefaellesskabNavnField = value; + this.RaisePropertyChanged("InteressefaellesskabNavn"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=3)] + public string InteressefaellesskabTypeTekst { + get { + return this.interessefaellesskabTypeTekstField; + } + set { + this.interessefaellesskabTypeTekstField = value; + this.RaisePropertyChanged("InteressefaellesskabTypeTekst"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class VirkningType : object, System.ComponentModel.INotifyPropertyChanged { + + private TidspunktType fraTidspunktField; + + private TidspunktType tilTidspunktField; + + private UnikIdType aktoerRefField; + + private AktoerTypeKodeType aktoerTypeKodeField; + + private bool aktoerTypeKodeFieldSpecified; + + private string noteTekstField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public TidspunktType FraTidspunkt { + get { + return this.fraTidspunktField; + } + set { + this.fraTidspunktField = value; + this.RaisePropertyChanged("FraTidspunkt"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TidspunktType TilTidspunkt { + get { + return this.tilTidspunktField; + } + set { + this.tilTidspunktField = value; + this.RaisePropertyChanged("TilTidspunkt"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public UnikIdType AktoerRef { + get { + return this.aktoerRefField; + } + set { + this.aktoerRefField = value; + this.RaisePropertyChanged("AktoerRef"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public AktoerTypeKodeType AktoerTypeKode { + get { + return this.aktoerTypeKodeField; + } + set { + this.aktoerTypeKodeField = value; + this.RaisePropertyChanged("AktoerTypeKode"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AktoerTypeKodeSpecified { + get { + return this.aktoerTypeKodeFieldSpecified; + } + set { + this.aktoerTypeKodeFieldSpecified = value; + this.RaisePropertyChanged("AktoerTypeKodeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string NoteTekst { + get { + return this.noteTekstField; + } + set { + this.noteTekstField = value; + this.RaisePropertyChanged("NoteTekst"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class TidspunktType : object, System.ComponentModel.INotifyPropertyChanged { + + private object itemField; + + /// + [System.Xml.Serialization.XmlElementAttribute("GraenseIndikator", typeof(bool), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("TidsstempelDatoTid", typeof(System.DateTime), 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.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class UnikIdType : object, System.ComponentModel.INotifyPropertyChanged { + + private string itemField; + + private ItemChoiceType itemElementNameField; + + /// + [System.Xml.Serialization.XmlElementAttribute("URNIdentifikator", typeof(string), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("UUIDIdentifikator", 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 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.9037.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0", IncludeInSchema=false)] + public enum ItemChoiceType { + + /// + URNIdentifikator, + + /// + UUIDIdentifikator, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public enum AktoerTypeKodeType { + + /// + Organisation, + + /// + OrganisationEnhed, + + /// + OrganisationFunktion, + + /// + Bruger, + + /// + ItSystem, + + /// + Interessefaellesskab, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class LokalUdvidelseType : object, System.ComponentModel.INotifyPropertyChanged { + + private System.Xml.XmlElement[] anyField; + + /// + [System.Xml.Serialization.XmlAnyElementAttribute(Order=0)] + public System.Xml.XmlElement[] Any { + get { + return this.anyField; + } + set { + this.anyField = value; + this.RaisePropertyChanged("Any"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="TilstandListeType", Namespace="urn:oio:sts:organisation:interessefaellesskab:1.1.3.0")] + public partial class TilstandListeType2 : object, System.ComponentModel.INotifyPropertyChanged { + + private GyldighedType[] gyldighedField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Gyldighed", Namespace="urn:oio:sts:organisation:1.1.3.0", Order=0)] + public GyldighedType[] Gyldighed { + get { + return this.gyldighedField; + } + set { + this.gyldighedField = value; + this.RaisePropertyChanged("Gyldighed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:1.1.3.0")] + public partial class GyldighedType : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private GyldighedStatusKodeType gyldighedStatusKodeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public GyldighedStatusKodeType GyldighedStatusKode { + get { + return this.gyldighedStatusKodeField; + } + set { + this.gyldighedStatusKodeField = value; + this.RaisePropertyChanged("GyldighedStatusKode"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:1.1.3.0")] + public enum GyldighedStatusKodeType { + + /// + Aktiv, + + /// + Inaktiv, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RelationListeType", Namespace="urn:oio:sts:organisation:interessefaellesskab:1.1.3.0")] + public partial class RelationListeType2 : object, System.ComponentModel.INotifyPropertyChanged { + + private AdresseFlerRelationType[] adresserField; + + private KlasseRelationType brancheField; + + private KlasseRelationType interessefaellesskabstypeField; + + private KlasseFlerRelationType[] opgaverField; + + private OrganisationEnhedRelationType overordnetField; + + private OrganisationRelationType tilhoererField; + + private BrugerFlerRelationType[] tilknyttedeBrugereField; + + private OrganisationEnhedFlerRelationType[] tilknyttedeEnhederField; + + private OrganisationFunktionFlerRelationType[] tilknyttedeFunktionerField; + + private InteressefaellesskabFlerRelationType[] tilknyttedeInteressefaellesskaberField; + + private OrganisationFlerRelationType[] tilknyttedeOrganisationerField; + + private PersonFlerRelationType[] tilknyttedePersonerField; + + private ItSystemFlerRelationType[] tilknyttedeItSystemerField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Adresser", Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public AdresseFlerRelationType[] Adresser { + get { + return this.adresserField; + } + set { + this.adresserField = value; + this.RaisePropertyChanged("Adresser"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public KlasseRelationType Branche { + get { + return this.brancheField; + } + set { + this.brancheField = value; + this.RaisePropertyChanged("Branche"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=2)] + public KlasseRelationType Interessefaellesskabstype { + get { + return this.interessefaellesskabstypeField; + } + set { + this.interessefaellesskabstypeField = value; + this.RaisePropertyChanged("Interessefaellesskabstype"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Opgaver", Namespace="urn:oio:sagdok:3.0.0", Order=3)] + public KlasseFlerRelationType[] Opgaver { + get { + return this.opgaverField; + } + set { + this.opgaverField = value; + this.RaisePropertyChanged("Opgaver"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=4)] + public OrganisationEnhedRelationType Overordnet { + get { + return this.overordnetField; + } + set { + this.overordnetField = value; + this.RaisePropertyChanged("Overordnet"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=5)] + public OrganisationRelationType Tilhoerer { + get { + return this.tilhoererField; + } + set { + this.tilhoererField = value; + this.RaisePropertyChanged("Tilhoerer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeBrugere", Namespace="urn:oio:sagdok:3.0.0", Order=6)] + public BrugerFlerRelationType[] TilknyttedeBrugere { + get { + return this.tilknyttedeBrugereField; + } + set { + this.tilknyttedeBrugereField = value; + this.RaisePropertyChanged("TilknyttedeBrugere"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeEnheder", Namespace="urn:oio:sagdok:3.0.0", Order=7)] + public OrganisationEnhedFlerRelationType[] TilknyttedeEnheder { + get { + return this.tilknyttedeEnhederField; + } + set { + this.tilknyttedeEnhederField = value; + this.RaisePropertyChanged("TilknyttedeEnheder"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeFunktioner", Namespace="urn:oio:sagdok:3.0.0", Order=8)] + public OrganisationFunktionFlerRelationType[] TilknyttedeFunktioner { + get { + return this.tilknyttedeFunktionerField; + } + set { + this.tilknyttedeFunktionerField = value; + this.RaisePropertyChanged("TilknyttedeFunktioner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeInteressefaellesskaber", Namespace="urn:oio:sagdok:3.0.0", Order=9)] + public InteressefaellesskabFlerRelationType[] TilknyttedeInteressefaellesskaber { + get { + return this.tilknyttedeInteressefaellesskaberField; + } + set { + this.tilknyttedeInteressefaellesskaberField = value; + this.RaisePropertyChanged("TilknyttedeInteressefaellesskaber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeOrganisationer", Namespace="urn:oio:sagdok:3.0.0", Order=10)] + public OrganisationFlerRelationType[] TilknyttedeOrganisationer { + get { + return this.tilknyttedeOrganisationerField; + } + set { + this.tilknyttedeOrganisationerField = value; + this.RaisePropertyChanged("TilknyttedeOrganisationer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedePersoner", Namespace="urn:oio:sagdok:3.0.0", Order=11)] + public PersonFlerRelationType[] TilknyttedePersoner { + get { + return this.tilknyttedePersonerField; + } + set { + this.tilknyttedePersonerField = value; + this.RaisePropertyChanged("TilknyttedePersoner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeItSystemer", Namespace="urn:oio:sagdok:3.0.0", Order=12)] + public ItSystemFlerRelationType[] TilknyttedeItSystemer { + get { + return this.tilknyttedeItSystemerField; + } + set { + this.tilknyttedeItSystemerField = value; + this.RaisePropertyChanged("TilknyttedeItSystemer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=13)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class AdresseFlerRelationType : FlerRelationType { + + private UnikIdType rolleField; + + private UnikIdType typeField; + + private string indeksField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public UnikIdType Rolle { + get { + return this.rolleField; + } + set { + this.rolleField = value; + this.RaisePropertyChanged("Rolle"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public UnikIdType Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public string Indeks { + get { + return this.indeksField; + } + set { + this.indeksField = value; + this.RaisePropertyChanged("Indeks"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ArkivFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(DokumentFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PartFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(SagFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(AktoerFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ItSystemFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(InteressefaellesskabFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationFunktionFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationEnhedFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(BrugerFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(KlasseFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(PersonFlerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(AdresseFlerRelationType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class FlerRelationType : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private UnikIdType referenceIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public UnikIdType ReferenceID { + get { + return this.referenceIDField; + } + set { + this.referenceIDField = value; + this.RaisePropertyChanged("ReferenceID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class ArkivFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class DokumentFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class PartFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class SagFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class AktoerFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class ItSystemFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class OrganisationFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class InteressefaellesskabFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class OrganisationFunktionFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class OrganisationEnhedFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class BrugerFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class KlasseFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class PersonFlerRelationType : FlerRelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class KlasseRelationType : RelationType { + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(KlassifikationRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(FacetRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(DokumentRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(SagRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ArkivRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(AktoerRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(VirksomhedRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationEnhedRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(MyndighedRelationType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(KlasseRelationType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class RelationType : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private UnikIdType referenceIDField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public UnikIdType ReferenceID { + get { + return this.referenceIDField; + } + set { + this.referenceIDField = value; + this.RaisePropertyChanged("ReferenceID"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class KlassifikationRelationType : RelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class FacetRelationType : RelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class DokumentRelationType : RelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class SagRelationType : RelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class ArkivRelationType : RelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class AktoerRelationType : RelationType { + + private AktoerTypeKodeType aktoerTypeKodeField; + + private bool aktoerTypeKodeFieldSpecified; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AktoerTypeKodeType AktoerTypeKode { + get { + return this.aktoerTypeKodeField; + } + set { + this.aktoerTypeKodeField = value; + this.RaisePropertyChanged("AktoerTypeKode"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AktoerTypeKodeSpecified { + get { + return this.aktoerTypeKodeFieldSpecified; + } + set { + this.aktoerTypeKodeFieldSpecified = value; + this.RaisePropertyChanged("AktoerTypeKodeSpecified"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class OrganisationRelationType : RelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class VirksomhedRelationType : RelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class OrganisationEnhedRelationType : RelationType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class MyndighedRelationType : RelationType { + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RegistreringType10))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RegistreringType9))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RegistreringType8))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RegistreringType7))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RegistreringType6))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RegistreringType5))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RegistreringType4))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RegistreringType3))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RegistreringType2))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(RegistreringType1))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class RegistreringType : object, System.ComponentModel.INotifyPropertyChanged { + + private string noteTekstField; + + private System.DateTime tidspunktField; + + private bool tidspunktFieldSpecified; + + private LivscyklusKodeType livscyklusKodeField; + + private bool livscyklusKodeFieldSpecified; + + private UnikIdType brugerRefField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string NoteTekst { + get { + return this.noteTekstField; + } + set { + this.noteTekstField = value; + this.RaisePropertyChanged("NoteTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public System.DateTime Tidspunkt { + get { + return this.tidspunktField; + } + set { + this.tidspunktField = value; + this.RaisePropertyChanged("Tidspunkt"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool TidspunktSpecified { + get { + return this.tidspunktFieldSpecified; + } + set { + this.tidspunktFieldSpecified = value; + this.RaisePropertyChanged("TidspunktSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public LivscyklusKodeType LivscyklusKode { + get { + return this.livscyklusKodeField; + } + set { + this.livscyklusKodeField = value; + this.RaisePropertyChanged("LivscyklusKode"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool LivscyklusKodeSpecified { + get { + return this.livscyklusKodeFieldSpecified; + } + set { + this.livscyklusKodeFieldSpecified = value; + this.RaisePropertyChanged("LivscyklusKodeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public UnikIdType BrugerRef { + get { + return this.brugerRefField; + } + set { + this.brugerRefField = value; + this.RaisePropertyChanged("BrugerRef"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public enum LivscyklusKodeType { + + /// + Opstaaet, + + /// + Importeret, + + /// + Passiveret, + + /// + Slettet, + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RegistreringType", Namespace="urn:oio:sts:organisation:organisation:1.1.3.0")] + public partial class RegistreringType9 : RegistreringType { + + private AttributListeType7 attributListeField; + + private TilstandListeType7 tilstandListeField; + + private RelationListeType7 relationListeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttributListeType7 AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType7 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType7 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="AttributListeType", Namespace="urn:oio:sts:organisation:organisation:1.1.3.0")] + public partial class AttributListeType7 : object, System.ComponentModel.INotifyPropertyChanged { + + private EgenskabType6[] egenskabField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Egenskab", Order=0)] + public EgenskabType6[] Egenskab { + get { + return this.egenskabField; + } + set { + this.egenskabField = value; + this.RaisePropertyChanged("Egenskab"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="EgenskabType", Namespace="urn:oio:sts:organisation:organisation:1.1.3.0")] + public partial class EgenskabType6 : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private string brugervendtNoegleTekstField; + + private string organisationNavnField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public string BrugervendtNoegleTekst { + get { + return this.brugervendtNoegleTekstField; + } + set { + this.brugervendtNoegleTekstField = value; + this.RaisePropertyChanged("BrugervendtNoegleTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=2)] + public string OrganisationNavn { + get { + return this.organisationNavnField; + } + set { + this.organisationNavnField = value; + this.RaisePropertyChanged("OrganisationNavn"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="TilstandListeType", Namespace="urn:oio:sts:organisation:organisation:1.1.3.0")] + public partial class TilstandListeType7 : object, System.ComponentModel.INotifyPropertyChanged { + + private GyldighedType[] gyldighedField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Gyldighed", Namespace="urn:oio:sts:organisation:1.1.3.0", Order=0)] + public GyldighedType[] Gyldighed { + get { + return this.gyldighedField; + } + set { + this.gyldighedField = value; + this.RaisePropertyChanged("Gyldighed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RelationListeType", Namespace="urn:oio:sts:organisation:organisation:1.1.3.0")] + public partial class RelationListeType7 : object, System.ComponentModel.INotifyPropertyChanged { + + private AdresseFlerRelationType[] adresserField; + + private PersonFlerRelationType[] ansatteField; + + private KlasseRelationType brancheField; + + private KlasseRelationType organisationstypeField; + + private MyndighedRelationType myndighedField; + + private KlasseRelationType myndighedstypeField; + + private KlasseFlerRelationType[] opgaverField; + + private OrganisationEnhedRelationType overordnetField; + + private VirksomhedRelationType produktionsenhedField; + + private VirksomhedRelationType skatteenhedField; + + private OrganisationRelationType tilhoererField; + + private BrugerFlerRelationType[] tilknyttedeBrugereField; + + private OrganisationEnhedFlerRelationType[] tilknyttedeEnhederField; + + private OrganisationFunktionFlerRelationType[] tilknyttedeFunktionerField; + + private InteressefaellesskabFlerRelationType[] tilknyttedeInteressefaellesskaberField; + + private OrganisationFlerRelationType[] tilknyttedeOrganisationerField; + + private PersonFlerRelationType[] tilknyttedePersonerField; + + private ItSystemFlerRelationType[] tilknyttedeItSystemerField; + + private VirksomhedRelationType virksomhedField; + + private KlasseRelationType virksomhedstypeField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Adresser", Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public AdresseFlerRelationType[] Adresser { + get { + return this.adresserField; + } + set { + this.adresserField = value; + this.RaisePropertyChanged("Adresser"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Ansatte", Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public PersonFlerRelationType[] Ansatte { + get { + return this.ansatteField; + } + set { + this.ansatteField = value; + this.RaisePropertyChanged("Ansatte"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=2)] + public KlasseRelationType Branche { + get { + return this.brancheField; + } + set { + this.brancheField = value; + this.RaisePropertyChanged("Branche"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=3)] + public KlasseRelationType Organisationstype { + get { + return this.organisationstypeField; + } + set { + this.organisationstypeField = value; + this.RaisePropertyChanged("Organisationstype"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=4)] + public MyndighedRelationType Myndighed { + get { + return this.myndighedField; + } + set { + this.myndighedField = value; + this.RaisePropertyChanged("Myndighed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=5)] + public KlasseRelationType Myndighedstype { + get { + return this.myndighedstypeField; + } + set { + this.myndighedstypeField = value; + this.RaisePropertyChanged("Myndighedstype"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Opgaver", Namespace="urn:oio:sagdok:3.0.0", Order=6)] + public KlasseFlerRelationType[] Opgaver { + get { + return this.opgaverField; + } + set { + this.opgaverField = value; + this.RaisePropertyChanged("Opgaver"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=7)] + public OrganisationEnhedRelationType Overordnet { + get { + return this.overordnetField; + } + set { + this.overordnetField = value; + this.RaisePropertyChanged("Overordnet"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=8)] + public VirksomhedRelationType Produktionsenhed { + get { + return this.produktionsenhedField; + } + set { + this.produktionsenhedField = value; + this.RaisePropertyChanged("Produktionsenhed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=9)] + public VirksomhedRelationType Skatteenhed { + get { + return this.skatteenhedField; + } + set { + this.skatteenhedField = value; + this.RaisePropertyChanged("Skatteenhed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=10)] + public OrganisationRelationType Tilhoerer { + get { + return this.tilhoererField; + } + set { + this.tilhoererField = value; + this.RaisePropertyChanged("Tilhoerer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeBrugere", Namespace="urn:oio:sagdok:3.0.0", Order=11)] + public BrugerFlerRelationType[] TilknyttedeBrugere { + get { + return this.tilknyttedeBrugereField; + } + set { + this.tilknyttedeBrugereField = value; + this.RaisePropertyChanged("TilknyttedeBrugere"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeEnheder", Namespace="urn:oio:sagdok:3.0.0", Order=12)] + public OrganisationEnhedFlerRelationType[] TilknyttedeEnheder { + get { + return this.tilknyttedeEnhederField; + } + set { + this.tilknyttedeEnhederField = value; + this.RaisePropertyChanged("TilknyttedeEnheder"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeFunktioner", Namespace="urn:oio:sagdok:3.0.0", Order=13)] + public OrganisationFunktionFlerRelationType[] TilknyttedeFunktioner { + get { + return this.tilknyttedeFunktionerField; + } + set { + this.tilknyttedeFunktionerField = value; + this.RaisePropertyChanged("TilknyttedeFunktioner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeInteressefaellesskaber", Namespace="urn:oio:sagdok:3.0.0", Order=14)] + public InteressefaellesskabFlerRelationType[] TilknyttedeInteressefaellesskaber { + get { + return this.tilknyttedeInteressefaellesskaberField; + } + set { + this.tilknyttedeInteressefaellesskaberField = value; + this.RaisePropertyChanged("TilknyttedeInteressefaellesskaber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeOrganisationer", Namespace="urn:oio:sagdok:3.0.0", Order=15)] + public OrganisationFlerRelationType[] TilknyttedeOrganisationer { + get { + return this.tilknyttedeOrganisationerField; + } + set { + this.tilknyttedeOrganisationerField = value; + this.RaisePropertyChanged("TilknyttedeOrganisationer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedePersoner", Namespace="urn:oio:sagdok:3.0.0", Order=16)] + public PersonFlerRelationType[] TilknyttedePersoner { + get { + return this.tilknyttedePersonerField; + } + set { + this.tilknyttedePersonerField = value; + this.RaisePropertyChanged("TilknyttedePersoner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeItSystemer", Namespace="urn:oio:sagdok:3.0.0", Order=17)] + public ItSystemFlerRelationType[] TilknyttedeItSystemer { + get { + return this.tilknyttedeItSystemerField; + } + set { + this.tilknyttedeItSystemerField = value; + this.RaisePropertyChanged("TilknyttedeItSystemer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=18)] + public VirksomhedRelationType Virksomhed { + get { + return this.virksomhedField; + } + set { + this.virksomhedField = value; + this.RaisePropertyChanged("Virksomhed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=19)] + public KlasseRelationType Virksomhedstype { + get { + return this.virksomhedstypeField; + } + set { + this.virksomhedstypeField = value; + this.RaisePropertyChanged("Virksomhedstype"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=20)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RegistreringType", Namespace="urn:oio:sts:organisation:organisationfunktion:1.1.3.0")] + public partial class RegistreringType8 : RegistreringType { + + private AttributListeType8 attributListeField; + + private TilstandListeType8 tilstandListeField; + + private RelationListeType8 relationListeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttributListeType8 AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType8 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType8 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="AttributListeType", Namespace="urn:oio:sts:organisation:organisationfunktion:1.1.3.0")] + public partial class AttributListeType8 : object, System.ComponentModel.INotifyPropertyChanged { + + private EgenskabType7[] egenskabField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Egenskab", Order=0)] + public EgenskabType7[] Egenskab { + get { + return this.egenskabField; + } + set { + this.egenskabField = value; + this.RaisePropertyChanged("Egenskab"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="EgenskabType", Namespace="urn:oio:sts:organisation:organisationfunktion:1.1.3.0")] + public partial class EgenskabType7 : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private string brugervendtNoegleTekstField; + + private string funktionNavnField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public string BrugervendtNoegleTekst { + get { + return this.brugervendtNoegleTekstField; + } + set { + this.brugervendtNoegleTekstField = value; + this.RaisePropertyChanged("BrugervendtNoegleTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=2)] + public string FunktionNavn { + get { + return this.funktionNavnField; + } + set { + this.funktionNavnField = value; + this.RaisePropertyChanged("FunktionNavn"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="TilstandListeType", Namespace="urn:oio:sts:organisation:organisationfunktion:1.1.3.0")] + public partial class TilstandListeType8 : object, System.ComponentModel.INotifyPropertyChanged { + + private GyldighedType[] gyldighedField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Gyldighed", Namespace="urn:oio:sts:organisation:1.1.3.0", Order=0)] + public GyldighedType[] Gyldighed { + get { + return this.gyldighedField; + } + set { + this.gyldighedField = value; + this.RaisePropertyChanged("Gyldighed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RelationListeType", Namespace="urn:oio:sts:organisation:organisationfunktion:1.1.3.0")] + public partial class RelationListeType8 : object, System.ComponentModel.INotifyPropertyChanged { + + private AdresseFlerRelationType[] adresserField; + + private KlasseRelationType funktionstypeField; + + private KlasseFlerRelationType[] opgaverField; + + private BrugerFlerRelationType[] tilknyttedeBrugereField; + + private OrganisationEnhedFlerRelationType[] tilknyttedeEnhederField; + + private InteressefaellesskabFlerRelationType[] tilknyttedeInteressefaellesskaberField; + + private OrganisationFlerRelationType[] tilknyttedeOrganisationerField; + + private PersonFlerRelationType[] tilknyttedePersonerField; + + private ItSystemFlerRelationType[] tilknyttedeItSystemerField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Adresser", Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public AdresseFlerRelationType[] Adresser { + get { + return this.adresserField; + } + set { + this.adresserField = value; + this.RaisePropertyChanged("Adresser"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public KlasseRelationType Funktionstype { + get { + return this.funktionstypeField; + } + set { + this.funktionstypeField = value; + this.RaisePropertyChanged("Funktionstype"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Opgaver", Namespace="urn:oio:sagdok:3.0.0", Order=2)] + public KlasseFlerRelationType[] Opgaver { + get { + return this.opgaverField; + } + set { + this.opgaverField = value; + this.RaisePropertyChanged("Opgaver"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeBrugere", Namespace="urn:oio:sagdok:3.0.0", Order=3)] + public BrugerFlerRelationType[] TilknyttedeBrugere { + get { + return this.tilknyttedeBrugereField; + } + set { + this.tilknyttedeBrugereField = value; + this.RaisePropertyChanged("TilknyttedeBrugere"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeEnheder", Namespace="urn:oio:sagdok:3.0.0", Order=4)] + public OrganisationEnhedFlerRelationType[] TilknyttedeEnheder { + get { + return this.tilknyttedeEnhederField; + } + set { + this.tilknyttedeEnhederField = value; + this.RaisePropertyChanged("TilknyttedeEnheder"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeInteressefaellesskaber", Namespace="urn:oio:sagdok:3.0.0", Order=5)] + public InteressefaellesskabFlerRelationType[] TilknyttedeInteressefaellesskaber { + get { + return this.tilknyttedeInteressefaellesskaberField; + } + set { + this.tilknyttedeInteressefaellesskaberField = value; + this.RaisePropertyChanged("TilknyttedeInteressefaellesskaber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeOrganisationer", Namespace="urn:oio:sagdok:3.0.0", Order=6)] + public OrganisationFlerRelationType[] TilknyttedeOrganisationer { + get { + return this.tilknyttedeOrganisationerField; + } + set { + this.tilknyttedeOrganisationerField = value; + this.RaisePropertyChanged("TilknyttedeOrganisationer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedePersoner", Namespace="urn:oio:sagdok:3.0.0", Order=7)] + public PersonFlerRelationType[] TilknyttedePersoner { + get { + return this.tilknyttedePersonerField; + } + set { + this.tilknyttedePersonerField = value; + this.RaisePropertyChanged("TilknyttedePersoner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeItSystemer", Namespace="urn:oio:sagdok:3.0.0", Order=8)] + public ItSystemFlerRelationType[] TilknyttedeItSystemer { + get { + return this.tilknyttedeItSystemerField; + } + set { + this.tilknyttedeItSystemerField = value; + this.RaisePropertyChanged("TilknyttedeItSystemer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=9)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RegistreringType", Namespace="urn:oio:sts:organisation:itsystem:1.1.3.0")] + public partial class RegistreringType7 : RegistreringType { + + private AttributListeType6 attributListeField; + + private TilstandListeType6 tilstandListeField; + + private RelationListeType6 relationListeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttributListeType6 AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType6 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType6 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="AttributListeType", Namespace="urn:oio:sts:organisation:itsystem:1.1.3.0")] + public partial class AttributListeType6 : object, System.ComponentModel.INotifyPropertyChanged { + + private EgenskabType8[] egenskabField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Egenskab", Order=0)] + public EgenskabType8[] Egenskab { + get { + return this.egenskabField; + } + set { + this.egenskabField = value; + this.RaisePropertyChanged("Egenskab"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="EgenskabType", Namespace="urn:oio:sts:organisation:itsystem:1.1.3.0")] + public partial class EgenskabType8 : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private string brugervendtNoegleTekstField; + + private string itSystemNavnField; + + private string itSystemTypeTekstField; + + private string[] konfigurationReferenceField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public string BrugervendtNoegleTekst { + get { + return this.brugervendtNoegleTekstField; + } + set { + this.brugervendtNoegleTekstField = value; + this.RaisePropertyChanged("BrugervendtNoegleTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=2)] + public string ItSystemNavn { + get { + return this.itSystemNavnField; + } + set { + this.itSystemNavnField = value; + this.RaisePropertyChanged("ItSystemNavn"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=3)] + public string ItSystemTypeTekst { + get { + return this.itSystemTypeTekstField; + } + set { + this.itSystemTypeTekstField = value; + this.RaisePropertyChanged("ItSystemTypeTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("KonfigurationReference", Namespace="urn:oio:sagdok:3.0.0", Order=4)] + public string[] KonfigurationReference { + get { + return this.konfigurationReferenceField; + } + set { + this.konfigurationReferenceField = value; + this.RaisePropertyChanged("KonfigurationReference"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="TilstandListeType", Namespace="urn:oio:sts:organisation:itsystem:1.1.3.0")] + public partial class TilstandListeType6 : object, System.ComponentModel.INotifyPropertyChanged { + + private GyldighedType[] gyldighedField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Gyldighed", Namespace="urn:oio:sts:organisation:1.1.3.0", Order=0)] + public GyldighedType[] Gyldighed { + get { + return this.gyldighedField; + } + set { + this.gyldighedField = value; + this.RaisePropertyChanged("Gyldighed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RelationListeType", Namespace="urn:oio:sts:organisation:itsystem:1.1.3.0")] + public partial class RelationListeType6 : object, System.ComponentModel.INotifyPropertyChanged { + + private AdresseFlerRelationType[] adresserField; + + private KlasseFlerRelationType[] opgaverField; + + private KlasseFlerRelationType[] systemTyperField; + + private OrganisationRelationType tilhoererField; + + private BrugerFlerRelationType[] tilknyttedeBrugereField; + + private OrganisationEnhedFlerRelationType[] tilknyttedeEnhederField; + + private OrganisationFunktionFlerRelationType[] tilknyttedeFunktionerField; + + private InteressefaellesskabFlerRelationType[] tilknyttedeInteressefaellesskaberField; + + private OrganisationFlerRelationType[] tilknyttedeOrganisationerField; + + private PersonFlerRelationType[] tilknyttedePersonerField; + + private ItSystemFlerRelationType[] tilknyttedeItSystemerField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Adresser", Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public AdresseFlerRelationType[] Adresser { + get { + return this.adresserField; + } + set { + this.adresserField = value; + this.RaisePropertyChanged("Adresser"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Opgaver", Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public KlasseFlerRelationType[] Opgaver { + get { + return this.opgaverField; + } + set { + this.opgaverField = value; + this.RaisePropertyChanged("Opgaver"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("SystemTyper", Namespace="urn:oio:sagdok:3.0.0", Order=2)] + public KlasseFlerRelationType[] SystemTyper { + get { + return this.systemTyperField; + } + set { + this.systemTyperField = value; + this.RaisePropertyChanged("SystemTyper"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=3)] + public OrganisationRelationType Tilhoerer { + get { + return this.tilhoererField; + } + set { + this.tilhoererField = value; + this.RaisePropertyChanged("Tilhoerer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeBrugere", Namespace="urn:oio:sagdok:3.0.0", Order=4)] + public BrugerFlerRelationType[] TilknyttedeBrugere { + get { + return this.tilknyttedeBrugereField; + } + set { + this.tilknyttedeBrugereField = value; + this.RaisePropertyChanged("TilknyttedeBrugere"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeEnheder", Namespace="urn:oio:sagdok:3.0.0", Order=5)] + public OrganisationEnhedFlerRelationType[] TilknyttedeEnheder { + get { + return this.tilknyttedeEnhederField; + } + set { + this.tilknyttedeEnhederField = value; + this.RaisePropertyChanged("TilknyttedeEnheder"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeFunktioner", Namespace="urn:oio:sagdok:3.0.0", Order=6)] + public OrganisationFunktionFlerRelationType[] TilknyttedeFunktioner { + get { + return this.tilknyttedeFunktionerField; + } + set { + this.tilknyttedeFunktionerField = value; + this.RaisePropertyChanged("TilknyttedeFunktioner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeInteressefaellesskaber", Namespace="urn:oio:sagdok:3.0.0", Order=7)] + public InteressefaellesskabFlerRelationType[] TilknyttedeInteressefaellesskaber { + get { + return this.tilknyttedeInteressefaellesskaberField; + } + set { + this.tilknyttedeInteressefaellesskaberField = value; + this.RaisePropertyChanged("TilknyttedeInteressefaellesskaber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeOrganisationer", Namespace="urn:oio:sagdok:3.0.0", Order=8)] + public OrganisationFlerRelationType[] TilknyttedeOrganisationer { + get { + return this.tilknyttedeOrganisationerField; + } + set { + this.tilknyttedeOrganisationerField = value; + this.RaisePropertyChanged("TilknyttedeOrganisationer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedePersoner", Namespace="urn:oio:sagdok:3.0.0", Order=9)] + public PersonFlerRelationType[] TilknyttedePersoner { + get { + return this.tilknyttedePersonerField; + } + set { + this.tilknyttedePersonerField = value; + this.RaisePropertyChanged("TilknyttedePersoner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeItSystemer", Namespace="urn:oio:sagdok:3.0.0", Order=10)] + public ItSystemFlerRelationType[] TilknyttedeItSystemer { + get { + return this.tilknyttedeItSystemerField; + } + set { + this.tilknyttedeItSystemerField = value; + this.RaisePropertyChanged("TilknyttedeItSystemer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=11)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RegistreringType", Namespace="urn:oio:sts:organisation:person:1.1.3.0")] + public partial class RegistreringType6 : RegistreringType { + + private EgenskabType9[] attributListeField; + + private TilstandListeType9 tilstandListeField; + + private RelationListeType9 relationListeField; + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=0)] + [System.Xml.Serialization.XmlArrayItemAttribute("Egenskab", IsNullable=false)] + public EgenskabType9[] AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType9 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType9 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="EgenskabType", Namespace="urn:oio:sts:organisation:person:1.1.3.0")] + public partial class EgenskabType9 : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private string brugervendtNoegleTekstField; + + private string cPRNummerTekstField; + + private string navnTekstField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public string BrugervendtNoegleTekst { + get { + return this.brugervendtNoegleTekstField; + } + set { + this.brugervendtNoegleTekstField = value; + this.RaisePropertyChanged("BrugervendtNoegleTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CPR-NummerTekst", Namespace="urn:oio:sts:1.1.3.0", Order=2)] + public string CPRNummerTekst { + get { + return this.cPRNummerTekstField; + } + set { + this.cPRNummerTekstField = value; + this.RaisePropertyChanged("CPRNummerTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public string NavnTekst { + get { + return this.navnTekstField; + } + set { + this.navnTekstField = value; + this.RaisePropertyChanged("NavnTekst"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="TilstandListeType", Namespace="urn:oio:sts:organisation:person:1.1.3.0")] + public partial class TilstandListeType9 : object, System.ComponentModel.INotifyPropertyChanged { + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RelationListeType", Namespace="urn:oio:sts:organisation:person:1.1.3.0")] + public partial class RelationListeType9 : object, System.ComponentModel.INotifyPropertyChanged { + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RegistreringType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] + public partial class RegistreringType5 : RegistreringType { + + private AttributListeType5 attributListeField; + + private TilstandListeType5 tilstandListeField; + + private RelationListeType5 relationListeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttributListeType5 AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType5 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType5 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="AttributListeType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] + public partial class AttributListeType5 : object, System.ComponentModel.INotifyPropertyChanged { + + private EgenskabType5[] egenskabField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Egenskab", Order=0)] + public EgenskabType5[] Egenskab { + get { + return this.egenskabField; + } + set { + this.egenskabField = value; + this.RaisePropertyChanged("Egenskab"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="EgenskabType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] + public partial class EgenskabType5 : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private string brugervendtNoegleTekstField; + + private string enhedNavnField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public string BrugervendtNoegleTekst { + get { + return this.brugervendtNoegleTekstField; + } + set { + this.brugervendtNoegleTekstField = value; + this.RaisePropertyChanged("BrugervendtNoegleTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=2)] + public string EnhedNavn { + get { + return this.enhedNavnField; + } + set { + this.enhedNavnField = value; + this.RaisePropertyChanged("EnhedNavn"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="TilstandListeType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] + public partial class TilstandListeType5 : object, System.ComponentModel.INotifyPropertyChanged { + + private GyldighedType[] gyldighedField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Gyldighed", Namespace="urn:oio:sts:organisation:1.1.3.0", Order=0)] + public GyldighedType[] Gyldighed { + get { + return this.gyldighedField; + } + set { + this.gyldighedField = value; + this.RaisePropertyChanged("Gyldighed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RelationListeType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] + public partial class RelationListeType5 : object, System.ComponentModel.INotifyPropertyChanged { + + private AdresseFlerRelationType[] adresserField; + + private PersonFlerRelationType[] ansatteField; + + private KlasseRelationType brancheField; + + private KlasseRelationType enhedstypeField; + + private KlasseFlerRelationType[] opgaverField; + + private OrganisationEnhedRelationType overordnetField; + + private VirksomhedRelationType produktionsenhedField; + + private VirksomhedRelationType skatteenhedField; + + private OrganisationRelationType tilhoererField; + + private BrugerFlerRelationType[] tilknyttedeBrugereField; + + private OrganisationEnhedFlerRelationType[] tilknyttedeEnhederField; + + private OrganisationFunktionFlerRelationType[] tilknyttedeFunktionerField; + + private InteressefaellesskabFlerRelationType[] tilknyttedeInteressefaellesskaberField; + + private OrganisationFlerRelationType[] tilknyttedeOrganisationerField; + + private PersonFlerRelationType[] tilknyttedePersonerField; + + private ItSystemFlerRelationType[] tilknyttedeItSystemerField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Adresser", Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public AdresseFlerRelationType[] Adresser { + get { + return this.adresserField; + } + set { + this.adresserField = value; + this.RaisePropertyChanged("Adresser"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Ansatte", Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public PersonFlerRelationType[] Ansatte { + get { + return this.ansatteField; + } + set { + this.ansatteField = value; + this.RaisePropertyChanged("Ansatte"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=2)] + public KlasseRelationType Branche { + get { + return this.brancheField; + } + set { + this.brancheField = value; + this.RaisePropertyChanged("Branche"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=3)] + public KlasseRelationType Enhedstype { + get { + return this.enhedstypeField; + } + set { + this.enhedstypeField = value; + this.RaisePropertyChanged("Enhedstype"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Opgaver", Namespace="urn:oio:sagdok:3.0.0", Order=4)] + public KlasseFlerRelationType[] Opgaver { + get { + return this.opgaverField; + } + set { + this.opgaverField = value; + this.RaisePropertyChanged("Opgaver"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=5)] + public OrganisationEnhedRelationType Overordnet { + get { + return this.overordnetField; + } + set { + this.overordnetField = value; + this.RaisePropertyChanged("Overordnet"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=6)] + public VirksomhedRelationType Produktionsenhed { + get { + return this.produktionsenhedField; + } + set { + this.produktionsenhedField = value; + this.RaisePropertyChanged("Produktionsenhed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=7)] + public VirksomhedRelationType Skatteenhed { + get { + return this.skatteenhedField; + } + set { + this.skatteenhedField = value; + this.RaisePropertyChanged("Skatteenhed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=8)] + public OrganisationRelationType Tilhoerer { + get { + return this.tilhoererField; + } + set { + this.tilhoererField = value; + this.RaisePropertyChanged("Tilhoerer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeBrugere", Namespace="urn:oio:sagdok:3.0.0", Order=9)] + public BrugerFlerRelationType[] TilknyttedeBrugere { + get { + return this.tilknyttedeBrugereField; + } + set { + this.tilknyttedeBrugereField = value; + this.RaisePropertyChanged("TilknyttedeBrugere"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeEnheder", Namespace="urn:oio:sagdok:3.0.0", Order=10)] + public OrganisationEnhedFlerRelationType[] TilknyttedeEnheder { + get { + return this.tilknyttedeEnhederField; + } + set { + this.tilknyttedeEnhederField = value; + this.RaisePropertyChanged("TilknyttedeEnheder"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeFunktioner", Namespace="urn:oio:sagdok:3.0.0", Order=11)] + public OrganisationFunktionFlerRelationType[] TilknyttedeFunktioner { + get { + return this.tilknyttedeFunktionerField; + } + set { + this.tilknyttedeFunktionerField = value; + this.RaisePropertyChanged("TilknyttedeFunktioner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeInteressefaellesskaber", Namespace="urn:oio:sagdok:3.0.0", Order=12)] + public InteressefaellesskabFlerRelationType[] TilknyttedeInteressefaellesskaber { + get { + return this.tilknyttedeInteressefaellesskaberField; + } + set { + this.tilknyttedeInteressefaellesskaberField = value; + this.RaisePropertyChanged("TilknyttedeInteressefaellesskaber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeOrganisationer", Namespace="urn:oio:sagdok:3.0.0", Order=13)] + public OrganisationFlerRelationType[] TilknyttedeOrganisationer { + get { + return this.tilknyttedeOrganisationerField; + } + set { + this.tilknyttedeOrganisationerField = value; + this.RaisePropertyChanged("TilknyttedeOrganisationer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedePersoner", Namespace="urn:oio:sagdok:3.0.0", Order=14)] + public PersonFlerRelationType[] TilknyttedePersoner { + get { + return this.tilknyttedePersonerField; + } + set { + this.tilknyttedePersonerField = value; + this.RaisePropertyChanged("TilknyttedePersoner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeItSystemer", Namespace="urn:oio:sagdok:3.0.0", Order=15)] + public ItSystemFlerRelationType[] TilknyttedeItSystemer { + get { + return this.tilknyttedeItSystemerField; + } + set { + this.tilknyttedeItSystemerField = value; + this.RaisePropertyChanged("TilknyttedeItSystemer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=16)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RegistreringType", Namespace="urn:oio:sts:organisation:adresse:1.1.3.0")] + public partial class RegistreringType4 : RegistreringType { + + private EgenskabType1[] attributListeField; + + private TilstandListeType1 tilstandListeField; + + private RelationListeType1 relationListeField; + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=0)] + [System.Xml.Serialization.XmlArrayItemAttribute("Egenskab", IsNullable=false)] + public EgenskabType1[] AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType1 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType1 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="EgenskabType", Namespace="urn:oio:sts:organisation:adresse:1.1.3.0")] + public partial class EgenskabType1 : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private string brugervendtNoegleTekstField; + + private string adresseTekstField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public string BrugervendtNoegleTekst { + get { + return this.brugervendtNoegleTekstField; + } + set { + this.brugervendtNoegleTekstField = value; + this.RaisePropertyChanged("BrugervendtNoegleTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:1.1.3.0", Order=2)] + public string AdresseTekst { + get { + return this.adresseTekstField; + } + set { + this.adresseTekstField = value; + this.RaisePropertyChanged("AdresseTekst"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="TilstandListeType", Namespace="urn:oio:sts:organisation:adresse:1.1.3.0")] + public partial class TilstandListeType1 : object, System.ComponentModel.INotifyPropertyChanged { + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RelationListeType", Namespace="urn:oio:sts:organisation:adresse:1.1.3.0")] + public partial class RelationListeType1 : object, System.ComponentModel.INotifyPropertyChanged { + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RegistreringType", Namespace="urn:oio:sts:organisation:virksomhed:1.1.3.0")] + public partial class RegistreringType3 : RegistreringType { + + private EgenskabType[] attributListeField; + + private TilstandListeType tilstandListeField; + + private RelationListeType relationListeField; + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=0)] + [System.Xml.Serialization.XmlArrayItemAttribute("Egenskab", IsNullable=false)] + public EgenskabType[] AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:virksomhed:1.1.3.0")] + public partial class EgenskabType : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private string brugervendtNoegleTekstField; + + private string cVRNummerTekstField; + + private string sENummerTekstField; + + private string pNummerTekstField; + + private string navnTekstField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public string BrugervendtNoegleTekst { + get { + return this.brugervendtNoegleTekstField; + } + set { + this.brugervendtNoegleTekstField = value; + this.RaisePropertyChanged("BrugervendtNoegleTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CVR-NummerTekst", Namespace="urn:oio:sts:1.1.3.0", Order=2)] + public string CVRNummerTekst { + get { + return this.cVRNummerTekstField; + } + set { + this.cVRNummerTekstField = value; + this.RaisePropertyChanged("CVRNummerTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("SE-NummerTekst", Namespace="urn:oio:sts:1.1.3.0", Order=3)] + public string SENummerTekst { + get { + return this.sENummerTekstField; + } + set { + this.sENummerTekstField = value; + this.RaisePropertyChanged("SENummerTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("P-NummerTekst", Namespace="urn:oio:sts:1.1.3.0", Order=4)] + public string PNummerTekst { + get { + return this.pNummerTekstField; + } + set { + this.pNummerTekstField = value; + this.RaisePropertyChanged("PNummerTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:1.1.3.0", Order=5)] + public string NavnTekst { + get { + return this.navnTekstField; + } + set { + this.navnTekstField = value; + this.RaisePropertyChanged("NavnTekst"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:virksomhed:1.1.3.0")] + public partial class TilstandListeType : object, System.ComponentModel.INotifyPropertyChanged { + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:virksomhed:1.1.3.0")] + public partial class RelationListeType : object, System.ComponentModel.INotifyPropertyChanged { + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RegistreringType", Namespace="urn:oio:sts:organisation:bruger:1.1.3.0")] + public partial class RegistreringType2 : RegistreringType { + + private AttributListeType4 attributListeField; + + private TilstandListeType4 tilstandListeField; + + private RelationListeType4 relationListeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttributListeType4 AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType4 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType4 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="AttributListeType", Namespace="urn:oio:sts:organisation:bruger:1.1.3.0")] + public partial class AttributListeType4 : object, System.ComponentModel.INotifyPropertyChanged { + + private EgenskabType4[] egenskabField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Egenskab", Order=0)] + public EgenskabType4[] Egenskab { + get { + return this.egenskabField; + } + set { + this.egenskabField = value; + this.RaisePropertyChanged("Egenskab"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="EgenskabType", Namespace="urn:oio:sts:organisation:bruger:1.1.3.0")] + public partial class EgenskabType4 : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private string brugervendtNoegleTekstField; + + private string brugerNavnField; + + private string brugerTypeTekstField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public string BrugervendtNoegleTekst { + get { + return this.brugervendtNoegleTekstField; + } + set { + this.brugervendtNoegleTekstField = value; + this.RaisePropertyChanged("BrugervendtNoegleTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=2)] + public string BrugerNavn { + get { + return this.brugerNavnField; + } + set { + this.brugerNavnField = value; + this.RaisePropertyChanged("BrugerNavn"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=3)] + public string BrugerTypeTekst { + get { + return this.brugerTypeTekstField; + } + set { + this.brugerTypeTekstField = value; + this.RaisePropertyChanged("BrugerTypeTekst"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="TilstandListeType", Namespace="urn:oio:sts:organisation:bruger:1.1.3.0")] + public partial class TilstandListeType4 : object, System.ComponentModel.INotifyPropertyChanged { + + private GyldighedType[] gyldighedField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Gyldighed", Namespace="urn:oio:sts:organisation:1.1.3.0", Order=0)] + public GyldighedType[] Gyldighed { + get { + return this.gyldighedField; + } + set { + this.gyldighedField = value; + this.RaisePropertyChanged("Gyldighed"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RelationListeType", Namespace="urn:oio:sts:organisation:bruger:1.1.3.0")] + public partial class RelationListeType4 : object, System.ComponentModel.INotifyPropertyChanged { + + private AdresseFlerRelationType[] adresserField; + + private KlasseFlerRelationType[] brugerTyperField; + + private KlasseFlerRelationType[] opgaverField; + + private OrganisationRelationType tilhoererField; + + private OrganisationEnhedFlerRelationType[] tilknyttedeEnhederField; + + private OrganisationFunktionFlerRelationType[] tilknyttedeFunktionerField; + + private InteressefaellesskabFlerRelationType[] tilknyttedeInteressefaellesskaberField; + + private OrganisationFlerRelationType[] tilknyttedeOrganisationerField; + + private PersonFlerRelationType[] tilknyttedePersonerField; + + private ItSystemFlerRelationType[] tilknyttedeItSystemerField; + + private LokalUdvidelseType lokalUdvidelseField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Adresser", Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public AdresseFlerRelationType[] Adresser { + get { + return this.adresserField; + } + set { + this.adresserField = value; + this.RaisePropertyChanged("Adresser"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("BrugerTyper", Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public KlasseFlerRelationType[] BrugerTyper { + get { + return this.brugerTyperField; + } + set { + this.brugerTyperField = value; + this.RaisePropertyChanged("BrugerTyper"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Opgaver", Namespace="urn:oio:sagdok:3.0.0", Order=2)] + public KlasseFlerRelationType[] Opgaver { + get { + return this.opgaverField; + } + set { + this.opgaverField = value; + this.RaisePropertyChanged("Opgaver"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=3)] + public OrganisationRelationType Tilhoerer { + get { + return this.tilhoererField; + } + set { + this.tilhoererField = value; + this.RaisePropertyChanged("Tilhoerer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeEnheder", Namespace="urn:oio:sagdok:3.0.0", Order=4)] + public OrganisationEnhedFlerRelationType[] TilknyttedeEnheder { + get { + return this.tilknyttedeEnhederField; + } + set { + this.tilknyttedeEnhederField = value; + this.RaisePropertyChanged("TilknyttedeEnheder"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeFunktioner", Namespace="urn:oio:sagdok:3.0.0", Order=5)] + public OrganisationFunktionFlerRelationType[] TilknyttedeFunktioner { + get { + return this.tilknyttedeFunktionerField; + } + set { + this.tilknyttedeFunktionerField = value; + this.RaisePropertyChanged("TilknyttedeFunktioner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeInteressefaellesskaber", Namespace="urn:oio:sagdok:3.0.0", Order=6)] + public InteressefaellesskabFlerRelationType[] TilknyttedeInteressefaellesskaber { + get { + return this.tilknyttedeInteressefaellesskaberField; + } + set { + this.tilknyttedeInteressefaellesskaberField = value; + this.RaisePropertyChanged("TilknyttedeInteressefaellesskaber"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeOrganisationer", Namespace="urn:oio:sagdok:3.0.0", Order=7)] + public OrganisationFlerRelationType[] TilknyttedeOrganisationer { + get { + return this.tilknyttedeOrganisationerField; + } + set { + this.tilknyttedeOrganisationerField = value; + this.RaisePropertyChanged("TilknyttedeOrganisationer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedePersoner", Namespace="urn:oio:sagdok:3.0.0", Order=8)] + public PersonFlerRelationType[] TilknyttedePersoner { + get { + return this.tilknyttedePersonerField; + } + set { + this.tilknyttedePersonerField = value; + this.RaisePropertyChanged("TilknyttedePersoner"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("TilknyttedeItSystemer", Namespace="urn:oio:sagdok:3.0.0", Order=9)] + public ItSystemFlerRelationType[] TilknyttedeItSystemer { + get { + return this.tilknyttedeItSystemerField; + } + set { + this.tilknyttedeItSystemerField = value; + this.RaisePropertyChanged("TilknyttedeItSystemer"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=10)] + public LokalUdvidelseType LokalUdvidelse { + get { + return this.lokalUdvidelseField; + } + set { + this.lokalUdvidelseField = value; + this.RaisePropertyChanged("LokalUdvidelse"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RegistreringType", Namespace="urn:oio:sts:organisation:myndighed:1.1.3.0")] + public partial class RegistreringType1 : RegistreringType { + + private EgenskabType3[] attributListeField; + + private TilstandListeType3 tilstandListeField; + + private RelationListeType3 relationListeField; + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=0)] + [System.Xml.Serialization.XmlArrayItemAttribute("Egenskab", IsNullable=false)] + public EgenskabType3[] AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType3 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType3 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="EgenskabType", Namespace="urn:oio:sts:organisation:myndighed:1.1.3.0")] + public partial class EgenskabType3 : object, System.ComponentModel.INotifyPropertyChanged { + + private VirkningType virkningField; + + private string brugervendtNoegleTekstField; + + private string cVRNummerTekstField; + + private string navnTekstField; + + private string myndighedsKodeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] + public VirkningType Virkning { + get { + return this.virkningField; + } + set { + this.virkningField = value; + this.RaisePropertyChanged("Virkning"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] + public string BrugervendtNoegleTekst { + get { + return this.brugervendtNoegleTekstField; + } + set { + this.brugervendtNoegleTekstField = value; + this.RaisePropertyChanged("BrugervendtNoegleTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("CVR-NummerTekst", Namespace="urn:oio:sts:1.1.3.0", Order=2)] + public string CVRNummerTekst { + get { + return this.cVRNummerTekstField; + } + set { + this.cVRNummerTekstField = value; + this.RaisePropertyChanged("CVRNummerTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:1.1.3.0", Order=3)] + public string NavnTekst { + get { + return this.navnTekstField; + } + set { + this.navnTekstField = value; + this.RaisePropertyChanged("NavnTekst"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:1.1.3.0", Order=4)] + public string MyndighedsKode { + get { + return this.myndighedsKodeField; + } + set { + this.myndighedsKodeField = value; + this.RaisePropertyChanged("MyndighedsKode"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="TilstandListeType", Namespace="urn:oio:sts:organisation:myndighed:1.1.3.0")] + public partial class TilstandListeType3 : object, System.ComponentModel.INotifyPropertyChanged { + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="RelationListeType", Namespace="urn:oio:sts:organisation:myndighed:1.1.3.0")] + public partial class RelationListeType3 : object, System.ComponentModel.INotifyPropertyChanged { + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisation:1.1.3.0")] + public partial class OrganisationType : AktoerType { + + private RegistreringType9[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=0)] + public RegistreringType9[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationfunktion:1.1.3.0")] + public partial class OrganisationFunktionType : AktoerType { + + private RegistreringType8[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=0)] + public RegistreringType8[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:itsystem:1.1.3.0")] + public partial class ItSystemType : AktoerType { + + private RegistreringType7[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=0)] + public RegistreringType7[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] + public partial class OrganisationEnhedType : AktoerType { + + private RegistreringType5[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=0)] + public RegistreringType5[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:bruger:1.1.3.0")] + public partial class BrugerType : AktoerType { + + private RegistreringType2[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=0)] + public RegistreringType2[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:person:1.1.3.0")] + public partial class PersonType : PartType { + + private RegistreringType6[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=0)] + public RegistreringType6[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:virksomhed:1.1.3.0")] + public partial class VirksomhedType : PartType { + + private RegistreringType3[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=0)] + public RegistreringType3[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:myndighed:1.1.3.0")] + public partial class MyndighedType : PartType { + + private RegistreringType1[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=0)] + public RegistreringType1[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:adresse:1.1.3.0")] + public partial class AdresseType : SagDokObjektType { + + private RegistreringType4[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=0)] + public RegistreringType4[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class LaesFiltreretOutputType : SagDokObjektType { + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="FiltreretOejebliksbilledeType", Namespace="urn:oio:sts:organisation:itsystem:1.1.3.0")] + public partial class FiltreretOejebliksbilledeType8 : object, System.ComponentModel.INotifyPropertyChanged { + + private SagDokObjektType objektTypeField; + + private RegistreringType7[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SagDokObjektType ObjektType { + get { + return this.objektTypeField; + } + set { + this.objektTypeField = value; + this.RaisePropertyChanged("ObjektType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=1)] + public RegistreringType7[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="FiltreretOejebliksbilledeType", Namespace="urn:oio:sts:organisation:organisationfunktion:1.1.3.0")] + public partial class FiltreretOejebliksbilledeType7 : object, System.ComponentModel.INotifyPropertyChanged { + + private SagDokObjektType objektTypeField; + + private RegistreringType8[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SagDokObjektType ObjektType { + get { + return this.objektTypeField; + } + set { + this.objektTypeField = value; + this.RaisePropertyChanged("ObjektType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=1)] + public RegistreringType8[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="FiltreretOejebliksbilledeType", Namespace="urn:oio:sts:organisation:organisation:1.1.3.0")] + public partial class FiltreretOejebliksbilledeType6 : object, System.ComponentModel.INotifyPropertyChanged { + + private SagDokObjektType objektTypeField; + + private RegistreringType9[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SagDokObjektType ObjektType { + get { + return this.objektTypeField; + } + set { + this.objektTypeField = value; + this.RaisePropertyChanged("ObjektType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=1)] + public RegistreringType9[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="FiltreretOejebliksbilledeType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] + public partial class FiltreretOejebliksbilledeType5 : object, System.ComponentModel.INotifyPropertyChanged { + + private SagDokObjektType objektTypeField; + + private RegistreringType5[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SagDokObjektType ObjektType { + get { + return this.objektTypeField; + } + set { + this.objektTypeField = value; + this.RaisePropertyChanged("ObjektType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=1)] + public RegistreringType5[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="FiltreretOejebliksbilledeType", Namespace="urn:oio:sts:organisation:bruger:1.1.3.0")] + public partial class FiltreretOejebliksbilledeType4 : object, System.ComponentModel.INotifyPropertyChanged { + + private SagDokObjektType objektTypeField; + + private RegistreringType2[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SagDokObjektType ObjektType { + get { + return this.objektTypeField; + } + set { + this.objektTypeField = value; + this.RaisePropertyChanged("ObjektType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=1)] + public RegistreringType2[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="FiltreretOejebliksbilledeType", Namespace="urn:oio:sts:organisation:myndighed:1.1.3.0")] + public partial class FiltreretOejebliksbilledeType3 : object, System.ComponentModel.INotifyPropertyChanged { + + private SagDokObjektType objektTypeField; + + private RegistreringType1[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SagDokObjektType ObjektType { + get { + return this.objektTypeField; + } + set { + this.objektTypeField = value; + this.RaisePropertyChanged("ObjektType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=1)] + public RegistreringType1[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="FiltreretOejebliksbilledeType", Namespace="urn:oio:sts:organisation:interessefaellesskab:1.1.3.0")] + public partial class FiltreretOejebliksbilledeType2 : object, System.ComponentModel.INotifyPropertyChanged { + + private SagDokObjektType objektTypeField; + + private RegistreringType10[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SagDokObjektType ObjektType { + get { + return this.objektTypeField; + } + set { + this.objektTypeField = value; + this.RaisePropertyChanged("ObjektType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=1)] + public RegistreringType10[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="FiltreretOejebliksbilledeType", Namespace="urn:oio:sts:organisation:adresse:1.1.3.0")] + public partial class FiltreretOejebliksbilledeType1 : object, System.ComponentModel.INotifyPropertyChanged { + + private SagDokObjektType objektTypeField; + + private RegistreringType4[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SagDokObjektType ObjektType { + get { + return this.objektTypeField; + } + set { + this.objektTypeField = value; + this.RaisePropertyChanged("ObjektType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=1)] + public RegistreringType4[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:virksomhed:1.1.3.0")] + public partial class FiltreretOejebliksbilledeType : object, System.ComponentModel.INotifyPropertyChanged { + + private SagDokObjektType objektTypeField; + + private RegistreringType3[] registreringField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public SagDokObjektType ObjektType { + get { + return this.objektTypeField; + } + set { + this.objektTypeField = value; + this.RaisePropertyChanged("ObjektType"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=1)] + public RegistreringType3[] Registrering { + get { + return this.registreringField; + } + set { + this.registreringField = value; + this.RaisePropertyChanged("Registrering"); + } + } + + public event System.ComponentModel.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(UnikReturType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class StandardReturType : object, System.ComponentModel.INotifyPropertyChanged { + + private string statusKodeField; + + private string fejlbeskedTekstField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)] + public string StatusKode { + get { + return this.statusKodeField; + } + set { + this.statusKodeField = value; + this.RaisePropertyChanged("StatusKode"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string FejlbeskedTekst { + get { + return this.fejlbeskedTekstField; + } + set { + this.fejlbeskedTekstField = value; + this.RaisePropertyChanged("FejlbeskedTekst"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class UnikReturType : StandardReturType { + + private string typeField; + + private string uUIDIdentifikatorField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string Type { + get { + return this.typeField; + } + set { + this.typeField = value; + this.RaisePropertyChanged("Type"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public string UUIDIdentifikator { + get { + return this.uUIDIdentifikatorField; + } + set { + this.uUIDIdentifikatorField = value; + this.RaisePropertyChanged("UUIDIdentifikator"); + } + } + } + + /// + [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesOutputType9))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesOutputType8))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesOutputType7))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesOutputType6))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(FremsoegObjekthierarkiOutputType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(OpretOutputType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesOutputType5))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesOutputType4))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesOutputType3))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesOutputType2))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ListOutputType1))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesOutputType1))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(ListOutputType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesOutputType))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class BasicOutputType : object, System.ComponentModel.INotifyPropertyChanged { + + private StandardReturType standardReturField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public StandardReturType StandardRetur { + get { + return this.standardReturField; + } + set { + this.standardReturField = value; + this.RaisePropertyChanged("StandardRetur"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="LaesOutputType", Namespace="urn:oio:sts:organisation:person:1.1.3.0")] + public partial class LaesOutputType9 : BasicOutputType { + + private FiltreretOejebliksbilledeType9 filtreretOejebliksbilledeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public FiltreretOejebliksbilledeType9 FiltreretOejebliksbillede { + get { + return this.filtreretOejebliksbilledeField; + } + set { + this.filtreretOejebliksbilledeField = value; + this.RaisePropertyChanged("FiltreretOejebliksbillede"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="LaesOutputType", Namespace="urn:oio:sts:organisation:organisationfunktion:1.1.3.0")] + public partial class LaesOutputType8 : BasicOutputType { + + private FiltreretOejebliksbilledeType7 filtreretOejebliksbilledeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public FiltreretOejebliksbilledeType7 FiltreretOejebliksbillede { + get { + return this.filtreretOejebliksbilledeField; + } + set { + this.filtreretOejebliksbilledeField = value; + this.RaisePropertyChanged("FiltreretOejebliksbillede"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="LaesOutputType", Namespace="urn:oio:sts:organisation:organisation:1.1.3.0")] + public partial class LaesOutputType7 : BasicOutputType { + + private FiltreretOejebliksbilledeType6 filtreretOejebliksbilledeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public FiltreretOejebliksbilledeType6 FiltreretOejebliksbillede { + get { + return this.filtreretOejebliksbilledeField; + } + set { + this.filtreretOejebliksbilledeField = value; + this.RaisePropertyChanged("FiltreretOejebliksbillede"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="LaesOutputType", Namespace="urn:oio:sts:organisation:itsystem:1.1.3.0")] + public partial class LaesOutputType6 : BasicOutputType { + + private FiltreretOejebliksbilledeType8 filtreretOejebliksbilledeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public FiltreretOejebliksbilledeType8 FiltreretOejebliksbillede { + get { + return this.filtreretOejebliksbilledeField; + } + set { + this.filtreretOejebliksbilledeField = value; + this.RaisePropertyChanged("FiltreretOejebliksbillede"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationsystem:1.1.3.0")] + public partial class FremsoegObjekthierarkiOutputType : BasicOutputType { + + private FiltreretOejebliksbilledeType6[] organisationerField; + + private FiltreretOejebliksbilledeType5[] organisationEnhederField; + + private FiltreretOejebliksbilledeType7[] organisationFunktionerField; + + private FiltreretOejebliksbilledeType4[] brugereField; + + private FiltreretOejebliksbilledeType2[] interessefaellesskaberField; + + private FiltreretOejebliksbilledeType8[] itSystemerField; + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=0)] + [System.Xml.Serialization.XmlArrayItemAttribute("FiltreretOejebliksbillede", IsNullable=false)] + public FiltreretOejebliksbilledeType6[] Organisationer { + get { + return this.organisationerField; + } + set { + this.organisationerField = value; + this.RaisePropertyChanged("Organisationer"); + } + } + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=1)] + [System.Xml.Serialization.XmlArrayItemAttribute("FiltreretOejebliksbillede", IsNullable=false)] + public FiltreretOejebliksbilledeType5[] OrganisationEnheder { + get { + return this.organisationEnhederField; + } + set { + this.organisationEnhederField = value; + this.RaisePropertyChanged("OrganisationEnheder"); + } + } + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=2)] + [System.Xml.Serialization.XmlArrayItemAttribute("FiltreretOejebliksbillede", IsNullable=false)] + public FiltreretOejebliksbilledeType7[] OrganisationFunktioner { + get { + return this.organisationFunktionerField; + } + set { + this.organisationFunktionerField = value; + this.RaisePropertyChanged("OrganisationFunktioner"); + } + } + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=3)] + [System.Xml.Serialization.XmlArrayItemAttribute("FiltreretOejebliksbillede", IsNullable=false)] + public FiltreretOejebliksbilledeType4[] Brugere { + get { + return this.brugereField; + } + set { + this.brugereField = value; + this.RaisePropertyChanged("Brugere"); + } + } + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=4)] + [System.Xml.Serialization.XmlArrayItemAttribute("FiltreretOejebliksbillede", IsNullable=false)] + public FiltreretOejebliksbilledeType2[] Interessefaellesskaber { + get { + return this.interessefaellesskaberField; + } + set { + this.interessefaellesskaberField = value; + this.RaisePropertyChanged("Interessefaellesskaber"); + } + } + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=5)] + [System.Xml.Serialization.XmlArrayItemAttribute("FiltreretOejebliksbillede", IsNullable=false)] + public FiltreretOejebliksbilledeType8[] ItSystemer { + get { + return this.itSystemerField; + } + set { + this.itSystemerField = value; + this.RaisePropertyChanged("ItSystemer"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class OpretOutputType : BasicOutputType { + + private string uUIDIdentifikatorField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public string UUIDIdentifikator { + get { + return this.uUIDIdentifikatorField; + } + set { + this.uUIDIdentifikatorField = value; + this.RaisePropertyChanged("UUIDIdentifikator"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="LaesOutputType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] + public partial class LaesOutputType5 : BasicOutputType { + + private FiltreretOejebliksbilledeType5 filtreretOejebliksbilledeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public FiltreretOejebliksbilledeType5 FiltreretOejebliksbillede { + get { + return this.filtreretOejebliksbilledeField; + } + set { + this.filtreretOejebliksbilledeField = value; + this.RaisePropertyChanged("FiltreretOejebliksbillede"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="LaesOutputType", Namespace="urn:oio:sts:organisation:bruger:1.1.3.0")] + public partial class LaesOutputType4 : BasicOutputType { + + private FiltreretOejebliksbilledeType4 filtreretOejebliksbilledeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public FiltreretOejebliksbilledeType4 FiltreretOejebliksbillede { + get { + return this.filtreretOejebliksbilledeField; + } + set { + this.filtreretOejebliksbilledeField = value; + this.RaisePropertyChanged("FiltreretOejebliksbillede"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="LaesOutputType", Namespace="urn:oio:sts:organisation:myndighed:1.1.3.0")] + public partial class LaesOutputType3 : BasicOutputType { + + private FiltreretOejebliksbilledeType3 filtreretOejebliksbilledeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public FiltreretOejebliksbilledeType3 FiltreretOejebliksbillede { + get { + return this.filtreretOejebliksbilledeField; + } + set { + this.filtreretOejebliksbilledeField = value; + this.RaisePropertyChanged("FiltreretOejebliksbillede"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="LaesOutputType", Namespace="urn:oio:sts:organisation:interessefaellesskab:1.1.3.0")] + public partial class LaesOutputType2 : BasicOutputType { + + private FiltreretOejebliksbilledeType2 filtreretOejebliksbilledeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public FiltreretOejebliksbilledeType2 FiltreretOejebliksbillede { + get { + return this.filtreretOejebliksbilledeField; + } + set { + this.filtreretOejebliksbilledeField = value; + this.RaisePropertyChanged("FiltreretOejebliksbillede"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="ListOutputType", Namespace="urn:oio:sts:organisation:adresse:1.1.3.0")] + public partial class ListOutputType1 : BasicOutputType { + + private FiltreretOejebliksbilledeType1[] filtreretOejebliksbilledeField; + + /// + [System.Xml.Serialization.XmlElementAttribute("FiltreretOejebliksbillede", Order=0)] + public FiltreretOejebliksbilledeType1[] FiltreretOejebliksbillede { + get { + return this.filtreretOejebliksbilledeField; + } + set { + this.filtreretOejebliksbilledeField = value; + this.RaisePropertyChanged("FiltreretOejebliksbillede"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="LaesOutputType", Namespace="urn:oio:sts:organisation:adresse:1.1.3.0")] + public partial class LaesOutputType1 : BasicOutputType { + + private FiltreretOejebliksbilledeType1 filtreretOejebliksbilledeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public FiltreretOejebliksbilledeType1 FiltreretOejebliksbillede { + get { + return this.filtreretOejebliksbilledeField; + } + set { + this.filtreretOejebliksbilledeField = value; + this.RaisePropertyChanged("FiltreretOejebliksbillede"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:virksomhed:1.1.3.0")] + public partial class ListOutputType : BasicOutputType { + + private FiltreretOejebliksbilledeType[] filtreretOejebliksbilledeField; + + /// + [System.Xml.Serialization.XmlElementAttribute("FiltreretOejebliksbillede", Order=0)] + public FiltreretOejebliksbilledeType[] FiltreretOejebliksbillede { + get { + return this.filtreretOejebliksbilledeField; + } + set { + this.filtreretOejebliksbilledeField = value; + this.RaisePropertyChanged("FiltreretOejebliksbillede"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:virksomhed:1.1.3.0")] + public partial class LaesOutputType : BasicOutputType { + + private FiltreretOejebliksbilledeType filtreretOejebliksbilledeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public FiltreretOejebliksbilledeType FiltreretOejebliksbillede { + get { + return this.filtreretOejebliksbilledeField; + } + set { + this.filtreretOejebliksbilledeField = value; + this.RaisePropertyChanged("FiltreretOejebliksbillede"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/")] + public partial class FremsoegobjekthierarkiResponseType : object, System.ComponentModel.INotifyPropertyChanged { + + private FremsoegObjekthierarkiOutputType fremsoegObjekthierarkiOutputField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationsystem:1.1.3.0", Order=0)] + public FremsoegObjekthierarkiOutputType FremsoegObjekthierarkiOutput { + get { + return this.fremsoegObjekthierarkiOutputField; + } + set { + this.fremsoegObjekthierarkiOutputField = value; + this.RaisePropertyChanged("FremsoegObjekthierarkiOutput"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class SoegVirkningType : object, System.ComponentModel.INotifyPropertyChanged { + + private TidspunktType fraTidspunktField; + + private TidspunktType tilTidspunktField; + + private UnikIdType aktoerRefField; + + private AktoerTypeKodeType aktoerTypeKodeField; + + private bool aktoerTypeKodeFieldSpecified; + + private string noteTekstField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public TidspunktType FraTidspunkt { + get { + return this.fraTidspunktField; + } + set { + this.fraTidspunktField = value; + this.RaisePropertyChanged("FraTidspunkt"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TidspunktType TilTidspunkt { + get { + return this.tilTidspunktField; + } + set { + this.tilTidspunktField = value; + this.RaisePropertyChanged("TilTidspunkt"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public UnikIdType AktoerRef { + get { + return this.aktoerRefField; + } + set { + this.aktoerRefField = value; + this.RaisePropertyChanged("AktoerRef"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public AktoerTypeKodeType AktoerTypeKode { + get { + return this.aktoerTypeKodeField; + } + set { + this.aktoerTypeKodeField = value; + this.RaisePropertyChanged("AktoerTypeKode"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool AktoerTypeKodeSpecified { + get { + return this.aktoerTypeKodeFieldSpecified; + } + set { + this.aktoerTypeKodeFieldSpecified = value; + this.RaisePropertyChanged("AktoerTypeKodeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public string NoteTekst { + get { + return this.noteTekstField; + } + set { + this.noteTekstField = value; + this.RaisePropertyChanged("NoteTekst"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class SoegRegistreringType : object, System.ComponentModel.INotifyPropertyChanged { + + private TidspunktType fraTidspunktField; + + private TidspunktType tilTidspunktField; + + private LivscyklusKodeType livscyklusKodeField; + + private bool livscyklusKodeFieldSpecified; + + private UnikIdType brugerRefField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public TidspunktType FraTidspunkt { + get { + return this.fraTidspunktField; + } + set { + this.fraTidspunktField = value; + this.RaisePropertyChanged("FraTidspunkt"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TidspunktType TilTidspunkt { + get { + return this.tilTidspunktField; + } + set { + this.tilTidspunktField = value; + this.RaisePropertyChanged("TilTidspunkt"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public LivscyklusKodeType LivscyklusKode { + get { + return this.livscyklusKodeField; + } + set { + this.livscyklusKodeField = value; + this.RaisePropertyChanged("LivscyklusKode"); + } + } + + /// + [System.Xml.Serialization.XmlIgnoreAttribute()] + public bool LivscyklusKodeSpecified { + get { + return this.livscyklusKodeFieldSpecified; + } + set { + this.livscyklusKodeFieldSpecified = value; + this.RaisePropertyChanged("LivscyklusKodeSpecified"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public UnikIdType BrugerRef { + get { + return this.brugerRefField; + } + set { + this.brugerRefField = value; + this.RaisePropertyChanged("BrugerRef"); + } + } + + public event System.ComponentModel.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(SoegInputType10))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(SoegInputType9))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(SoegInputType8))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(SoegInputType7))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(FremsoegObjekthierarkiInputType))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(SoegInputType6))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(SoegInputType5))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(SoegInputType4))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(SoegInputType3))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(SoegInputType2))] + [System.Xml.Serialization.XmlIncludeAttribute(typeof(SoegInputType1))] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class SoegInputType : object, System.ComponentModel.INotifyPropertyChanged { + + private string foersteResultatReferenceField; + + private string maksimalAntalKvantitetField; + + private SoegRegistreringType soegRegistreringField; + + private SoegVirkningType soegVirkningField; + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)] + public string FoersteResultatReference { + get { + return this.foersteResultatReferenceField; + } + set { + this.foersteResultatReferenceField = value; + this.RaisePropertyChanged("FoersteResultatReference"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=1)] + public string MaksimalAntalKvantitet { + get { + return this.maksimalAntalKvantitetField; + } + set { + this.maksimalAntalKvantitetField = value; + this.RaisePropertyChanged("MaksimalAntalKvantitet"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public SoegRegistreringType SoegRegistrering { + get { + return this.soegRegistreringField; + } + set { + this.soegRegistreringField = value; + this.RaisePropertyChanged("SoegRegistrering"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public SoegVirkningType SoegVirkning { + get { + return this.soegVirkningField; + } + set { + this.soegVirkningField = value; + this.RaisePropertyChanged("SoegVirkning"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="SoegInputType", Namespace="urn:oio:sts:organisation:person:1.1.3.0")] + public partial class SoegInputType10 : SoegInputType { + + private EgenskabType9[] attributListeField; + + private TilstandListeType9 tilstandListeField; + + private RelationListeType9 relationListeField; + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=0)] + [System.Xml.Serialization.XmlArrayItemAttribute("Egenskab", IsNullable=false)] + public EgenskabType9[] AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType9 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType9 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="SoegInputType", Namespace="urn:oio:sts:organisation:organisationfunktion:1.1.3.0")] + public partial class SoegInputType9 : SoegInputType { + + private AttributListeType8 attributListeField; + + private TilstandListeType8 tilstandListeField; + + private RelationListeType8 relationListeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttributListeType8 AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType8 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType8 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="SoegInputType", Namespace="urn:oio:sts:organisation:organisation:1.1.3.0")] + public partial class SoegInputType8 : SoegInputType { + + private AttributListeType7 attributListeField; + + private TilstandListeType7 tilstandListeField; + + private RelationListeType7 relationListeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttributListeType7 AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType7 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType7 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="SoegInputType", Namespace="urn:oio:sts:organisation:itsystem:1.1.3.0")] + public partial class SoegInputType7 : SoegInputType { + + private AttributListeType6 attributListeField; + + private TilstandListeType6 tilstandListeField; + + private RelationListeType6 relationListeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttributListeType6 AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType6 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType6 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationsystem:1.1.3.0")] + public partial class FremsoegObjekthierarkiInputType : SoegInputType { + + private EgenskabType6 organisationSoegEgenskabField; + + private EgenskabType5 organisationEnhedSoegEgenskabField; + + private EgenskabType7 organisationFunktionSoegEgenskabField; + + private EgenskabType4 brugerSoegEgenskabField; + + private EgenskabType2 interessefaellesskabSoegEgenskabField; + + private EgenskabType8 itSystemSoegEgenskabField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public EgenskabType6 OrganisationSoegEgenskab { + get { + return this.organisationSoegEgenskabField; + } + set { + this.organisationSoegEgenskabField = value; + this.RaisePropertyChanged("OrganisationSoegEgenskab"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public EgenskabType5 OrganisationEnhedSoegEgenskab { + get { + return this.organisationEnhedSoegEgenskabField; + } + set { + this.organisationEnhedSoegEgenskabField = value; + this.RaisePropertyChanged("OrganisationEnhedSoegEgenskab"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public EgenskabType7 OrganisationFunktionSoegEgenskab { + get { + return this.organisationFunktionSoegEgenskabField; + } + set { + this.organisationFunktionSoegEgenskabField = value; + this.RaisePropertyChanged("OrganisationFunktionSoegEgenskab"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=3)] + public EgenskabType4 BrugerSoegEgenskab { + get { + return this.brugerSoegEgenskabField; + } + set { + this.brugerSoegEgenskabField = value; + this.RaisePropertyChanged("BrugerSoegEgenskab"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=4)] + public EgenskabType2 InteressefaellesskabSoegEgenskab { + get { + return this.interessefaellesskabSoegEgenskabField; + } + set { + this.interessefaellesskabSoegEgenskabField = value; + this.RaisePropertyChanged("InteressefaellesskabSoegEgenskab"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=5)] + public EgenskabType8 ItSystemSoegEgenskab { + get { + return this.itSystemSoegEgenskabField; + } + set { + this.itSystemSoegEgenskabField = value; + this.RaisePropertyChanged("ItSystemSoegEgenskab"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="SoegInputType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] + public partial class SoegInputType6 : SoegInputType { + + private AttributListeType5 attributListeField; + + private TilstandListeType5 tilstandListeField; + + private RelationListeType5 relationListeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttributListeType5 AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType5 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType5 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="SoegInputType", Namespace="urn:oio:sts:organisation:bruger:1.1.3.0")] + public partial class SoegInputType5 : SoegInputType { + + private AttributListeType4 attributListeField; + + private TilstandListeType4 tilstandListeField; + + private RelationListeType4 relationListeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttributListeType4 AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType4 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType4 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="SoegInputType", Namespace="urn:oio:sts:organisation:myndighed:1.1.3.0")] + public partial class SoegInputType4 : SoegInputType { + + private EgenskabType3[] attributListeField; + + private TilstandListeType3 tilstandListeField; + + private RelationListeType3 relationListeField; + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=0)] + [System.Xml.Serialization.XmlArrayItemAttribute("Egenskab", IsNullable=false)] + public EgenskabType3[] AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType3 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType3 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="SoegInputType", Namespace="urn:oio:sts:organisation:interessefaellesskab:1.1.3.0")] + public partial class SoegInputType3 : SoegInputType { + + private AttributListeType2 attributListeField; + + private TilstandListeType2 tilstandListeField; + + private RelationListeType2 relationListeField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=0)] + public AttributListeType2 AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType2 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType2 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="SoegInputType", Namespace="urn:oio:sts:organisation:adresse:1.1.3.0")] + public partial class SoegInputType2 : SoegInputType { + + private EgenskabType1[] attributListeField; + + private TilstandListeType1 tilstandListeField; + + private RelationListeType1 relationListeField; + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=0)] + [System.Xml.Serialization.XmlArrayItemAttribute("Egenskab", IsNullable=false)] + public EgenskabType1[] AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType1 TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType1 RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(TypeName="SoegInputType", Namespace="urn:oio:sts:organisation:virksomhed:1.1.3.0")] + public partial class SoegInputType1 : SoegInputType { + + private EgenskabType[] attributListeField; + + private TilstandListeType tilstandListeField; + + private RelationListeType relationListeField; + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=0)] + [System.Xml.Serialization.XmlArrayItemAttribute("Egenskab", IsNullable=false)] + public EgenskabType[] AttributListe { + get { + return this.attributListeField; + } + set { + this.attributListeField = value; + this.RaisePropertyChanged("AttributListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=1)] + public TilstandListeType TilstandListe { + get { + return this.tilstandListeField; + } + set { + this.tilstandListeField = value; + this.RaisePropertyChanged("TilstandListe"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Order=2)] + public RelationListeType RelationListe { + get { + return this.relationListeField; + } + set { + this.relationListeField = value; + this.RaisePropertyChanged("RelationListe"); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/AuthorityContext/1/")] + public partial class AuthorityContextType : object, System.ComponentModel.INotifyPropertyChanged { + + private string municipalityCVRField; + + /// + public string MunicipalityCVR { + get { + return this.municipalityCVRField; + } + set { + this.municipalityCVRField = value; + this.RaisePropertyChanged("MunicipalityCVR"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/CallContext/1/")] + public partial class CallContextType : object, System.ComponentModel.INotifyPropertyChanged { + + private string onBehalfOfUserField; + + private string callersServiceCallIdentifierField; + + private string accountingInfoField; + + /// + public string OnBehalfOfUser { + get { + return this.onBehalfOfUserField; + } + set { + this.onBehalfOfUserField = value; + this.RaisePropertyChanged("OnBehalfOfUser"); + } + } + + /// + public string CallersServiceCallIdentifier { + get { + return this.callersServiceCallIdentifierField; + } + set { + this.callersServiceCallIdentifierField = value; + this.RaisePropertyChanged("CallersServiceCallIdentifier"); + } + } + + /// + public string AccountingInfo { + get { + return this.accountingInfoField; + } + set { + this.accountingInfoField = value; + this.RaisePropertyChanged("AccountingInfo"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/")] + public partial class FremsoegobjekthierarkiRequestType : object, System.ComponentModel.INotifyPropertyChanged { + + private CallContextType callContextField; + + private AuthorityContextType authorityContextField; + + private FremsoegObjekthierarkiInputType fremsoegObjekthierarkiInputField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/CallContext/1/", Order=0)] + public CallContextType CallContext { + get { + return this.callContextField; + } + set { + this.callContextField = value; + this.RaisePropertyChanged("CallContext"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/AuthorityContext/1/", Order=1)] + public AuthorityContextType AuthorityContext { + get { + return this.authorityContextField; + } + set { + this.authorityContextField = value; + this.RaisePropertyChanged("AuthorityContext"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationsystem:1.1.3.0", Order=2)] + public FremsoegObjekthierarkiInputType FremsoegObjekthierarkiInput { + get { + return this.fremsoegObjekthierarkiInputField; + } + set { + this.fremsoegObjekthierarkiInputField = value; + this.RaisePropertyChanged("FremsoegObjekthierarkiInput"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + [System.ServiceModel.ServiceContractAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/", ConfigurationName="OrganisationSystem.OrganisationSystemPortType")] + public interface OrganisationSystemPortType { + + // CODEGEN: Generating message contract since the operation fremsoegobjekthierarki is neither RPC nor document wrapped. + [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/fre" + + "msoegobjekthierarki", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.STS.OrganizationSystem.OrganisationSystem.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/fre" + + "msoegobjekthierarki", Name="ServiceplatformFault", Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RegistreringType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BasicOutputType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RelationType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FlerRelationType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SoegInputType))] + Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiResponse fremsoegobjekthierarki(Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/fre" + + "msoegobjekthierarki", ReplyAction="*")] + System.Threading.Tasks.Task fremsoegobjekthierarkiAsync(Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiRequest request); + + // CODEGEN: Generating message contract since the operation import is neither RPC nor document wrapped. + [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/imp" + + "ort", ReplyAction="*")] + [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.STS.OrganizationSystem.OrganisationSystem.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/imp" + + "ort", Name="ServiceplatformFault", Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] + [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RegistreringType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BasicOutputType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RelationType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FlerRelationType))] + [System.ServiceModel.ServiceKnownTypeAttribute(typeof(SoegInputType))] + Infrastructure.STS.OrganizationSystem.OrganisationSystem.importResponse import(Infrastructure.STS.OrganizationSystem.OrganisationSystem.importRequest request); + + [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/imp" + + "ort", ReplyAction="*")] + System.Threading.Tasks.Task importAsync(Infrastructure.STS.OrganizationSystem.OrganisationSystem.importRequest request); + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] + public partial class RequestHeaderType : object, System.ComponentModel.INotifyPropertyChanged { + + private string transactionUUIDField; + + /// + public string TransactionUUID { + get { + return this.transactionUUIDField; + } + set { + this.transactionUUIDField = value; + this.RaisePropertyChanged("TransactionUUID"); + } + } + + public event System.ComponentModel.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 fremsoegobjekthierarkiRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] + public Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Name="FremsoegobjekthierarkiRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/", Order=0)] + public Infrastructure.STS.OrganizationSystem.OrganisationSystem.FremsoegobjekthierarkiRequestType FremsoegobjekthierarkiRequest1; + + public fremsoegobjekthierarkiRequest() { + } + + public fremsoegobjekthierarkiRequest(Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationSystem.OrganisationSystem.FremsoegobjekthierarkiRequestType FremsoegobjekthierarkiRequest1) { + this.RequestHeader = RequestHeader; + this.FremsoegobjekthierarkiRequest1 = FremsoegobjekthierarkiRequest1; + } + } + + [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 fremsoegobjekthierarkiResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] + public Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Name="FremsoegobjekthierarkiResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/", Order=0)] + public Infrastructure.STS.OrganizationSystem.OrganisationSystem.FremsoegobjekthierarkiResponseType FremsoegobjekthierarkiResponse1; + + public fremsoegobjekthierarkiResponse() { + } + + public fremsoegobjekthierarkiResponse(Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationSystem.OrganisationSystem.FremsoegobjekthierarkiResponseType FremsoegobjekthierarkiResponse1) { + this.RequestHeader = RequestHeader; + this.FremsoegobjekthierarkiResponse1 = FremsoegobjekthierarkiResponse1; + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/")] + public partial class ImportRequestType : object, System.ComponentModel.INotifyPropertyChanged { + + private CallContextType callContextField; + + private AuthorityContextType authorityContextField; + + private ImporterOrganisationSystemInputType importerOrganisationSystemInputField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/CallContext/1/", Order=0)] + public CallContextType CallContext { + get { + return this.callContextField; + } + set { + this.callContextField = value; + this.RaisePropertyChanged("CallContext"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/AuthorityContext/1/", Order=1)] + public AuthorityContextType AuthorityContext { + get { + return this.authorityContextField; + } + set { + this.authorityContextField = value; + this.RaisePropertyChanged("AuthorityContext"); + } + } + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationsystem:1.1.3.0", Order=2)] + public ImporterOrganisationSystemInputType ImporterOrganisationSystemInput { + get { + return this.importerOrganisationSystemInputField; + } + set { + this.importerOrganisationSystemInputField = value; + this.RaisePropertyChanged("ImporterOrganisationSystemInput"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationsystem:1.1.3.0")] + public partial class ImporterOrganisationSystemInputType : object, System.ComponentModel.INotifyPropertyChanged { + + private OrganisationType organisationField; + + private OrganisationEnhedType[] organisationEnhederInputField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisation:1.1.3.0", Order=0)] + public OrganisationType Organisation { + get { + return this.organisationField; + } + set { + this.organisationField = value; + this.RaisePropertyChanged("Organisation"); + } + } + + /// + [System.Xml.Serialization.XmlArrayAttribute(Order=1)] + [System.Xml.Serialization.XmlArrayItemAttribute("OrganisationEnhed", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", IsNullable=false)] + public OrganisationEnhedType[] OrganisationEnhederInput { + get { + return this.organisationEnhederInputField; + } + set { + this.organisationEnhederInputField = value; + this.RaisePropertyChanged("OrganisationEnhederInput"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/")] + public partial class ImportResponseType : object, System.ComponentModel.INotifyPropertyChanged { + + private MultipleOutputType importerOrganisationSystemOutputField; + + /// + [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationsystem:1.1.3.0", Order=0)] + public MultipleOutputType ImporterOrganisationSystemOutput { + get { + return this.importerOrganisationSystemOutputField; + } + set { + this.importerOrganisationSystemOutputField = value; + this.RaisePropertyChanged("ImporterOrganisationSystemOutput"); + } + } + + public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; + + protected void RaisePropertyChanged(string propertyName) { + System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; + if ((propertyChanged != null)) { + propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); + } + } + } + + /// + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.9037.0")] + [System.SerializableAttribute()] + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.ComponentModel.DesignerCategoryAttribute("code")] + [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] + public partial class MultipleOutputType : object, System.ComponentModel.INotifyPropertyChanged { + + private StandardReturType[] itemsField; + + /// + [System.Xml.Serialization.XmlElementAttribute("StandardRetur", typeof(StandardReturType), Order=0)] + [System.Xml.Serialization.XmlElementAttribute("UnikRetur", typeof(UnikReturType), Order=0)] + public StandardReturType[] 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.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 importRequest { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] + public Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Name="ImportRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/", Order=0)] + public Infrastructure.STS.OrganizationSystem.OrganisationSystem.ImportRequestType ImportRequest1; + + public importRequest() { + } + + public importRequest(Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationSystem.OrganisationSystem.ImportRequestType ImportRequest1) { + this.RequestHeader = RequestHeader; + this.ImportRequest1 = ImportRequest1; + } + } + + [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 importResponse { + + [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] + public Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType RequestHeader; + + [System.ServiceModel.MessageBodyMemberAttribute(Name="ImportResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationSystem/5/", Order=0)] + public Infrastructure.STS.OrganizationSystem.OrganisationSystem.ImportResponseType ImportResponse1; + + public importResponse() { + } + + public importResponse(Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationSystem.OrganisationSystem.ImportResponseType ImportResponse1) { + this.RequestHeader = RequestHeader; + this.ImportResponse1 = ImportResponse1; + } + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + public interface OrganisationSystemPortTypeChannel : Infrastructure.STS.OrganizationSystem.OrganisationSystem.OrganisationSystemPortType, System.ServiceModel.IClientChannel { + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + public partial class OrganisationSystemPortTypeClient : System.ServiceModel.ClientBase, Infrastructure.STS.OrganizationSystem.OrganisationSystem.OrganisationSystemPortType { + + public OrganisationSystemPortTypeClient() { + } + + public OrganisationSystemPortTypeClient(string endpointConfigurationName) : + base(endpointConfigurationName) { + } + + public OrganisationSystemPortTypeClient(string endpointConfigurationName, string remoteAddress) : + base(endpointConfigurationName, remoteAddress) { + } + + public OrganisationSystemPortTypeClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : + base(endpointConfigurationName, remoteAddress) { + } + + public OrganisationSystemPortTypeClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + base(binding, remoteAddress) { + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiResponse Infrastructure.STS.OrganizationSystem.OrganisationSystem.OrganisationSystemPortType.fremsoegobjekthierarki(Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiRequest request) { + return base.Channel.fremsoegobjekthierarki(request); + } + + public Infrastructure.STS.OrganizationSystem.OrganisationSystem.FremsoegobjekthierarkiResponseType fremsoegobjekthierarki(ref Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationSystem.OrganisationSystem.FremsoegobjekthierarkiRequestType FremsoegobjekthierarkiRequest1) { + Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiRequest inValue = new Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiRequest(); + inValue.RequestHeader = RequestHeader; + inValue.FremsoegobjekthierarkiRequest1 = FremsoegobjekthierarkiRequest1; + Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiResponse retVal = ((Infrastructure.STS.OrganizationSystem.OrganisationSystem.OrganisationSystemPortType)(this)).fremsoegobjekthierarki(inValue); + RequestHeader = retVal.RequestHeader; + return retVal.FremsoegobjekthierarkiResponse1; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Infrastructure.STS.OrganizationSystem.OrganisationSystem.OrganisationSystemPortType.fremsoegobjekthierarkiAsync(Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiRequest request) { + return base.Channel.fremsoegobjekthierarkiAsync(request); + } + + public System.Threading.Tasks.Task fremsoegobjekthierarkiAsync(Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationSystem.OrganisationSystem.FremsoegobjekthierarkiRequestType FremsoegobjekthierarkiRequest1) { + Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiRequest inValue = new Infrastructure.STS.OrganizationSystem.OrganisationSystem.fremsoegobjekthierarkiRequest(); + inValue.RequestHeader = RequestHeader; + inValue.FremsoegobjekthierarkiRequest1 = FremsoegobjekthierarkiRequest1; + return ((Infrastructure.STS.OrganizationSystem.OrganisationSystem.OrganisationSystemPortType)(this)).fremsoegobjekthierarkiAsync(inValue); + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + Infrastructure.STS.OrganizationSystem.OrganisationSystem.importResponse Infrastructure.STS.OrganizationSystem.OrganisationSystem.OrganisationSystemPortType.import(Infrastructure.STS.OrganizationSystem.OrganisationSystem.importRequest request) { + return base.Channel.import(request); + } + + public Infrastructure.STS.OrganizationSystem.OrganisationSystem.ImportResponseType import(ref Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationSystem.OrganisationSystem.ImportRequestType ImportRequest1) { + Infrastructure.STS.OrganizationSystem.OrganisationSystem.importRequest inValue = new Infrastructure.STS.OrganizationSystem.OrganisationSystem.importRequest(); + inValue.RequestHeader = RequestHeader; + inValue.ImportRequest1 = ImportRequest1; + Infrastructure.STS.OrganizationSystem.OrganisationSystem.importResponse retVal = ((Infrastructure.STS.OrganizationSystem.OrganisationSystem.OrganisationSystemPortType)(this)).import(inValue); + RequestHeader = retVal.RequestHeader; + return retVal.ImportResponse1; + } + + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] + System.Threading.Tasks.Task Infrastructure.STS.OrganizationSystem.OrganisationSystem.OrganisationSystemPortType.importAsync(Infrastructure.STS.OrganizationSystem.OrganisationSystem.importRequest request) { + return base.Channel.importAsync(request); + } + + public System.Threading.Tasks.Task importAsync(Infrastructure.STS.OrganizationSystem.OrganisationSystem.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationSystem.OrganisationSystem.ImportRequestType ImportRequest1) { + Infrastructure.STS.OrganizationSystem.OrganisationSystem.importRequest inValue = new Infrastructure.STS.OrganizationSystem.OrganisationSystem.importRequest(); + inValue.RequestHeader = RequestHeader; + inValue.ImportRequest1 = ImportRequest1; + return ((Infrastructure.STS.OrganizationSystem.OrganisationSystem.OrganisationSystemPortType)(this)).importAsync(inValue); + } + } +} diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Reference.svcmap b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Reference.svcmap new file mode 100644 index 0000000000..7936664c24 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Reference.svcmap @@ -0,0 +1,63 @@ + + + + false + true + true + + false + false + false + + + true + Auto + true + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/RequestHeader.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/RequestHeader.xsd similarity index 100% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/RequestHeader.xsd rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/RequestHeader.xsd diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/SagDokObjekt.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/SagDokObjekt.xsd similarity index 100% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/SagDokObjekt.xsd rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/SagDokObjekt.xsd diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/ServiceplatformFaultMessage.wsdl b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/ServiceplatformFaultMessage.wsdl similarity index 72% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/ServiceplatformFaultMessage.wsdl rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/ServiceplatformFaultMessage.wsdl index 7b2666e388..00363e1345 100644 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/ServiceplatformFaultMessage.wsdl +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/ServiceplatformFaultMessage.wsdl @@ -1,5 +1,5 @@ - + diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/ServiceplatformFault_1.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/ServiceplatformFault_1.xsd similarity index 100% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/ServiceplatformFault_1.xsd rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/ServiceplatformFault_1.xsd diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Virksomhed.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Virksomhed.xsd new file mode 100644 index 0000000000..91f2022111 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/Virksomhed.xsd @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/VirksomhedOperationer.xsd b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/VirksomhedOperationer.xsd new file mode 100644 index 0000000000..cd3b8eaccc --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/VirksomhedOperationer.xsd @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/configuration.svcinfo b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/configuration.svcinfo new file mode 100644 index 0000000000..7e1f3db821 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/configuration.svcinfo @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/configuration91.svcinfo b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/configuration91.svcinfo similarity index 96% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/configuration91.svcinfo rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/configuration91.svcinfo index 9af0f9a02b..3f800ab230 100644 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/configuration91.svcinfo +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/configuration91.svcinfo @@ -1,10 +1,10 @@ - + - + - OrganisationEnhedBinding + OrganisationSystemBinding @@ -110,10 +110,10 @@ - + - OrganisationEnhedBinding1 + OrganisationSystemBinding1 @@ -221,10 +221,10 @@ - + - https://localhost:8080/service/Organisation/OrganisationEnhed/5 + https://localhost:8080/service/Organisation/OrganisationSystem/5 @@ -233,10 +233,10 @@ basicHttpBinding - OrganisationEnhedBinding + OrganisationSystemBinding - ServiceReference.OrganisationEnhedPortType + OrganisationSystem.OrganisationSystemPortType System.ServiceModel.Configuration.AddressHeaderCollectionElement @@ -296,7 +296,7 @@ False - OrganisationEnhedPort + OrganisationSystemPort diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/policies.wsdl b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/policies.wsdl similarity index 86% rename from Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/policies.wsdl rename to Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/policies.wsdl index ff60ad349b..ae9c6c46f3 100644 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/policies.wsdl +++ b/Infrastructure.STS.OrganizationSystem/Connected Services/OrganisationSystem/policies.wsdl @@ -1,5 +1,5 @@ - + diff --git a/Infrastructure.STS.OrganizationUnit/DomainServices/StsOrganizationUnitService.cs b/Infrastructure.STS.OrganizationSystem/DomainServices/StsOrganizationSystemService.cs similarity index 55% rename from Infrastructure.STS.OrganizationUnit/DomainServices/StsOrganizationUnitService.cs rename to Infrastructure.STS.OrganizationSystem/DomainServices/StsOrganizationSystemService.cs index a6710bec08..15e0d315ff 100644 --- a/Infrastructure.STS.OrganizationUnit/DomainServices/StsOrganizationUnitService.cs +++ b/Infrastructure.STS.OrganizationSystem/DomainServices/StsOrganizationSystemService.cs @@ -11,88 +11,64 @@ using Infrastructure.STS.Common.Factories; using Infrastructure.STS.Common.Model; using Infrastructure.STS.Common.Model.Client; -using Infrastructure.STS.OrganizationUnit.ServiceReference; +using Infrastructure.STS.OrganizationSystem.OrganisationSystem; using Serilog; -namespace Infrastructure.STS.OrganizationUnit.DomainServices +namespace Infrastructure.STS.OrganizationSystem.DomainServices { - public class StsOrganizationUnitService : IStsOrganizationUnitService + public class StsOrganizationSystemService : IStsOrganizationSystemService { private readonly IStsOrganizationService _organizationService; private readonly ILogger _logger; private readonly string _certificateThumbprint; private readonly string _serviceRoot; - public StsOrganizationUnitService(IStsOrganizationService organizationService, StsOrganisationIntegrationConfiguration configuration, ILogger logger) + public StsOrganizationSystemService(IStsOrganizationService organizationService, StsOrganisationIntegrationConfiguration configuration, ILogger logger) { _organizationService = organizationService; _logger = logger; _certificateThumbprint = configuration.CertificateThumbprint; - _serviceRoot = $"https://{configuration.EndpointHost}/service/Organisation/OrganisationEnhed/5"; + _serviceRoot = $"https://{configuration.EndpointHost}/service/Organisation/OrganisationSystem/5"; } public Result> ResolveOrganizationTree(Organization organization) { - //Resolve the org uuid - var uuid = _organizationService.ResolveStsOrganizationUuid(organization); - if (uuid.Failed) - { - var error = uuid.Error; - _logger.Error("Loading sts organization uuid from org with id: {id} failed with {detailedError} {errorCode} {errorMessage}", organization.Id, error.Detail, error.FailureType, error.Message.GetValueOrFallback("")); - return new DetailedOperationError(error.FailureType, ResolveOrganizationTreeError.FailedResolvingUuid, $"{error.Detail}:{error.Message}"); - } - //Search for org units by org uuid using var clientCertificate = X509CertificateClientCertificateFactory.GetClientCertificate(_certificateThumbprint); - const int pageSize = 500; - var totalIds = new List(); - var totalResults = new List<(Guid, RegistreringType1)>(); - var currentPage = new List(); - var organizationStsUuid = uuid.Value; + const int pageSize = 1000; + int currentPageSize; + var totalIds = 0; + var totalResults = new List<(Guid, RegistreringType5)>(); using var client = CreateClient(BasicHttpBindingFactory.CreateHttpBinding(), _serviceRoot, clientCertificate); var channel = client.ChannelFactory.CreateChannel(); do { - currentPage.Clear(); - var searchRequest = CreateSearchOrgUnitsByOrgUuidRequest(organization.Cvr, organizationStsUuid, pageSize, totalIds.Count); - var searchResponse = SearchOrganizationUnits(channel, searchRequest); - - var searchStatusResult = searchResponse.SoegResponse1.SoegOutput.StandardRetur; - var stsError = searchStatusResult.StatusKode.ParseStsErrorFromStandardResultCode(); - if (stsError.HasValue) - { - _logger.Error("Failed to search for org units for org with sts uuid: {stsuuid} failed with {code} {message}", organizationStsUuid, searchStatusResult.StatusKode, searchStatusResult.FejlbeskedTekst); - return new DetailedOperationError(OperationFailure.UnknownError, ResolveOrganizationTreeError.FailedSearchingForOrgUnits); - - } - - currentPage = searchResponse.SoegResponse1.SoegOutput.IdListe.ToList(); - totalIds.AddRange(currentPage); + var listRequest = CreateOrgHierarchyRequest(organization.Cvr, pageSize, totalIds); + var listResponse = LoadOrganizationHierarchy(channel, listRequest); - var listRequest = CreateListOrgUnitsRequest(organization.Cvr, currentPage.ToArray()); - var listResponse = LoadOrganizationUnits(channel, listRequest); - - var listStatusResult = listResponse.ListResponse1.ListOutput.StandardRetur; + var listStatusResult = listResponse.FremsoegobjekthierarkiResponse1.FremsoegObjekthierarkiOutput.StandardRetur; var listStsError = listStatusResult.StatusKode.ParseStsErrorFromStandardResultCode(); if (listStsError.HasValue) { - _logger.Error("Failed to list units for org units for org with sts uuid: {stsuuid} and unit uuids: {uuids} failed with {code} {message}", organizationStsUuid, string.Join(",", currentPage), listStatusResult.StatusKode, listStatusResult.FejlbeskedTekst); + _logger.Error("Failed to query org units for org with cvr {orgCvr} failed with {code} {message}", organization.Cvr, listStatusResult.StatusKode, listStatusResult.FejlbeskedTekst); return new DetailedOperationError(OperationFailure.UnknownError, ResolveOrganizationTreeError.FailedLoadingOrgUnits); - } - var units = listResponse - .ListResponse1 - .ListOutput - .FiltreretOejebliksbillede + var listResponseUnits = listResponse.FremsoegobjekthierarkiResponse1.FremsoegObjekthierarkiOutput.OrganisationEnheder; + var numberOfReturnedUnits = listResponseUnits.Length; + + totalIds += numberOfReturnedUnits; + currentPageSize = numberOfReturnedUnits; + + var unitUuidAndDataList = listResponseUnits .Select(snapshot => (new Guid(snapshot.ObjektType.UUIDIdentifikator), snapshot.Registrering.OrderByDescending(x => x.Tidspunkt).FirstOrDefault())) .Where(x => x.Item2 != null); - totalResults.AddRange(units); + totalResults.AddRange(unitUuidAndDataList); - } while (currentPage.Count == pageSize); + } while (currentPageSize == pageSize); // Prepare conversion to import tree var unitsByUuid = totalResults.ToDictionary(unit => unit.Item1); @@ -148,13 +124,12 @@ public Result string.IsNullOrEmpty(x.EnhedNavn) == false); - var unitUuid = unit.Item1; + var egenskabType = registreringType5.AttributListe.Egenskab.First(x => string.IsNullOrEmpty(x.EnhedNavn) == false); var organizationUnit = new ExternalOrganizationUnit(unitUuid, egenskabType.EnhedNavn, new Dictionary() { { "UserFacingKey", egenskabType.BrugervendtNoegleTekst } }, parentIdToConvertedChildren.ContainsKey(unitUuid) ? parentIdToConvertedChildren[unitUuid] : new List(0)); idToConvertedChildren[organizationUnit.Uuid] = organizationUnit; - var parentUnit = unit.Item2.RelationListe.Overordnet; + var parentUnit = registreringType5.RelationListe.Overordnet; if (parentUnit != null) { var parentId = new Guid(parentUnit.ReferenceID.Item); @@ -170,18 +145,13 @@ public Result(() => channel.soeg(searchRequest)).Execute(); - } - - private static listResponse LoadOrganizationUnits(OrganisationEnhedPortType channel, listRequest listRequest) + + private static fremsoegobjekthierarkiResponse LoadOrganizationHierarchy(OrganisationSystemPortType channel, fremsoegobjekthierarkiRequest request) { - return new RetriedIntegrationRequest(() => channel.list(listRequest)).Execute(); + return new RetriedIntegrationRequest(() => channel.fremsoegobjekthierarkiAsync(request).Result).Execute(); } - private static Stack CreateOrgUnitConversionStack((Guid, RegistreringType1) root, Dictionary> unitsByParent) + private static Stack CreateOrgUnitConversionStack((Guid, RegistreringType5) root, Dictionary> unitsByParent) { var processingStack = new Stack(); processingStack.Push(root.Item1); @@ -199,7 +169,7 @@ private static Stack CreateOrgUnitConversionStack((Guid, RegistreringType1 return processingStack; } - private static IEnumerable GetSubTree((Guid, RegistreringType1) currentChild, Dictionary> unitsByParent) + private static IEnumerable GetSubTree((Guid, RegistreringType5) currentChild, Dictionary> unitsByParent) { var id = currentChild.Item1; @@ -220,69 +190,29 @@ private static IEnumerable GetSubTree((Guid, RegistreringType1) currentChi } } - public static listRequest CreateListOrgUnitsRequest(string municipalityCvr, params string[] currentUnitUuids) + public static fremsoegobjekthierarkiRequest CreateOrgHierarchyRequest(string municipalityCvr, int pageSize, int skip = 0) { - var listRequest = new listRequest + var listRequest = new fremsoegobjekthierarkiRequest { - ListRequest1 = new ListRequestType - { - AuthorityContext = new AuthorityContextType - { - MunicipalityCVR = municipalityCvr - }, - ListInput = new ListInputType - { - UUIDIdentifikator = currentUnitUuids - } - } - }; - return listRequest; - } - - public static soegRequest CreateSearchOrgUnitsByOrgUuidRequest(string municipalityCvr, Guid organizationUuid, int pageSize, int skip = 0) - { - return new soegRequest - { - SoegRequest1 = new SoegRequestType - { - AuthorityContext = new AuthorityContextType + FremsoegobjekthierarkiRequest1 = new FremsoegobjekthierarkiRequestType() + { + AuthorityContext = new AuthorityContextType() { MunicipalityCVR = municipalityCvr }, - SoegInput = new SoegInputType1 + FremsoegObjekthierarkiInput = new FremsoegObjekthierarkiInputType() { - AttributListe = new AttributListeType(), //Required by schema validation - TilstandListe = new TilstandListeType() - { - Gyldighed = new GyldighedType[] - { - new() - { - GyldighedStatusKode = GyldighedStatusKodeType.Aktiv - } - } - }, //Required by schema validation - RelationListe = new RelationListeType - { - Tilhoerer = new OrganisationRelationType - { - ReferenceID = new UnikIdType - { - Item = organizationUuid.ToString("D"), - ItemElementName = ItemChoiceType.UUIDIdentifikator - } - } - }, MaksimalAntalKvantitet = pageSize.ToString("D"), FoersteResultatReference = skip.ToString("D") } - } + }, }; + return listRequest; } - private static OrganisationEnhedPortTypeClient CreateClient(BasicHttpBinding binding, string urlServicePlatformService, X509Certificate2 certificate) + private static OrganisationSystemPortTypeClient CreateClient(BasicHttpBinding binding, string urlServicePlatformService, X509Certificate2 certificate) { - return new OrganisationEnhedPortTypeClient(binding, new EndpointAddress(urlServicePlatformService)) + return new OrganisationSystemPortTypeClient(binding, new EndpointAddress(urlServicePlatformService)) { ClientCredentials = { @@ -294,4 +224,4 @@ private static OrganisationEnhedPortTypeClient CreateClient(BasicHttpBinding bin }; } } -} \ No newline at end of file +} diff --git a/Infrastructure.STS.OrganizationSystem/Infrastructure.STS.OrganizationSystem.csproj b/Infrastructure.STS.OrganizationSystem/Infrastructure.STS.OrganizationSystem.csproj new file mode 100644 index 0000000000..7298e3bb59 --- /dev/null +++ b/Infrastructure.STS.OrganizationSystem/Infrastructure.STS.OrganizationSystem.csproj @@ -0,0 +1,208 @@ + + + + + Debug + AnyCPU + {A125252B-4EFF-4123-9895-54AD85AAAEAF} + Library + Properties + Infrastructure.STS.OrganizationSystem + Infrastructure.STS.OrganizationSystem + v4.8 + 512 + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + latest + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + latest + + + + ..\packages\Serilog.2.11.0\lib\net46\Serilog.dll + + + + + + + + + + + + + + + True + True + Reference.svcmap + + + + + + + + + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Reference.svcmap + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + + Designer + + + Designer + + + Designer + + + Designer + + + + Designer + + + Designer + + + + Designer + + + Designer + + + Designer + + + + + + + + + + + + + + + WCF Proxy Generator + Reference.cs + + + + + {BD8C90E7-52C7-4AD0-935D-98A2AA89E449} + Core.Abstractions + + + {A76A8E41-74F7-4443-A5F3-059B5414D83B} + Core.DomainModel + + + {ADCACC1D-F538-464C-9102-F4C1D6FA35D3} + Core.DomainServices + + + {423D7522-4882-4438-94F4-7B3F5778C83F} + Infrastructure.STS.Common + + + + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Properties/AssemblyInfo.cs b/Infrastructure.STS.OrganizationSystem/Properties/AssemblyInfo.cs similarity index 83% rename from Infrastructure.STS.OrganizationUnit/Properties/AssemblyInfo.cs rename to Infrastructure.STS.OrganizationSystem/Properties/AssemblyInfo.cs index d7cf0f8cfc..659508b169 100644 --- a/Infrastructure.STS.OrganizationUnit/Properties/AssemblyInfo.cs +++ b/Infrastructure.STS.OrganizationSystem/Properties/AssemblyInfo.cs @@ -5,12 +5,12 @@ // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("Infrastructure.STS.OrganizationUnit")] +[assembly: AssemblyTitle("Infrastructure.STS.OrganizationSystem")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("Infrastructure.STS.OrganizationUnit")] -[assembly: AssemblyCopyright("Copyright © 2022")] +[assembly: AssemblyProduct("Infrastructure.STS.OrganizationSystem")] +[assembly: AssemblyCopyright("Copyright © 2023")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -20,7 +20,7 @@ [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("77c5bedb-cc7f-4d6f-bf34-ec72b57c03c8")] +[assembly: Guid("a125252b-4eff-4123-9895-54ad85aaaeaf")] // Version information for an assembly consists of the following four values: // diff --git a/Infrastructure.STS.OrganizationUnit/app.config b/Infrastructure.STS.OrganizationSystem/app.config similarity index 62% rename from Infrastructure.STS.OrganizationUnit/app.config rename to Infrastructure.STS.OrganizationSystem/app.config index f6e7fff023..f5649440ae 100644 --- a/Infrastructure.STS.OrganizationUnit/app.config +++ b/Infrastructure.STS.OrganizationSystem/app.config @@ -3,16 +3,16 @@ - + - + - + \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/packages.config b/Infrastructure.STS.OrganizationSystem/packages.config similarity index 67% rename from Infrastructure.STS.OrganizationUnit/packages.config rename to Infrastructure.STS.OrganizationSystem/packages.config index 78898b3b3e..22e0304f77 100644 --- a/Infrastructure.STS.OrganizationUnit/packages.config +++ b/Infrastructure.STS.OrganizationSystem/packages.config @@ -1,5 +1,4 @@  - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.ImporterResponseType.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.ImporterResponseType.datasource deleted file mode 100644 index 9b3ed45bdb..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.ImporterResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.ImporterResponseType, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.LaesResponseType.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.LaesResponseType.datasource deleted file mode 100644 index 268a983f30..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.LaesResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.LaesResponseType, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.ListResponseType.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.ListResponseType.datasource deleted file mode 100644 index 86f7822b7f..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.ListResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.ListResponseType, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.RetResponseType.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.RetResponseType.datasource deleted file mode 100644 index c8fb4f6382..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.RetResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.RetResponseType, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.SletResponseType.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.SletResponseType.datasource deleted file mode 100644 index 0e3f656404..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.SletResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.SletResponseType, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.SoegResponseType.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.SoegResponseType.datasource deleted file mode 100644 index 5a8c1de245..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.SoegResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.SoegResponseType, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.importerResponse.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.importerResponse.datasource deleted file mode 100644 index 4c040d29e4..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.importerResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.importerResponse, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.laesResponse.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.laesResponse.datasource deleted file mode 100644 index 9c600b2cd5..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.laesResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.laesResponse, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.listResponse.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.listResponse.datasource deleted file mode 100644 index dc209e910f..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.listResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.listResponse, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.opretResponse.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.opretResponse.datasource deleted file mode 100644 index d446654cc8..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.opretResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.opretResponse, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.passiverResponse.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.passiverResponse.datasource deleted file mode 100644 index d23cbc6b88..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.passiverResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.passiverResponse, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.retResponse.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.retResponse.datasource deleted file mode 100644 index b26ea6cb67..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.retResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.retResponse, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.sletResponse.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.sletResponse.datasource deleted file mode 100644 index e0c4841e75..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.sletResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.sletResponse, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.soegResponse.datasource b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.soegResponse.datasource deleted file mode 100644 index d9ded74760..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Infrastructure.STS.OrganizationUnit.ServiceReference.soegResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.STS.OrganizationUnit.ServiceReference.soegResponse, Connected Services.ServiceReference.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationEnhedService.wsdl b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationEnhedService.wsdl deleted file mode 100644 index 8a5857716a..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationEnhedService.wsdl +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationEnhedServiceMsg.xsd b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationEnhedServiceMsg.xsd deleted file mode 100644 index b5f266cfae..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/OrganisationEnhedServiceMsg.xsd +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Reference.cs b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Reference.cs deleted file mode 100644 index dd174fe100..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Reference.cs +++ /dev/null @@ -1,4117 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -namespace Infrastructure.STS.OrganizationUnit.ServiceReference { - - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] - public partial class ServiceplatformFaultType : object, System.ComponentModel.INotifyPropertyChanged { - - private ErrorType[] errorListField; - - /// - [System.Xml.Serialization.XmlArrayAttribute(Order=0)] - [System.Xml.Serialization.XmlArrayItemAttribute("Error", IsNullable=false)] - public ErrorType[] ErrorList { - get { - return this.errorListField; - } - set { - this.errorListField = value; - this.RaisePropertyChanged("ErrorList"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] - public partial class ErrorType : object, System.ComponentModel.INotifyPropertyChanged { - - private string errorCodeField; - - private string errorTextField; - - /// - [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 ErrorText { - get { - return this.errorTextField; - } - set { - this.errorTextField = value; - this.RaisePropertyChanged("ErrorText"); - } - } - - public event System.ComponentModel.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(RegistreringType1))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class RegistreringType : object, System.ComponentModel.INotifyPropertyChanged { - - private string noteTekstField; - - private System.DateTime tidspunktField; - - private bool tidspunktFieldSpecified; - - private LivscyklusKodeType livscyklusKodeField; - - private bool livscyklusKodeFieldSpecified; - - private UnikIdType brugerRefField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public string NoteTekst { - get { - return this.noteTekstField; - } - set { - this.noteTekstField = value; - this.RaisePropertyChanged("NoteTekst"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public System.DateTime Tidspunkt { - get { - return this.tidspunktField; - } - set { - this.tidspunktField = value; - this.RaisePropertyChanged("Tidspunkt"); - } - } - - /// - [System.Xml.Serialization.XmlIgnoreAttribute()] - public bool TidspunktSpecified { - get { - return this.tidspunktFieldSpecified; - } - set { - this.tidspunktFieldSpecified = value; - this.RaisePropertyChanged("TidspunktSpecified"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=2)] - public LivscyklusKodeType LivscyklusKode { - get { - return this.livscyklusKodeField; - } - set { - this.livscyklusKodeField = value; - this.RaisePropertyChanged("LivscyklusKode"); - } - } - - /// - [System.Xml.Serialization.XmlIgnoreAttribute()] - public bool LivscyklusKodeSpecified { - get { - return this.livscyklusKodeFieldSpecified; - } - set { - this.livscyklusKodeFieldSpecified = value; - this.RaisePropertyChanged("LivscyklusKodeSpecified"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=3)] - public UnikIdType BrugerRef { - get { - return this.brugerRefField; - } - set { - this.brugerRefField = value; - this.RaisePropertyChanged("BrugerRef"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public enum LivscyklusKodeType { - - /// - Opstaaet, - - /// - Importeret, - - /// - Passiveret, - - /// - Slettet, - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class UnikIdType : object, System.ComponentModel.INotifyPropertyChanged { - - private string itemField; - - private ItemChoiceType itemElementNameField; - - /// - [System.Xml.Serialization.XmlElementAttribute("URNIdentifikator", typeof(string), Order=0)] - [System.Xml.Serialization.XmlElementAttribute("UUIDIdentifikator", 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 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.4084.0")] - [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0", IncludeInSchema=false)] - public enum ItemChoiceType { - - /// - URNIdentifikator, - - /// - UUIDIdentifikator, - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(TypeName="RegistreringType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class RegistreringType1 : RegistreringType { - - private AttributListeType attributListeField; - - private TilstandListeType tilstandListeField; - - private RelationListeType relationListeField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public AttributListeType AttributListe { - get { - return this.attributListeField; - } - set { - this.attributListeField = value; - this.RaisePropertyChanged("AttributListe"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public TilstandListeType TilstandListe { - get { - return this.tilstandListeField; - } - set { - this.tilstandListeField = value; - this.RaisePropertyChanged("TilstandListe"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=2)] - public RelationListeType RelationListe { - get { - return this.relationListeField; - } - set { - this.relationListeField = value; - this.RaisePropertyChanged("RelationListe"); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class AttributListeType : object, System.ComponentModel.INotifyPropertyChanged { - - private EgenskabType[] egenskabField; - - private LokalUdvidelseType lokalUdvidelseField; - - /// - [System.Xml.Serialization.XmlElementAttribute("Egenskab", Order=0)] - public EgenskabType[] Egenskab { - get { - return this.egenskabField; - } - set { - this.egenskabField = value; - this.RaisePropertyChanged("Egenskab"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] - public LokalUdvidelseType LokalUdvidelse { - get { - return this.lokalUdvidelseField; - } - set { - this.lokalUdvidelseField = value; - this.RaisePropertyChanged("LokalUdvidelse"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class EgenskabType : object, System.ComponentModel.INotifyPropertyChanged { - - private VirkningType virkningField; - - private string brugervendtNoegleTekstField; - - private string enhedNavnField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] - public VirkningType Virkning { - get { - return this.virkningField; - } - set { - this.virkningField = value; - this.RaisePropertyChanged("Virkning"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] - public string BrugervendtNoegleTekst { - get { - return this.brugervendtNoegleTekstField; - } - set { - this.brugervendtNoegleTekstField = value; - this.RaisePropertyChanged("BrugervendtNoegleTekst"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=2)] - public string EnhedNavn { - get { - return this.enhedNavnField; - } - set { - this.enhedNavnField = value; - this.RaisePropertyChanged("EnhedNavn"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class VirkningType : object, System.ComponentModel.INotifyPropertyChanged { - - private TidspunktType fraTidspunktField; - - private TidspunktType tilTidspunktField; - - private UnikIdType aktoerRefField; - - private AktoerTypeKodeType aktoerTypeKodeField; - - private bool aktoerTypeKodeFieldSpecified; - - private string noteTekstField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public TidspunktType FraTidspunkt { - get { - return this.fraTidspunktField; - } - set { - this.fraTidspunktField = value; - this.RaisePropertyChanged("FraTidspunkt"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public TidspunktType TilTidspunkt { - get { - return this.tilTidspunktField; - } - set { - this.tilTidspunktField = value; - this.RaisePropertyChanged("TilTidspunkt"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=2)] - public UnikIdType AktoerRef { - get { - return this.aktoerRefField; - } - set { - this.aktoerRefField = value; - this.RaisePropertyChanged("AktoerRef"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=3)] - public AktoerTypeKodeType AktoerTypeKode { - get { - return this.aktoerTypeKodeField; - } - set { - this.aktoerTypeKodeField = value; - this.RaisePropertyChanged("AktoerTypeKode"); - } - } - - /// - [System.Xml.Serialization.XmlIgnoreAttribute()] - public bool AktoerTypeKodeSpecified { - get { - return this.aktoerTypeKodeFieldSpecified; - } - set { - this.aktoerTypeKodeFieldSpecified = value; - this.RaisePropertyChanged("AktoerTypeKodeSpecified"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=4)] - public string NoteTekst { - get { - return this.noteTekstField; - } - set { - this.noteTekstField = value; - this.RaisePropertyChanged("NoteTekst"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class TidspunktType : object, System.ComponentModel.INotifyPropertyChanged { - - private object itemField; - - /// - [System.Xml.Serialization.XmlElementAttribute("GraenseIndikator", typeof(bool), Order=0)] - [System.Xml.Serialization.XmlElementAttribute("TidsstempelDatoTid", typeof(System.DateTime), 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.4084.0")] - [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public enum AktoerTypeKodeType { - - /// - Organisation, - - /// - OrganisationEnhed, - - /// - OrganisationFunktion, - - /// - Bruger, - - /// - ItSystem, - - /// - Interessefaellesskab, - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class LokalUdvidelseType : object, System.ComponentModel.INotifyPropertyChanged { - - private System.Xml.XmlElement[] anyField; - - /// - [System.Xml.Serialization.XmlAnyElementAttribute(Order=0)] - public System.Xml.XmlElement[] Any { - get { - return this.anyField; - } - set { - this.anyField = value; - this.RaisePropertyChanged("Any"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class TilstandListeType : object, System.ComponentModel.INotifyPropertyChanged { - - private GyldighedType[] gyldighedField; - - private LokalUdvidelseType lokalUdvidelseField; - - /// - [System.Xml.Serialization.XmlElementAttribute("Gyldighed", Namespace="urn:oio:sts:organisation:1.1.3.0", Order=0)] - public GyldighedType[] Gyldighed { - get { - return this.gyldighedField; - } - set { - this.gyldighedField = value; - this.RaisePropertyChanged("Gyldighed"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=1)] - public LokalUdvidelseType LokalUdvidelse { - get { - return this.lokalUdvidelseField; - } - set { - this.lokalUdvidelseField = value; - this.RaisePropertyChanged("LokalUdvidelse"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:1.1.3.0")] - public partial class GyldighedType : object, System.ComponentModel.INotifyPropertyChanged { - - private VirkningType virkningField; - - private GyldighedStatusKodeType gyldighedStatusKodeField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=0)] - public VirkningType Virkning { - get { - return this.virkningField; - } - set { - this.virkningField = value; - this.RaisePropertyChanged("Virkning"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public GyldighedStatusKodeType GyldighedStatusKode { - get { - return this.gyldighedStatusKodeField; - } - set { - this.gyldighedStatusKodeField = value; - this.RaisePropertyChanged("GyldighedStatusKode"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:1.1.3.0")] - public enum GyldighedStatusKodeType { - - /// - Aktiv, - - /// - Inaktiv, - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class RelationListeType : object, System.ComponentModel.INotifyPropertyChanged { - - private AdresseFlerRelationType[] adresserField; - - private PersonFlerRelationType[] ansatteField; - - private KlasseRelationType brancheField; - - private KlasseRelationType enhedstypeField; - - private KlasseFlerRelationType[] opgaverField; - - private OrganisationEnhedRelationType overordnetField; - - private VirksomhedRelationType produktionsenhedField; - - private VirksomhedRelationType skatteenhedField; - - private OrganisationRelationType tilhoererField; - - private BrugerFlerRelationType[] tilknyttedeBrugereField; - - private OrganisationEnhedFlerRelationType[] tilknyttedeEnhederField; - - private OrganisationFunktionFlerRelationType[] tilknyttedeFunktionerField; - - private InteressefaellesskabFlerRelationType[] tilknyttedeInteressefaellesskaberField; - - private OrganisationFlerRelationType[] tilknyttedeOrganisationerField; - - private PersonFlerRelationType[] tilknyttedePersonerField; - - private ItSystemFlerRelationType[] tilknyttedeItSystemerField; - - private LokalUdvidelseType lokalUdvidelseField; - - /// - [System.Xml.Serialization.XmlElementAttribute("Adresser", Namespace="urn:oio:sagdok:3.0.0", Order=0)] - public AdresseFlerRelationType[] Adresser { - get { - return this.adresserField; - } - set { - this.adresserField = value; - this.RaisePropertyChanged("Adresser"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute("Ansatte", Namespace="urn:oio:sagdok:3.0.0", Order=1)] - public PersonFlerRelationType[] Ansatte { - get { - return this.ansatteField; - } - set { - this.ansatteField = value; - this.RaisePropertyChanged("Ansatte"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=2)] - public KlasseRelationType Branche { - get { - return this.brancheField; - } - set { - this.brancheField = value; - this.RaisePropertyChanged("Branche"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=3)] - public KlasseRelationType Enhedstype { - get { - return this.enhedstypeField; - } - set { - this.enhedstypeField = value; - this.RaisePropertyChanged("Enhedstype"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute("Opgaver", Namespace="urn:oio:sagdok:3.0.0", Order=4)] - public KlasseFlerRelationType[] Opgaver { - get { - return this.opgaverField; - } - set { - this.opgaverField = value; - this.RaisePropertyChanged("Opgaver"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=5)] - public OrganisationEnhedRelationType Overordnet { - get { - return this.overordnetField; - } - set { - this.overordnetField = value; - this.RaisePropertyChanged("Overordnet"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=6)] - public VirksomhedRelationType Produktionsenhed { - get { - return this.produktionsenhedField; - } - set { - this.produktionsenhedField = value; - this.RaisePropertyChanged("Produktionsenhed"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=7)] - public VirksomhedRelationType Skatteenhed { - get { - return this.skatteenhedField; - } - set { - this.skatteenhedField = value; - this.RaisePropertyChanged("Skatteenhed"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=8)] - public OrganisationRelationType Tilhoerer { - get { - return this.tilhoererField; - } - set { - this.tilhoererField = value; - this.RaisePropertyChanged("Tilhoerer"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute("TilknyttedeBrugere", Namespace="urn:oio:sagdok:3.0.0", Order=9)] - public BrugerFlerRelationType[] TilknyttedeBrugere { - get { - return this.tilknyttedeBrugereField; - } - set { - this.tilknyttedeBrugereField = value; - this.RaisePropertyChanged("TilknyttedeBrugere"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute("TilknyttedeEnheder", Namespace="urn:oio:sagdok:3.0.0", Order=10)] - public OrganisationEnhedFlerRelationType[] TilknyttedeEnheder { - get { - return this.tilknyttedeEnhederField; - } - set { - this.tilknyttedeEnhederField = value; - this.RaisePropertyChanged("TilknyttedeEnheder"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute("TilknyttedeFunktioner", Namespace="urn:oio:sagdok:3.0.0", Order=11)] - public OrganisationFunktionFlerRelationType[] TilknyttedeFunktioner { - get { - return this.tilknyttedeFunktionerField; - } - set { - this.tilknyttedeFunktionerField = value; - this.RaisePropertyChanged("TilknyttedeFunktioner"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute("TilknyttedeInteressefaellesskaber", Namespace="urn:oio:sagdok:3.0.0", Order=12)] - public InteressefaellesskabFlerRelationType[] TilknyttedeInteressefaellesskaber { - get { - return this.tilknyttedeInteressefaellesskaberField; - } - set { - this.tilknyttedeInteressefaellesskaberField = value; - this.RaisePropertyChanged("TilknyttedeInteressefaellesskaber"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute("TilknyttedeOrganisationer", Namespace="urn:oio:sagdok:3.0.0", Order=13)] - public OrganisationFlerRelationType[] TilknyttedeOrganisationer { - get { - return this.tilknyttedeOrganisationerField; - } - set { - this.tilknyttedeOrganisationerField = value; - this.RaisePropertyChanged("TilknyttedeOrganisationer"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute("TilknyttedePersoner", Namespace="urn:oio:sagdok:3.0.0", Order=14)] - public PersonFlerRelationType[] TilknyttedePersoner { - get { - return this.tilknyttedePersonerField; - } - set { - this.tilknyttedePersonerField = value; - this.RaisePropertyChanged("TilknyttedePersoner"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute("TilknyttedeItSystemer", Namespace="urn:oio:sagdok:3.0.0", Order=15)] - public ItSystemFlerRelationType[] TilknyttedeItSystemer { - get { - return this.tilknyttedeItSystemerField; - } - set { - this.tilknyttedeItSystemerField = value; - this.RaisePropertyChanged("TilknyttedeItSystemer"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sagdok:3.0.0", Order=16)] - public LokalUdvidelseType LokalUdvidelse { - get { - return this.lokalUdvidelseField; - } - set { - this.lokalUdvidelseField = value; - this.RaisePropertyChanged("LokalUdvidelse"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class AdresseFlerRelationType : FlerRelationType { - - private UnikIdType rolleField; - - private UnikIdType typeField; - - private string indeksField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public UnikIdType Rolle { - get { - return this.rolleField; - } - set { - this.rolleField = value; - this.RaisePropertyChanged("Rolle"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public UnikIdType Type { - get { - return this.typeField; - } - set { - this.typeField = value; - this.RaisePropertyChanged("Type"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=2)] - public string Indeks { - get { - return this.indeksField; - } - set { - this.indeksField = value; - this.RaisePropertyChanged("Indeks"); - } - } - } - - /// - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ArkivFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(DokumentFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(PartFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(SagFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(AktoerFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ItSystemFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(InteressefaellesskabFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationFunktionFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationEnhedFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(BrugerFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(KlasseFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(PersonFlerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(AdresseFlerRelationType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class FlerRelationType : object, System.ComponentModel.INotifyPropertyChanged { - - private VirkningType virkningField; - - private UnikIdType referenceIDField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public VirkningType Virkning { - get { - return this.virkningField; - } - set { - this.virkningField = value; - this.RaisePropertyChanged("Virkning"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public UnikIdType ReferenceID { - get { - return this.referenceIDField; - } - set { - this.referenceIDField = value; - this.RaisePropertyChanged("ReferenceID"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class ArkivFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class DokumentFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class PartFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class SagFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class AktoerFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class ItSystemFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class OrganisationFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class InteressefaellesskabFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class OrganisationFunktionFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class OrganisationEnhedFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class BrugerFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class KlasseFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class PersonFlerRelationType : FlerRelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class KlasseRelationType : RelationType { - } - - /// - [System.Xml.Serialization.XmlIncludeAttribute(typeof(KlassifikationRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(FacetRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(DokumentRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(SagRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ArkivRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(AktoerRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(VirksomhedRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationEnhedRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(MyndighedRelationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(KlasseRelationType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class RelationType : object, System.ComponentModel.INotifyPropertyChanged { - - private VirkningType virkningField; - - private UnikIdType referenceIDField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public VirkningType Virkning { - get { - return this.virkningField; - } - set { - this.virkningField = value; - this.RaisePropertyChanged("Virkning"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public UnikIdType ReferenceID { - get { - return this.referenceIDField; - } - set { - this.referenceIDField = value; - this.RaisePropertyChanged("ReferenceID"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class KlassifikationRelationType : RelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class FacetRelationType : RelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class DokumentRelationType : RelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class SagRelationType : RelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class ArkivRelationType : RelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class AktoerRelationType : RelationType { - - private AktoerTypeKodeType aktoerTypeKodeField; - - private bool aktoerTypeKodeFieldSpecified; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public AktoerTypeKodeType AktoerTypeKode { - get { - return this.aktoerTypeKodeField; - } - set { - this.aktoerTypeKodeField = value; - this.RaisePropertyChanged("AktoerTypeKode"); - } - } - - /// - [System.Xml.Serialization.XmlIgnoreAttribute()] - public bool AktoerTypeKodeSpecified { - get { - return this.aktoerTypeKodeFieldSpecified; - } - set { - this.aktoerTypeKodeFieldSpecified = value; - this.RaisePropertyChanged("AktoerTypeKodeSpecified"); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class OrganisationRelationType : RelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class VirksomhedRelationType : RelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class OrganisationEnhedRelationType : RelationType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class MyndighedRelationType : RelationType { - } - - /// - [System.Xml.Serialization.XmlIncludeAttribute(typeof(PartType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(AktoerType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationEnhedType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesFiltreretOutputType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class SagDokObjektType : object, System.ComponentModel.INotifyPropertyChanged { - - private string uUIDIdentifikatorField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public string UUIDIdentifikator { - get { - return this.uUIDIdentifikatorField; - } - set { - this.uUIDIdentifikatorField = value; - this.RaisePropertyChanged("UUIDIdentifikator"); - } - } - - public event System.ComponentModel.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(AktoerType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationEnhedType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:part:1.1.3.0")] - public partial class PartType : SagDokObjektType { - } - - /// - [System.Xml.Serialization.XmlIncludeAttribute(typeof(OrganisationEnhedType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:1.1.3.0")] - public partial class AktoerType : PartType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class OrganisationEnhedType : AktoerType { - - private RegistreringType1[] registreringField; - - /// - [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=0)] - public RegistreringType1[] Registrering { - get { - return this.registreringField; - } - set { - this.registreringField = value; - this.RaisePropertyChanged("Registrering"); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class LaesFiltreretOutputType : SagDokObjektType { - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class FiltreretOejebliksbilledeType : object, System.ComponentModel.INotifyPropertyChanged { - - private SagDokObjektType objektTypeField; - - private RegistreringType1[] registreringField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public SagDokObjektType ObjektType { - get { - return this.objektTypeField; - } - set { - this.objektTypeField = value; - this.RaisePropertyChanged("ObjektType"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute("Registrering", Order=1)] - public RegistreringType1[] Registrering { - get { - return this.registreringField; - } - set { - this.registreringField = value; - this.RaisePropertyChanged("Registrering"); - } - } - - public event System.ComponentModel.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(UnikReturType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class StandardReturType : object, System.ComponentModel.INotifyPropertyChanged { - - private string statusKodeField; - - private string fejlbeskedTekstField; - - /// - [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)] - public string StatusKode { - get { - return this.statusKodeField; - } - set { - this.statusKodeField = value; - this.RaisePropertyChanged("StatusKode"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public string FejlbeskedTekst { - get { - return this.fejlbeskedTekstField; - } - set { - this.fejlbeskedTekstField = value; - this.RaisePropertyChanged("FejlbeskedTekst"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class UnikReturType : StandardReturType { - - private string typeField; - - private string uUIDIdentifikatorField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public string Type { - get { - return this.typeField; - } - set { - this.typeField = value; - this.RaisePropertyChanged("Type"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public string UUIDIdentifikator { - get { - return this.uUIDIdentifikatorField; - } - set { - this.uUIDIdentifikatorField = value; - this.RaisePropertyChanged("UUIDIdentifikator"); - } - } - } - - /// - [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesOutputType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(OpretOutputType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class BasicOutputType : object, System.ComponentModel.INotifyPropertyChanged { - - private StandardReturType standardReturField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public StandardReturType StandardRetur { - get { - return this.standardReturField; - } - set { - this.standardReturField = value; - this.RaisePropertyChanged("StandardRetur"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class LaesOutputType : BasicOutputType { - - private FiltreretOejebliksbilledeType filtreretOejebliksbilledeField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public FiltreretOejebliksbilledeType FiltreretOejebliksbillede { - get { - return this.filtreretOejebliksbilledeField; - } - set { - this.filtreretOejebliksbilledeField = value; - this.RaisePropertyChanged("FiltreretOejebliksbillede"); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class OpretOutputType : BasicOutputType { - - private string uUIDIdentifikatorField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public string UUIDIdentifikator { - get { - return this.uUIDIdentifikatorField; - } - set { - this.uUIDIdentifikatorField = value; - this.RaisePropertyChanged("UUIDIdentifikator"); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class OpretResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private OpretOutputType opretOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=0)] - public OpretOutputType OpretOutput { - get { - return this.opretOutputField; - } - set { - this.opretOutputField = value; - this.RaisePropertyChanged("OpretOutput"); - } - } - - public event System.ComponentModel.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(OpretInputType1))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class OpretInputType : object, System.ComponentModel.INotifyPropertyChanged { - - private string noteTekstField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public string NoteTekst { - get { - return this.noteTekstField; - } - set { - this.noteTekstField = value; - this.RaisePropertyChanged("NoteTekst"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(TypeName="OpretInputType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class OpretInputType1 : OpretInputType { - - private AttributListeType attributListeField; - - private TilstandListeType tilstandListeField; - - private RelationListeType relationListeField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public AttributListeType AttributListe { - get { - return this.attributListeField; - } - set { - this.attributListeField = value; - this.RaisePropertyChanged("AttributListe"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public TilstandListeType TilstandListe { - get { - return this.tilstandListeField; - } - set { - this.tilstandListeField = value; - this.RaisePropertyChanged("TilstandListe"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=2)] - public RelationListeType RelationListe { - get { - return this.relationListeField; - } - set { - this.relationListeField = value; - this.RaisePropertyChanged("RelationListe"); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/AuthorityContext/1/")] - public partial class AuthorityContextType : object, System.ComponentModel.INotifyPropertyChanged { - - private string municipalityCVRField; - - /// - public string MunicipalityCVR { - get { - return this.municipalityCVRField; - } - set { - this.municipalityCVRField = value; - this.RaisePropertyChanged("MunicipalityCVR"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/CallContext/1/")] - public partial class CallContextType : object, System.ComponentModel.INotifyPropertyChanged { - - private string onBehalfOfUserField; - - private string callersServiceCallIdentifierField; - - private string accountingInfoField; - - /// - public string OnBehalfOfUser { - get { - return this.onBehalfOfUserField; - } - set { - this.onBehalfOfUserField = value; - this.RaisePropertyChanged("OnBehalfOfUser"); - } - } - - /// - public string CallersServiceCallIdentifier { - get { - return this.callersServiceCallIdentifierField; - } - set { - this.callersServiceCallIdentifierField = value; - this.RaisePropertyChanged("CallersServiceCallIdentifier"); - } - } - - /// - public string AccountingInfo { - get { - return this.accountingInfoField; - } - set { - this.accountingInfoField = value; - this.RaisePropertyChanged("AccountingInfo"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class OpretRequestType : object, System.ComponentModel.INotifyPropertyChanged { - - private CallContextType callContextField; - - private AuthorityContextType authorityContextField; - - private OpretInputType1 opretInputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/CallContext/1/", Order=0)] - public CallContextType CallContext { - get { - return this.callContextField; - } - set { - this.callContextField = value; - this.RaisePropertyChanged("CallContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/AuthorityContext/1/", Order=1)] - public AuthorityContextType AuthorityContext { - get { - return this.authorityContextField; - } - set { - this.authorityContextField = value; - this.RaisePropertyChanged("AuthorityContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=2)] - public OpretInputType1 OpretInput { - get { - return this.opretInputField; - } - set { - this.opretInputField = value; - this.RaisePropertyChanged("OpretInput"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] - [System.ServiceModel.ServiceContractAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", ConfigurationName="ServiceReference.OrganisationEnhedPortType")] - public interface OrganisationEnhedPortType { - - // CODEGEN: Generating message contract since the operation opret is neither RPC nor document wrapped. - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/opre" + - "t", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.STS.OrganizationUnit.ServiceReference.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/opre" + - "t", Name="ServiceplatformFault", Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] - [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RegistreringType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BasicOutputType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FlerRelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OpretInputType))] - Infrastructure.STS.OrganizationUnit.ServiceReference.opretResponse opret(Infrastructure.STS.OrganizationUnit.ServiceReference.opretRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/opre" + - "t", ReplyAction="*")] - System.Threading.Tasks.Task opretAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.opretRequest request); - - // CODEGEN: Generating message contract since the operation importer is neither RPC nor document wrapped. - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/impo" + - "rter", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.STS.OrganizationUnit.ServiceReference.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/impo" + - "rter", Name="ServiceplatformFault", Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] - [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RegistreringType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BasicOutputType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FlerRelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OpretInputType))] - Infrastructure.STS.OrganizationUnit.ServiceReference.importerResponse importer(Infrastructure.STS.OrganizationUnit.ServiceReference.importerRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/impo" + - "rter", ReplyAction="*")] - System.Threading.Tasks.Task importerAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.importerRequest request); - - // CODEGEN: Generating message contract since the operation passiver is neither RPC nor document wrapped. - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/pass" + - "iver", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.STS.OrganizationUnit.ServiceReference.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/pass" + - "iver", Name="ServiceplatformFault", Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] - [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RegistreringType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BasicOutputType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FlerRelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OpretInputType))] - Infrastructure.STS.OrganizationUnit.ServiceReference.passiverResponse passiver(Infrastructure.STS.OrganizationUnit.ServiceReference.passiverRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/pass" + - "iver", ReplyAction="*")] - System.Threading.Tasks.Task passiverAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.passiverRequest request); - - // CODEGEN: Generating message contract since the operation laes is neither RPC nor document wrapped. - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/laes" + - "", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.STS.OrganizationUnit.ServiceReference.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/laes" + - "", Name="ServiceplatformFault", Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] - [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RegistreringType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BasicOutputType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FlerRelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OpretInputType))] - Infrastructure.STS.OrganizationUnit.ServiceReference.laesResponse laes(Infrastructure.STS.OrganizationUnit.ServiceReference.laesRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/laes" + - "", ReplyAction="*")] - System.Threading.Tasks.Task laesAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.laesRequest request); - - // CODEGEN: Generating message contract since the operation ret is neither RPC nor document wrapped. - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/ret", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.STS.OrganizationUnit.ServiceReference.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/ret", Name="ServiceplatformFault", Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] - [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RegistreringType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BasicOutputType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FlerRelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OpretInputType))] - Infrastructure.STS.OrganizationUnit.ServiceReference.retResponse ret(Infrastructure.STS.OrganizationUnit.ServiceReference.retRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/ret", ReplyAction="*")] - System.Threading.Tasks.Task retAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.retRequest request); - - // CODEGEN: Generating message contract since the operation slet is neither RPC nor document wrapped. - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/slet" + - "", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.STS.OrganizationUnit.ServiceReference.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/slet" + - "", Name="ServiceplatformFault", Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] - [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RegistreringType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BasicOutputType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FlerRelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OpretInputType))] - Infrastructure.STS.OrganizationUnit.ServiceReference.sletResponse slet(Infrastructure.STS.OrganizationUnit.ServiceReference.sletRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/slet" + - "", ReplyAction="*")] - System.Threading.Tasks.Task sletAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.sletRequest request); - - // CODEGEN: Generating message contract since the operation soeg is neither RPC nor document wrapped. - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/soeg" + - "", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.STS.OrganizationUnit.ServiceReference.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/soeg" + - "", Name="ServiceplatformFault", Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] - [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RegistreringType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BasicOutputType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FlerRelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OpretInputType))] - Infrastructure.STS.OrganizationUnit.ServiceReference.soegResponse soeg(Infrastructure.STS.OrganizationUnit.ServiceReference.soegRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/soeg" + - "", ReplyAction="*")] - System.Threading.Tasks.Task soegAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.soegRequest request); - - // CODEGEN: Generating message contract since the operation list is neither RPC nor document wrapped. - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/list" + - "", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.STS.OrganizationUnit.ServiceReference.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/list" + - "", Name="ServiceplatformFault", Namespace="http://serviceplatformen.dk/xml/schemas/ServiceplatformFault/1/")] - [System.ServiceModel.XmlSerializerFormatAttribute(SupportFaults=true)] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RegistreringType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(BasicOutputType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(RelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(FlerRelationType))] - [System.ServiceModel.ServiceKnownTypeAttribute(typeof(OpretInputType))] - Infrastructure.STS.OrganizationUnit.ServiceReference.listResponse list(Infrastructure.STS.OrganizationUnit.ServiceReference.listRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/list" + - "", ReplyAction="*")] - System.Threading.Tasks.Task listAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.listRequest request); - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public partial class RequestHeaderType : object, System.ComponentModel.INotifyPropertyChanged { - - private string transactionUUIDField; - - /// - public string TransactionUUID { - get { - return this.transactionUUIDField; - } - set { - this.transactionUUIDField = value; - this.RaisePropertyChanged("TransactionUUID"); - } - } - - public event System.ComponentModel.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 opretRequest { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="OpretRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.OpretRequestType OpretRequest1; - - public opretRequest() { - } - - public opretRequest(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.OpretRequestType OpretRequest1) { - this.RequestHeader = RequestHeader; - this.OpretRequest1 = OpretRequest1; - } - } - - [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 opretResponse { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="OpretResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.OpretResponseType OpretResponse1; - - public opretResponse() { - } - - public opretResponse(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.OpretResponseType OpretResponse1) { - this.RequestHeader = RequestHeader; - this.OpretResponse1 = OpretResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class ImporterRequestType : object, System.ComponentModel.INotifyPropertyChanged { - - private CallContextType callContextField; - - private AuthorityContextType authorityContextField; - - private ImportInputType importInputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/CallContext/1/", Order=0)] - public CallContextType CallContext { - get { - return this.callContextField; - } - set { - this.callContextField = value; - this.RaisePropertyChanged("CallContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/AuthorityContext/1/", Order=1)] - public AuthorityContextType AuthorityContext { - get { - return this.authorityContextField; - } - set { - this.authorityContextField = value; - this.RaisePropertyChanged("AuthorityContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=2)] - public ImportInputType ImportInput { - get { - return this.importInputField; - } - set { - this.importInputField = value; - this.RaisePropertyChanged("ImportInput"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class ImportInputType : object, System.ComponentModel.INotifyPropertyChanged { - - private OrganisationEnhedType organisationEnhedField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public OrganisationEnhedType OrganisationEnhed { - get { - return this.organisationEnhedField; - } - set { - this.organisationEnhedField = value; - this.RaisePropertyChanged("OrganisationEnhed"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class ImporterResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private BasicOutputType importOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=0)] - public BasicOutputType ImportOutput { - get { - return this.importOutputField; - } - set { - this.importOutputField = value; - this.RaisePropertyChanged("ImportOutput"); - } - } - - public event System.ComponentModel.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 importerRequest { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="ImporterRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.ImporterRequestType ImporterRequest1; - - public importerRequest() { - } - - public importerRequest(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.ImporterRequestType ImporterRequest1) { - this.RequestHeader = RequestHeader; - this.ImporterRequest1 = ImporterRequest1; - } - } - - [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 importerResponse { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="ImporterResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.ImporterResponseType ImporterResponse1; - - public importerResponse() { - } - - public importerResponse(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.ImporterResponseType ImporterResponse1) { - this.RequestHeader = RequestHeader; - this.ImporterResponse1 = ImporterResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class PassiverRequestType : object, System.ComponentModel.INotifyPropertyChanged { - - private CallContextType callContextField; - - private AuthorityContextType authorityContextField; - - private UuidNoteInputType passiverInputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/CallContext/1/", Order=0)] - public CallContextType CallContext { - get { - return this.callContextField; - } - set { - this.callContextField = value; - this.RaisePropertyChanged("CallContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/AuthorityContext/1/", Order=1)] - public AuthorityContextType AuthorityContext { - get { - return this.authorityContextField; - } - set { - this.authorityContextField = value; - this.RaisePropertyChanged("AuthorityContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=2)] - public UuidNoteInputType PassiverInput { - get { - return this.passiverInputField; - } - set { - this.passiverInputField = value; - this.RaisePropertyChanged("PassiverInput"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class UuidNoteInputType : object, System.ComponentModel.INotifyPropertyChanged { - - private string uUIDIdentifikatorField; - - private string noteTekstField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public string UUIDIdentifikator { - get { - return this.uUIDIdentifikatorField; - } - set { - this.uUIDIdentifikatorField = value; - this.RaisePropertyChanged("UUIDIdentifikator"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public string NoteTekst { - get { - return this.noteTekstField; - } - set { - this.noteTekstField = value; - this.RaisePropertyChanged("NoteTekst"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class PassiverResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private BasicOutputType passiverOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=0)] - public BasicOutputType PassiverOutput { - get { - return this.passiverOutputField; - } - set { - this.passiverOutputField = value; - this.RaisePropertyChanged("PassiverOutput"); - } - } - - public event System.ComponentModel.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 passiverRequest { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="PassiverRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.PassiverRequestType PassiverRequest1; - - public passiverRequest() { - } - - public passiverRequest(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.PassiverRequestType PassiverRequest1) { - this.RequestHeader = RequestHeader; - this.PassiverRequest1 = PassiverRequest1; - } - } - - [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 passiverResponse { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="PassiverResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.PassiverResponseType PassiverResponse1; - - public passiverResponse() { - } - - public passiverResponse(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.PassiverResponseType PassiverResponse1) { - this.RequestHeader = RequestHeader; - this.PassiverResponse1 = PassiverResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class LaesRequestType : object, System.ComponentModel.INotifyPropertyChanged { - - private CallContextType callContextField; - - private AuthorityContextType authorityContextField; - - private LaesInputType laesInputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/CallContext/1/", Order=0)] - public CallContextType CallContext { - get { - return this.callContextField; - } - set { - this.callContextField = value; - this.RaisePropertyChanged("CallContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/AuthorityContext/1/", Order=1)] - public AuthorityContextType AuthorityContext { - get { - return this.authorityContextField; - } - set { - this.authorityContextField = value; - this.RaisePropertyChanged("AuthorityContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=2)] - public LaesInputType LaesInput { - get { - return this.laesInputField; - } - set { - this.laesInputField = value; - this.RaisePropertyChanged("LaesInput"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class LaesInputType : object, System.ComponentModel.INotifyPropertyChanged { - - private string uUIDIdentifikatorField; - - private TidspunktType virkningFraFilterField; - - private TidspunktType virkningTilFilterField; - - private TidspunktType registreringFraFilterField; - - private TidspunktType registreringTilFilterField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public string UUIDIdentifikator { - get { - return this.uUIDIdentifikatorField; - } - set { - this.uUIDIdentifikatorField = value; - this.RaisePropertyChanged("UUIDIdentifikator"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public TidspunktType VirkningFraFilter { - get { - return this.virkningFraFilterField; - } - set { - this.virkningFraFilterField = value; - this.RaisePropertyChanged("VirkningFraFilter"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=2)] - public TidspunktType VirkningTilFilter { - get { - return this.virkningTilFilterField; - } - set { - this.virkningTilFilterField = value; - this.RaisePropertyChanged("VirkningTilFilter"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=3)] - public TidspunktType RegistreringFraFilter { - get { - return this.registreringFraFilterField; - } - set { - this.registreringFraFilterField = value; - this.RaisePropertyChanged("RegistreringFraFilter"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=4)] - public TidspunktType RegistreringTilFilter { - get { - return this.registreringTilFilterField; - } - set { - this.registreringTilFilterField = value; - this.RaisePropertyChanged("RegistreringTilFilter"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class LaesResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private LaesOutputType laesOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=0)] - public LaesOutputType LaesOutput { - get { - return this.laesOutputField; - } - set { - this.laesOutputField = value; - this.RaisePropertyChanged("LaesOutput"); - } - } - - public event System.ComponentModel.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 laesRequest { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="LaesRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.LaesRequestType LaesRequest1; - - public laesRequest() { - } - - public laesRequest(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.LaesRequestType LaesRequest1) { - this.RequestHeader = RequestHeader; - this.LaesRequest1 = LaesRequest1; - } - } - - [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 laesResponse { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="LaesResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.LaesResponseType LaesResponse1; - - public laesResponse() { - } - - public laesResponse(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.LaesResponseType LaesResponse1) { - this.RequestHeader = RequestHeader; - this.LaesResponse1 = LaesResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class RetRequestType : object, System.ComponentModel.INotifyPropertyChanged { - - private CallContextType callContextField; - - private AuthorityContextType authorityContextField; - - private RetInputType1 retInputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/CallContext/1/", Order=0)] - public CallContextType CallContext { - get { - return this.callContextField; - } - set { - this.callContextField = value; - this.RaisePropertyChanged("CallContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/AuthorityContext/1/", Order=1)] - public AuthorityContextType AuthorityContext { - get { - return this.authorityContextField; - } - set { - this.authorityContextField = value; - this.RaisePropertyChanged("AuthorityContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=2)] - public RetInputType1 RetInput { - get { - return this.retInputField; - } - set { - this.retInputField = value; - this.RaisePropertyChanged("RetInput"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(TypeName="RetInputType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class RetInputType1 : RetInputType { - - private AttributListeType attributListeField; - - private TilstandListeType tilstandListeField; - - private RelationListeType relationListeField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public AttributListeType AttributListe { - get { - return this.attributListeField; - } - set { - this.attributListeField = value; - this.RaisePropertyChanged("AttributListe"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public TilstandListeType TilstandListe { - get { - return this.tilstandListeField; - } - set { - this.tilstandListeField = value; - this.RaisePropertyChanged("TilstandListe"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=2)] - public RelationListeType RelationListe { - get { - return this.relationListeField; - } - set { - this.relationListeField = value; - this.RaisePropertyChanged("RelationListe"); - } - } - } - - /// - [System.Xml.Serialization.XmlIncludeAttribute(typeof(RetInputType1))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class RetInputType : object, System.ComponentModel.INotifyPropertyChanged { - - private string uUIDIdentifikatorField; - - private string noteTekstField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public string UUIDIdentifikator { - get { - return this.uUIDIdentifikatorField; - } - set { - this.uUIDIdentifikatorField = value; - this.RaisePropertyChanged("UUIDIdentifikator"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public string NoteTekst { - get { - return this.noteTekstField; - } - set { - this.noteTekstField = value; - this.RaisePropertyChanged("NoteTekst"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class RetResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private BasicOutputType retOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=0)] - public BasicOutputType RetOutput { - get { - return this.retOutputField; - } - set { - this.retOutputField = value; - this.RaisePropertyChanged("RetOutput"); - } - } - - public event System.ComponentModel.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 retRequest { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="RetRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RetRequestType RetRequest1; - - public retRequest() { - } - - public retRequest(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.RetRequestType RetRequest1) { - this.RequestHeader = RequestHeader; - this.RetRequest1 = RetRequest1; - } - } - - [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 retResponse { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="RetResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RetResponseType RetResponse1; - - public retResponse() { - } - - public retResponse(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.RetResponseType RetResponse1) { - this.RequestHeader = RequestHeader; - this.RetResponse1 = RetResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class SletRequestType : object, System.ComponentModel.INotifyPropertyChanged { - - private CallContextType callContextField; - - private AuthorityContextType authorityContextField; - - private UuidNoteInputType sletInputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/CallContext/1/", Order=0)] - public CallContextType CallContext { - get { - return this.callContextField; - } - set { - this.callContextField = value; - this.RaisePropertyChanged("CallContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/AuthorityContext/1/", Order=1)] - public AuthorityContextType AuthorityContext { - get { - return this.authorityContextField; - } - set { - this.authorityContextField = value; - this.RaisePropertyChanged("AuthorityContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=2)] - public UuidNoteInputType SletInput { - get { - return this.sletInputField; - } - set { - this.sletInputField = value; - this.RaisePropertyChanged("SletInput"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class SletResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private BasicOutputType sletOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=0)] - public BasicOutputType SletOutput { - get { - return this.sletOutputField; - } - set { - this.sletOutputField = value; - this.RaisePropertyChanged("SletOutput"); - } - } - - public event System.ComponentModel.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 sletRequest { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="SletRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.SletRequestType SletRequest1; - - public sletRequest() { - } - - public sletRequest(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.SletRequestType SletRequest1) { - this.RequestHeader = RequestHeader; - this.SletRequest1 = SletRequest1; - } - } - - [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 sletResponse { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="SletResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.SletResponseType SletResponse1; - - public sletResponse() { - } - - public sletResponse(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.SletResponseType SletResponse1) { - this.RequestHeader = RequestHeader; - this.SletResponse1 = SletResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class SoegRequestType : object, System.ComponentModel.INotifyPropertyChanged { - - private CallContextType callContextField; - - private AuthorityContextType authorityContextField; - - private SoegInputType1 soegInputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/CallContext/1/", Order=0)] - public CallContextType CallContext { - get { - return this.callContextField; - } - set { - this.callContextField = value; - this.RaisePropertyChanged("CallContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/AuthorityContext/1/", Order=1)] - public AuthorityContextType AuthorityContext { - get { - return this.authorityContextField; - } - set { - this.authorityContextField = value; - this.RaisePropertyChanged("AuthorityContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=2)] - public SoegInputType1 SoegInput { - get { - return this.soegInputField; - } - set { - this.soegInputField = value; - this.RaisePropertyChanged("SoegInput"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(TypeName="SoegInputType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class SoegInputType1 : SoegInputType { - - private AttributListeType attributListeField; - - private TilstandListeType tilstandListeField; - - private RelationListeType relationListeField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public AttributListeType AttributListe { - get { - return this.attributListeField; - } - set { - this.attributListeField = value; - this.RaisePropertyChanged("AttributListe"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public TilstandListeType TilstandListe { - get { - return this.tilstandListeField; - } - set { - this.tilstandListeField = value; - this.RaisePropertyChanged("TilstandListe"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=2)] - public RelationListeType RelationListe { - get { - return this.relationListeField; - } - set { - this.relationListeField = value; - this.RaisePropertyChanged("RelationListe"); - } - } - } - - /// - [System.Xml.Serialization.XmlIncludeAttribute(typeof(SoegInputType1))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class SoegInputType : object, System.ComponentModel.INotifyPropertyChanged { - - private string foersteResultatReferenceField; - - private string maksimalAntalKvantitetField; - - private SoegRegistreringType soegRegistreringField; - - private SoegVirkningType soegVirkningField; - - /// - [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)] - public string FoersteResultatReference { - get { - return this.foersteResultatReferenceField; - } - set { - this.foersteResultatReferenceField = value; - this.RaisePropertyChanged("FoersteResultatReference"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=1)] - public string MaksimalAntalKvantitet { - get { - return this.maksimalAntalKvantitetField; - } - set { - this.maksimalAntalKvantitetField = value; - this.RaisePropertyChanged("MaksimalAntalKvantitet"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=2)] - public SoegRegistreringType SoegRegistrering { - get { - return this.soegRegistreringField; - } - set { - this.soegRegistreringField = value; - this.RaisePropertyChanged("SoegRegistrering"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=3)] - public SoegVirkningType SoegVirkning { - get { - return this.soegVirkningField; - } - set { - this.soegVirkningField = value; - this.RaisePropertyChanged("SoegVirkning"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class SoegRegistreringType : object, System.ComponentModel.INotifyPropertyChanged { - - private TidspunktType fraTidspunktField; - - private TidspunktType tilTidspunktField; - - private LivscyklusKodeType livscyklusKodeField; - - private bool livscyklusKodeFieldSpecified; - - private UnikIdType brugerRefField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public TidspunktType FraTidspunkt { - get { - return this.fraTidspunktField; - } - set { - this.fraTidspunktField = value; - this.RaisePropertyChanged("FraTidspunkt"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public TidspunktType TilTidspunkt { - get { - return this.tilTidspunktField; - } - set { - this.tilTidspunktField = value; - this.RaisePropertyChanged("TilTidspunkt"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=2)] - public LivscyklusKodeType LivscyklusKode { - get { - return this.livscyklusKodeField; - } - set { - this.livscyklusKodeField = value; - this.RaisePropertyChanged("LivscyklusKode"); - } - } - - /// - [System.Xml.Serialization.XmlIgnoreAttribute()] - public bool LivscyklusKodeSpecified { - get { - return this.livscyklusKodeFieldSpecified; - } - set { - this.livscyklusKodeFieldSpecified = value; - this.RaisePropertyChanged("LivscyklusKodeSpecified"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=3)] - public UnikIdType BrugerRef { - get { - return this.brugerRefField; - } - set { - this.brugerRefField = value; - this.RaisePropertyChanged("BrugerRef"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class SoegVirkningType : object, System.ComponentModel.INotifyPropertyChanged { - - private TidspunktType fraTidspunktField; - - private TidspunktType tilTidspunktField; - - private UnikIdType aktoerRefField; - - private AktoerTypeKodeType aktoerTypeKodeField; - - private bool aktoerTypeKodeFieldSpecified; - - private string noteTekstField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public TidspunktType FraTidspunkt { - get { - return this.fraTidspunktField; - } - set { - this.fraTidspunktField = value; - this.RaisePropertyChanged("FraTidspunkt"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public TidspunktType TilTidspunkt { - get { - return this.tilTidspunktField; - } - set { - this.tilTidspunktField = value; - this.RaisePropertyChanged("TilTidspunkt"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=2)] - public UnikIdType AktoerRef { - get { - return this.aktoerRefField; - } - set { - this.aktoerRefField = value; - this.RaisePropertyChanged("AktoerRef"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=3)] - public AktoerTypeKodeType AktoerTypeKode { - get { - return this.aktoerTypeKodeField; - } - set { - this.aktoerTypeKodeField = value; - this.RaisePropertyChanged("AktoerTypeKode"); - } - } - - /// - [System.Xml.Serialization.XmlIgnoreAttribute()] - public bool AktoerTypeKodeSpecified { - get { - return this.aktoerTypeKodeFieldSpecified; - } - set { - this.aktoerTypeKodeFieldSpecified = value; - this.RaisePropertyChanged("AktoerTypeKodeSpecified"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=4)] - public string NoteTekst { - get { - return this.noteTekstField; - } - set { - this.noteTekstField = value; - this.RaisePropertyChanged("NoteTekst"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class SoegResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private SoegOutputType soegOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=0)] - public SoegOutputType SoegOutput { - get { - return this.soegOutputField; - } - set { - this.soegOutputField = value; - this.RaisePropertyChanged("SoegOutput"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class SoegOutputType : object, System.ComponentModel.INotifyPropertyChanged { - - private StandardReturType standardReturField; - - private string[] idListeField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public StandardReturType StandardRetur { - get { - return this.standardReturField; - } - set { - this.standardReturField = value; - this.RaisePropertyChanged("StandardRetur"); - } - } - - /// - [System.Xml.Serialization.XmlArrayAttribute(Order=1)] - [System.Xml.Serialization.XmlArrayItemAttribute("UUIDIdentifikator", IsNullable=false)] - public string[] IdListe { - get { - return this.idListeField; - } - set { - this.idListeField = value; - this.RaisePropertyChanged("IdListe"); - } - } - - public event System.ComponentModel.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 soegRequest { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="SoegRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.SoegRequestType SoegRequest1; - - public soegRequest() { - } - - public soegRequest(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.SoegRequestType SoegRequest1) { - this.RequestHeader = RequestHeader; - this.SoegRequest1 = SoegRequest1; - } - } - - [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 soegResponse { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="SoegResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.SoegResponseType SoegResponse1; - - public soegResponse() { - } - - public soegResponse(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.SoegResponseType SoegResponse1) { - this.RequestHeader = RequestHeader; - this.SoegResponse1 = SoegResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class ListRequestType : object, System.ComponentModel.INotifyPropertyChanged { - - private CallContextType callContextField; - - private AuthorityContextType authorityContextField; - - private ListInputType listInputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/CallContext/1/", Order=0)] - public CallContextType CallContext { - get { - return this.callContextField; - } - set { - this.callContextField = value; - this.RaisePropertyChanged("CallContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="http://serviceplatformen.dk/xml/schemas/AuthorityContext/1/", Order=1)] - public AuthorityContextType AuthorityContext { - get { - return this.authorityContextField; - } - set { - this.authorityContextField = value; - this.RaisePropertyChanged("AuthorityContext"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=2)] - public ListInputType ListInput { - get { - return this.listInputField; - } - set { - this.listInputField = value; - this.RaisePropertyChanged("ListInput"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class ListInputType : object, System.ComponentModel.INotifyPropertyChanged { - - private string[] uUIDIdentifikatorField; - - private TidspunktType virkningFraFilterField; - - private TidspunktType virkningTilFilterField; - - private TidspunktType registreringFraFilterField; - - private TidspunktType registreringTilFilterField; - - /// - [System.Xml.Serialization.XmlElementAttribute("UUIDIdentifikator", Order=0)] - public string[] UUIDIdentifikator { - get { - return this.uUIDIdentifikatorField; - } - set { - this.uUIDIdentifikatorField = value; - this.RaisePropertyChanged("UUIDIdentifikator"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=1)] - public TidspunktType VirkningFraFilter { - get { - return this.virkningFraFilterField; - } - set { - this.virkningFraFilterField = value; - this.RaisePropertyChanged("VirkningFraFilter"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=2)] - public TidspunktType VirkningTilFilter { - get { - return this.virkningTilFilterField; - } - set { - this.virkningTilFilterField = value; - this.RaisePropertyChanged("VirkningTilFilter"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=3)] - public TidspunktType RegistreringFraFilter { - get { - return this.registreringFraFilterField; - } - set { - this.registreringFraFilterField = value; - this.RaisePropertyChanged("RegistreringFraFilter"); - } - } - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=4)] - public TidspunktType RegistreringTilFilter { - get { - return this.registreringTilFilterField; - } - set { - this.registreringTilFilterField = value; - this.RaisePropertyChanged("RegistreringTilFilter"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/")] - public partial class ListResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private ListOutputType1 listOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0", Order=0)] - public ListOutputType1 ListOutput { - get { - return this.listOutputField; - } - set { - this.listOutputField = value; - this.RaisePropertyChanged("ListOutput"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(TypeName="ListOutputType", Namespace="urn:oio:sts:organisation:organisationenhed:1.1.3.0")] - public partial class ListOutputType1 : ListOutputType { - - private FiltreretOejebliksbilledeType[] filtreretOejebliksbilledeField; - - /// - [System.Xml.Serialization.XmlElementAttribute("FiltreretOejebliksbillede", Order=0)] - public FiltreretOejebliksbilledeType[] FiltreretOejebliksbillede { - get { - return this.filtreretOejebliksbilledeField; - } - set { - this.filtreretOejebliksbilledeField = value; - this.RaisePropertyChanged("FiltreretOejebliksbillede"); - } - } - } - - /// - [System.Xml.Serialization.XmlIncludeAttribute(typeof(ListOutputType1))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.4084.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="urn:oio:sagdok:3.0.0")] - public partial class ListOutputType : object, System.ComponentModel.INotifyPropertyChanged { - - private StandardReturType standardReturField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public StandardReturType StandardRetur { - get { - return this.standardReturField; - } - set { - this.standardReturField = value; - this.RaisePropertyChanged("StandardRetur"); - } - } - - public event System.ComponentModel.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 listRequest { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="ListRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.ListRequestType ListRequest1; - - public listRequest() { - } - - public listRequest(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.ListRequestType ListRequest1) { - this.RequestHeader = RequestHeader; - this.ListRequest1 = ListRequest1; - } - } - - [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 listResponse { - - [System.ServiceModel.MessageHeaderAttribute(Namespace="http://kombit.dk/xml/schemas/RequestHeader/1/")] - public Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="ListResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/OrganisationEnhed/5/", Order=0)] - public Infrastructure.STS.OrganizationUnit.ServiceReference.ListResponseType ListResponse1; - - public listResponse() { - } - - public listResponse(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.ListResponseType ListResponse1) { - this.RequestHeader = RequestHeader; - this.ListResponse1 = ListResponse1; - } - } - - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] - public interface OrganisationEnhedPortTypeChannel : Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType, System.ServiceModel.IClientChannel { - } - - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] - public partial class OrganisationEnhedPortTypeClient : System.ServiceModel.ClientBase, Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType { - - public OrganisationEnhedPortTypeClient() { - } - - public OrganisationEnhedPortTypeClient(string endpointConfigurationName) : - base(endpointConfigurationName) { - } - - public OrganisationEnhedPortTypeClient(string endpointConfigurationName, string remoteAddress) : - base(endpointConfigurationName, remoteAddress) { - } - - public OrganisationEnhedPortTypeClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : - base(endpointConfigurationName, remoteAddress) { - } - - public OrganisationEnhedPortTypeClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : - base(binding, remoteAddress) { - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.STS.OrganizationUnit.ServiceReference.opretResponse Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.opret(Infrastructure.STS.OrganizationUnit.ServiceReference.opretRequest request) { - return base.Channel.opret(request); - } - - public Infrastructure.STS.OrganizationUnit.ServiceReference.OpretResponseType opret(ref Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.OpretRequestType OpretRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.opretRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.opretRequest(); - inValue.RequestHeader = RequestHeader; - inValue.OpretRequest1 = OpretRequest1; - Infrastructure.STS.OrganizationUnit.ServiceReference.opretResponse retVal = ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).opret(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.OpretResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.opretAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.opretRequest request) { - return base.Channel.opretAsync(request); - } - - public System.Threading.Tasks.Task opretAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.OpretRequestType OpretRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.opretRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.opretRequest(); - inValue.RequestHeader = RequestHeader; - inValue.OpretRequest1 = OpretRequest1; - return ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).opretAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.STS.OrganizationUnit.ServiceReference.importerResponse Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.importer(Infrastructure.STS.OrganizationUnit.ServiceReference.importerRequest request) { - return base.Channel.importer(request); - } - - public Infrastructure.STS.OrganizationUnit.ServiceReference.ImporterResponseType importer(ref Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.ImporterRequestType ImporterRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.importerRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.importerRequest(); - inValue.RequestHeader = RequestHeader; - inValue.ImporterRequest1 = ImporterRequest1; - Infrastructure.STS.OrganizationUnit.ServiceReference.importerResponse retVal = ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).importer(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.ImporterResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.importerAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.importerRequest request) { - return base.Channel.importerAsync(request); - } - - public System.Threading.Tasks.Task importerAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.ImporterRequestType ImporterRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.importerRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.importerRequest(); - inValue.RequestHeader = RequestHeader; - inValue.ImporterRequest1 = ImporterRequest1; - return ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).importerAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.STS.OrganizationUnit.ServiceReference.passiverResponse Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.passiver(Infrastructure.STS.OrganizationUnit.ServiceReference.passiverRequest request) { - return base.Channel.passiver(request); - } - - public Infrastructure.STS.OrganizationUnit.ServiceReference.PassiverResponseType passiver(ref Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.PassiverRequestType PassiverRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.passiverRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.passiverRequest(); - inValue.RequestHeader = RequestHeader; - inValue.PassiverRequest1 = PassiverRequest1; - Infrastructure.STS.OrganizationUnit.ServiceReference.passiverResponse retVal = ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).passiver(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.PassiverResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.passiverAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.passiverRequest request) { - return base.Channel.passiverAsync(request); - } - - public System.Threading.Tasks.Task passiverAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.PassiverRequestType PassiverRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.passiverRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.passiverRequest(); - inValue.RequestHeader = RequestHeader; - inValue.PassiverRequest1 = PassiverRequest1; - return ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).passiverAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.STS.OrganizationUnit.ServiceReference.laesResponse Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.laes(Infrastructure.STS.OrganizationUnit.ServiceReference.laesRequest request) { - return base.Channel.laes(request); - } - - public Infrastructure.STS.OrganizationUnit.ServiceReference.LaesResponseType laes(ref Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.LaesRequestType LaesRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.laesRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.laesRequest(); - inValue.RequestHeader = RequestHeader; - inValue.LaesRequest1 = LaesRequest1; - Infrastructure.STS.OrganizationUnit.ServiceReference.laesResponse retVal = ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).laes(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.LaesResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.laesAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.laesRequest request) { - return base.Channel.laesAsync(request); - } - - public System.Threading.Tasks.Task laesAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.LaesRequestType LaesRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.laesRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.laesRequest(); - inValue.RequestHeader = RequestHeader; - inValue.LaesRequest1 = LaesRequest1; - return ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).laesAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.STS.OrganizationUnit.ServiceReference.retResponse Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.ret(Infrastructure.STS.OrganizationUnit.ServiceReference.retRequest request) { - return base.Channel.ret(request); - } - - public Infrastructure.STS.OrganizationUnit.ServiceReference.RetResponseType ret(ref Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.RetRequestType RetRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.retRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.retRequest(); - inValue.RequestHeader = RequestHeader; - inValue.RetRequest1 = RetRequest1; - Infrastructure.STS.OrganizationUnit.ServiceReference.retResponse retVal = ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).ret(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.RetResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.retAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.retRequest request) { - return base.Channel.retAsync(request); - } - - public System.Threading.Tasks.Task retAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.RetRequestType RetRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.retRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.retRequest(); - inValue.RequestHeader = RequestHeader; - inValue.RetRequest1 = RetRequest1; - return ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).retAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.STS.OrganizationUnit.ServiceReference.sletResponse Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.slet(Infrastructure.STS.OrganizationUnit.ServiceReference.sletRequest request) { - return base.Channel.slet(request); - } - - public Infrastructure.STS.OrganizationUnit.ServiceReference.SletResponseType slet(ref Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.SletRequestType SletRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.sletRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.sletRequest(); - inValue.RequestHeader = RequestHeader; - inValue.SletRequest1 = SletRequest1; - Infrastructure.STS.OrganizationUnit.ServiceReference.sletResponse retVal = ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).slet(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.SletResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.sletAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.sletRequest request) { - return base.Channel.sletAsync(request); - } - - public System.Threading.Tasks.Task sletAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.SletRequestType SletRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.sletRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.sletRequest(); - inValue.RequestHeader = RequestHeader; - inValue.SletRequest1 = SletRequest1; - return ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).sletAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.STS.OrganizationUnit.ServiceReference.soegResponse Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.soeg(Infrastructure.STS.OrganizationUnit.ServiceReference.soegRequest request) { - return base.Channel.soeg(request); - } - - public Infrastructure.STS.OrganizationUnit.ServiceReference.SoegResponseType soeg(ref Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.SoegRequestType SoegRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.soegRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.soegRequest(); - inValue.RequestHeader = RequestHeader; - inValue.SoegRequest1 = SoegRequest1; - Infrastructure.STS.OrganizationUnit.ServiceReference.soegResponse retVal = ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).soeg(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.SoegResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.soegAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.soegRequest request) { - return base.Channel.soegAsync(request); - } - - public System.Threading.Tasks.Task soegAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.SoegRequestType SoegRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.soegRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.soegRequest(); - inValue.RequestHeader = RequestHeader; - inValue.SoegRequest1 = SoegRequest1; - return ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).soegAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.STS.OrganizationUnit.ServiceReference.listResponse Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.list(Infrastructure.STS.OrganizationUnit.ServiceReference.listRequest request) { - return base.Channel.list(request); - } - - public Infrastructure.STS.OrganizationUnit.ServiceReference.ListResponseType list(ref Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.ListRequestType ListRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.listRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.listRequest(); - inValue.RequestHeader = RequestHeader; - inValue.ListRequest1 = ListRequest1; - Infrastructure.STS.OrganizationUnit.ServiceReference.listResponse retVal = ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).list(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.ListResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType.listAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.listRequest request) { - return base.Channel.listAsync(request); - } - - public System.Threading.Tasks.Task listAsync(Infrastructure.STS.OrganizationUnit.ServiceReference.RequestHeaderType RequestHeader, Infrastructure.STS.OrganizationUnit.ServiceReference.ListRequestType ListRequest1) { - Infrastructure.STS.OrganizationUnit.ServiceReference.listRequest inValue = new Infrastructure.STS.OrganizationUnit.ServiceReference.listRequest(); - inValue.RequestHeader = RequestHeader; - inValue.ListRequest1 = ListRequest1; - return ((Infrastructure.STS.OrganizationUnit.ServiceReference.OrganisationEnhedPortType)(this)).listAsync(inValue); - } - } -} diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Reference.svcmap b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Reference.svcmap deleted file mode 100644 index b1681cf0a3..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/Reference.svcmap +++ /dev/null @@ -1,43 +0,0 @@ - - - - false - true - true - - false - false - false - - - true - Auto - true - true - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/configuration.svcinfo b/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/configuration.svcinfo deleted file mode 100644 index b20b0d4b49..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Connected Services/ServiceReference/configuration.svcinfo +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Infrastructure.STS.OrganizationUnit.csproj b/Infrastructure.STS.OrganizationUnit/Infrastructure.STS.OrganizationUnit.csproj deleted file mode 100644 index c7b219b934..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Infrastructure.STS.OrganizationUnit.csproj +++ /dev/null @@ -1,187 +0,0 @@ - - - - - Debug - AnyCPU - {77C5BEDB-CC7F-4D6F-BF34-EC72B57C03C8} - Library - Properties - Infrastructure.STS.OrganizationUnit - Infrastructure.STS.OrganizationUnit - v4.8 - 512 - true - latest - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - ..\packages\Polly.7.2.3\lib\net472\Polly.dll - - - ..\packages\Serilog.2.11.0\lib\net46\Serilog.dll - - - - - - - - - - - - - - - True - True - Reference.svcmap - - - - - - - - - - - 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 - - - Designer - - - Designer - - - - Designer - - - Designer - - - Designer - - - - Designer - - - Designer - - - - Designer - - - - - - - - - - - - - - - - WCF Proxy Generator - Reference.cs - - - - - {BD8C90E7-52C7-4AD0-935D-98A2AA89E449} - Core.Abstractions - - - {A76A8E41-74F7-4443-A5F3-059B5414D83B} - Core.DomainModel - - - {ADCACC1D-F538-464C-9102-F4C1D6FA35D3} - Core.DomainServices - - - {423D7522-4882-4438-94F4-7B3F5778C83F} - Infrastructure.STS.Common - - - - \ No newline at end of file diff --git a/Infrastructure.STS.OrganizationUnit/Readme.md b/Infrastructure.STS.OrganizationUnit/Readme.md deleted file mode 100644 index 4b7381bafe..0000000000 --- a/Infrastructure.STS.OrganizationUnit/Readme.md +++ /dev/null @@ -1,3 +0,0 @@ -"ServiceContract" is generated based on service contract downloaded from this: https://www.serviceplatformen.dk/administration/serviceOverview/show?uuid=38edf5ee-2702-4205-ba6f-ac94f576b606 - -Web service proxy is generated based on `ServiceContract\wsdl\context\OrganisationEnhedService.wsdl` \ No newline at end of file diff --git a/KITOS.sln b/KITOS.sln index aef0622d09..698d4cf467 100644 --- a/KITOS.sln +++ b/KITOS.sln @@ -124,7 +124,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastructure.STS.Company" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Organization", "Organization", "{EF9D5FB5-3C0D-45C0-88D4-6619D2905EFB}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastructure.STS.OrganizationUnit", "Infrastructure.STS.OrganizationUnit\Infrastructure.STS.OrganizationUnit.csproj", "{77C5BEDB-CC7F-4D6F-BF34-EC72B57C03C8}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Infrastructure.STS.OrganizationSystem", "Infrastructure.STS.OrganizationSystem\Infrastructure.STS.OrganizationSystem.csproj", "{A125252B-4EFF-4123-9895-54AD85AAAEAF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -216,10 +216,10 @@ Global {09A799FA-3781-419B-AB54-3C76219FD2DE}.Debug|Any CPU.Build.0 = Debug|Any CPU {09A799FA-3781-419B-AB54-3C76219FD2DE}.Release|Any CPU.ActiveCfg = Release|Any CPU {09A799FA-3781-419B-AB54-3C76219FD2DE}.Release|Any CPU.Build.0 = Release|Any CPU - {77C5BEDB-CC7F-4D6F-BF34-EC72B57C03C8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {77C5BEDB-CC7F-4D6F-BF34-EC72B57C03C8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {77C5BEDB-CC7F-4D6F-BF34-EC72B57C03C8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {77C5BEDB-CC7F-4D6F-BF34-EC72B57C03C8}.Release|Any CPU.Build.0 = Release|Any CPU + {A125252B-4EFF-4123-9895-54AD85AAAEAF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A125252B-4EFF-4123-9895-54AD85AAAEAF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A125252B-4EFF-4123-9895-54AD85AAAEAF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A125252B-4EFF-4123-9895-54AD85AAAEAF}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -253,7 +253,7 @@ Global {3F0ABEAA-2F6E-4385-8BB1-71695E633E0A} = {500B4C1D-B871-49A0-94E7-BD0623101EF6} {09A799FA-3781-419B-AB54-3C76219FD2DE} = {EF9D5FB5-3C0D-45C0-88D4-6619D2905EFB} {EF9D5FB5-3C0D-45C0-88D4-6619D2905EFB} = {3F0ABEAA-2F6E-4385-8BB1-71695E633E0A} - {77C5BEDB-CC7F-4D6F-BF34-EC72B57C03C8} = {EF9D5FB5-3C0D-45C0-88D4-6619D2905EFB} + {A125252B-4EFF-4123-9895-54AD85AAAEAF} = {EF9D5FB5-3C0D-45C0-88D4-6619D2905EFB} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {4890FA32-C82F-4C98-AC7A-2F4EE7F21687} diff --git a/Presentation.Web/LoginHandler.ashx b/Presentation.Web/LoginHandler.ashx new file mode 100644 index 0000000000..81eb1c527d --- /dev/null +++ b/Presentation.Web/LoginHandler.ashx @@ -0,0 +1 @@ +<%@ WebHandler Language="C#" CodeBehind="LoginHandler.ashx.cs" Class="Presentation.Web.LoginHandler" %> diff --git a/Presentation.Web/LoginHandler.ashx.cs b/Presentation.Web/LoginHandler.ashx.cs new file mode 100644 index 0000000000..2f1b241719 --- /dev/null +++ b/Presentation.Web/LoginHandler.ashx.cs @@ -0,0 +1,17 @@ +using System.Web; + +namespace Presentation.Web +{ + /// + /// LoginHandler redirects to the Login.ashx page with the forceAuthn parameter set to true. + /// + public class LoginHandler : IHttpHandler + { + public void ProcessRequest(HttpContext context) + { + context.Response.Redirect("Login.ashx?forceAuthn=true"); + } + + public bool IsReusable => false; + } +} \ No newline at end of file diff --git a/Presentation.Web/Ninject/KernelBuilder.cs b/Presentation.Web/Ninject/KernelBuilder.cs index 0aaa0a51c1..6736e3bbca 100644 --- a/Presentation.Web/Ninject/KernelBuilder.cs +++ b/Presentation.Web/Ninject/KernelBuilder.cs @@ -113,7 +113,6 @@ using Core.DomainServices.Tracking; using Infrastructure.STS.Company.DomainServices; using Infrastructure.STS.Organization.DomainServices; -using Infrastructure.STS.OrganizationUnit.DomainServices; using Presentation.Web.Controllers.API.V2.External.ItSystems.Mapping; using Presentation.Web.Controllers.API.V2.External.ItInterfaces.Mapping; using System.Linq; @@ -130,6 +129,7 @@ using Presentation.Web.Controllers.API.V2.Internal.ItSystemUsages.Mapping; using Presentation.Web.Controllers.API.V2.Internal.Notifications.Mapping; using Core.ApplicationServices.Generic; +using Infrastructure.STS.OrganizationSystem.DomainServices; namespace Presentation.Web.Ninject { @@ -301,7 +301,7 @@ public void RegisterServices(IKernel kernel) //STS Organization kernel.Bind().To().InCommandScope(Mode); kernel.Bind().To().InCommandScope(Mode); - kernel.Bind().To().InCommandScope(Mode); + kernel.Bind().To().InCommandScope(Mode); kernel.Bind().To().InCommandScope(Mode); //Public messages diff --git a/Presentation.Web/Presentation.Web.csproj b/Presentation.Web/Presentation.Web.csproj index b13b3ba6fe..0027d407e9 100644 --- a/Presentation.Web/Presentation.Web.csproj +++ b/Presentation.Web/Presentation.Web.csproj @@ -379,6 +379,9 @@ + + LoginHandler.ashx + @@ -1745,6 +1748,7 @@ + SettingsSingleFileGenerator @@ -1845,9 +1849,9 @@ {09A799FA-3781-419B-AB54-3C76219FD2DE} Infrastructure.STS.Company - - {77C5BEDB-CC7F-4D6F-BF34-EC72B57C03C8} - Infrastructure.STS.OrganizationUnit + + {A125252B-4EFF-4123-9895-54AD85AAAEAF} + Infrastructure.STS.OrganizationSystem {3DC91665-93BB-442D-B186-7E90C7CD6E32} diff --git a/Presentation.Web/Properties/Settings.Designer.cs b/Presentation.Web/Properties/Settings.Designer.cs index d41bda2d25..b0c3b9f1ee 100644 --- a/Presentation.Web/Properties/Settings.Designer.cs +++ b/Presentation.Web/Properties/Settings.Designer.cs @@ -12,7 +12,7 @@ namespace Presentation.Web.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.4.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.7.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); @@ -88,7 +88,7 @@ public string UseDefaultPassword { [global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("9d4b49c46f7d118c5cf9b4192b6db65e879e0b0f")] + [global::System.Configuration.DefaultSettingValueAttribute("5a96f4868fb67ef4829a91588a0cf0de4d2290ea")] public string SsoCertificateThumbprint { get { return ((string)(this["SsoCertificateThumbprint"])); diff --git a/Presentation.Web/Properties/Settings.settings b/Presentation.Web/Properties/Settings.settings index e19c1d1c02..9807dc9479 100644 --- a/Presentation.Web/Properties/Settings.settings +++ b/Presentation.Web/Properties/Settings.settings @@ -24,7 +24,7 @@ true - 9d4b49c46f7d118c5cf9b4192b6db65e879e0b0f + 5a96f4868fb67ef4829a91588a0cf0de4d2290ea exttest.serviceplatformen.dk diff --git a/Presentation.Web/Startup.cs b/Presentation.Web/Startup.cs index 692c424f65..0f13fca84b 100644 --- a/Presentation.Web/Startup.cs +++ b/Presentation.Web/Startup.cs @@ -14,6 +14,7 @@ using Presentation.Web.Ninject; using Presentation.Web.Infrastructure.Filters; using Presentation.Web.Infrastructure; +using Infrastructure.DataAccess.Tools; [assembly: OwinStartup(typeof(Presentation.Web.Startup))] namespace Presentation.Web @@ -53,7 +54,7 @@ private static void InitializeHangfire(IAppBuilder app) var standardKernel = new KernelBuilder().ForHangFire().Build(); GlobalConfiguration.Configuration.UseNinjectActivator(standardKernel); - GlobalConfiguration.Configuration.UseSqlServerStorage("kitos_HangfireDB"); + GlobalConfiguration.Configuration.UseSqlServerStorage(ConnectionStringTools.GetConnectionString("kitos_HangfireDB")); GlobalJobFilters.Filters.Add(new AdvisSendFailureFilter(standardKernel)); GlobalJobFilters.Filters.Add(new AutomaticRetryAttribute { Attempts = KitosConstants.MaxHangfireRetries }); diff --git a/Presentation.Web/Web.config b/Presentation.Web/Web.config index df2f5c9e29..c7d0d83ac9 100644 --- a/Presentation.Web/Web.config +++ b/Presentation.Web/Web.config @@ -339,7 +339,7 @@ true - 9d4b49c46f7d118c5cf9b4192b6db65e879e0b0f + 5a96f4868fb67ef4829a91588a0cf0de4d2290ea exttest.serviceplatformen.dk @@ -360,7 +360,7 @@ 30 true - + SHA256 https://kitos-local.strongminds.dk diff --git a/Presentation.Web/app/components/home/home.view.html b/Presentation.Web/app/components/home/home.view.html index 7344ff4d09..3247456b88 100644 --- a/Presentation.Web/app/components/home/home.view.html +++ b/Presentation.Web/app/components/home/home.view.html @@ -88,7 +88,7 @@

Single Sign-On (SSO)

diff --git a/Presentation.Web/idp-metadata/sts-adgangstyring-prod.xml b/Presentation.Web/idp-metadata/sts-adgangstyring-prod.xml index f39b4d6eb7..30fe6ba4d3 100644 --- a/Presentation.Web/idp-metadata/sts-adgangstyring-prod.xml +++ b/Presentation.Web/idp-metadata/sts-adgangstyring-prod.xml @@ -1,16 +1,16 @@ - + - MIIGGzCCBQOgAwIBAgIEXgiSgzANBgkqhkiG9w0BAQsFADBAMQswCQYDVQQGEwJESzESMBAGA1UECgwJVFJVU1QyNDA4MR0wGwYDVQQDDBRUUlVTVDI0MDggT0NFUyBDQSBJVjAeFw0yMTA2MDgwNzAwNTFaFw0yNDA2MDgwNzAwMjJaMIGOMQswCQYDVQQGEwJESzEjMCEGA1UECgwaS09NQklUIEEvUyAvLyBDVlI6MTk0MzUwNzUxWjAgBgNVBAUTGUNWUjoxOTQzNTA3NS1GSUQ6NjE5NDIwMDgwNgYDVQQDDC9wcm9kdWt0aW9uLWFkZ2FuZ3NzdHlyaW5nIChmdW5rdGlvbnNjZXJ0aWZpa2F0KTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALsUmjF0H4bymX7Mtk+cei88Emdgo7UAOD3fHfRdioUSimNLbFG04eQSPN80mekZG6g7GgFV8PUDcp6YgDulVJeM3j4AI9Nv53btlV4+3r3fadCi7u7OlSHD/EsS3dPjZfzgx0Kk/6y3aXcByZCa1VXALDz9JtVVxSY/9ZSY/KqV0uGGgTH+cZOnCrXEn26eXML5CwAxP3SRZCGfoYV2HgcExpRrzPlJov8TvAHYElZjB2L0c5/o0hioMYg5BKnlSsyOwgc/xlbwdH6zcO9vnm+HDbViHmZV4dUYgtBfN0XmbpCkXZKsArODxdDAHn/3NIMzR+qyOPS7RAnraz5AUS0CAwEAAaOCAswwggLIMA4GA1UdDwEB/wQEAwIDuDCBiQYIKwYBBQUHAQEEfTB7MDUGCCsGAQUFBzABhilodHRwOi8vb2NzcC5pY2EwNC50cnVzdDI0MDguY29tL3Jlc3BvbmRlcjBCBggrBgEFBQcwAoY2aHR0cDovL2YuYWlhLmljYTA0LnRydXN0MjQwOC5jb20vb2Nlcy1pc3N1aW5nMDQtY2EuY2VyMIIBQwYDVR0gBIIBOjCCATYwggEyBgoqgVCBKQEBAQQDMIIBIjAvBggrBgEFBQcCARYjaHR0cDovL3d3dy50cnVzdDI0MDguY29tL3JlcG9zaXRvcnkwge4GCCsGAQUFBwICMIHhMBAWCVRSVVNUMjQwODADAgEBGoHMRm9yIGFudmVuZGVsc2UgYWYgY2VydGlmaWthdGV0IGfmbGRlciBPQ0VTIHZpbGvlciwgQ1BTIG9nIE9DRVMgQ1AsIGRlciBrYW4gaGVudGVzIGZyYSB3d3cudHJ1c3QyNDA4LmNvbS9yZXBvc2l0b3J5LiBCZW3mcmssIGF0IFRSVVNUMjQwOCBlZnRlciB2aWxr5XJlbmUgaGFyIGV0IGJlZ3LmbnNldCBhbnN2YXIgaWZ0LiBwcm9mZXNzaW9uZWxsZSBwYXJ0ZXIuMIGXBgNVHR8EgY8wgYwwLqAsoCqGKGh0dHA6Ly9jcmwuaWNhMDQudHJ1c3QyNDA4LmNvbS9pY2EwNC5jcmwwWqBYoFakVDBSMQswCQYDVQQGEwJESzESMBAGA1UECgwJVFJVU1QyNDA4MR0wGwYDVQQDDBRUUlVTVDI0MDggT0NFUyBDQSBJVjEQMA4GA1UEAwwHQ1JMMzA4MzAfBgNVHSMEGDAWgBRcu3ViFjKZqjaguJr7b6cMX/AK1TAdBgNVHQ4EFgQUiPovIxzMvVLLFL4CvGvulKIZoUgwCQYDVR0TBAIwADANBgkqhkiG9w0BAQsFAAOCAQEAbNwgvmy8zB3+WAGTsSzC0Rg4J/POPyRGj4L7c8TK43nC58UGwwAG9Br/W1Qo6GW4Egkl58P2QZria8d6OZ18GXDh0nwKAVJEtouBJuiLsPg7W8ITgQse7qSwIeHHxMbQEKc/Fx40UQpBJsswnBY26OH1kRoMNbUxYHAAiOtNsI2GWM4+gg86Wk4PmbwVZkk9+VU0wnyH0kkwFxSLIruq7dLv3LBzWo4GhYAKcXwXsHgzup4GtsdwhZPB0a+W4F7rvYo/MbrEEGO6MynsO/lakWKGVMIcYNc+Iw/7jR+nHcz8XZtGRsO423gph+PN/h/Ho2yn37KORtBcIiGMCVqVcw== + MIIGYTCCBJWgAwIBAgIUOg2gcHiF/oIqy5kaBrtpIXcs6SswQQYJKoZIhvcNAQEKMDSgDzANBglghkgBZQMEAgEFAKEcMBoGCSqGSIb3DQEBCDANBglghkgBZQMEAgEFAKIDAgEgMFYxLTArBgNVBAMMJERlbiBEYW5za2UgU3RhdCBPQ0VTIHVkc3RlZGVuZGUtQ0EgMTEYMBYGA1UECgwPRGVuIERhbnNrZSBTdGF0MQswCQYDVQQGEwJESzAeFw0yMzAzMjgwNTAwMzRaFw0yNjAzMjcwNTAwMzNaMIGYMSIwIAYDVQQDDBlBREdfUFJPRF9BZGdhbmdzc3R5cmluZ18xMTcwNQYDVQQFEy5VSTpESy1POkc6YjgxMmVlMTAtZDczOC00MTNkLWEyYjUtYmMzNDc1Y2NjNjE5MRMwEQYDVQQKDApLT01CSVQgQS9TMRcwFQYDVQRhDA5OVFJESy0xOTQzNTA3NTELMAkGA1UEBhMCREswggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQC7RBzgkR9ZVS4UtnDOc9J0YIXIpKKPSGfjTnQJUSp+A5YSv3ALAa4bw1lGsLgMgyCc72me2okHM9HOwyRfLPBpcz8lRC34coeyzMTHPkxNTeHb/gzE9RCaLccyOlBzgzgAz1h6Q2//MkXsZHO16livM0KHTRa4D/qaeMaeUzSHekAv/rt1HX20Ho88OpHsAQhfmeLz2MEfBRteMQdRXwXYixGmsllMv9nWfR4DRN887DhNPnwsXNFDrnvSJ0K+4IO+d0e6f45Y6aQJBv4lUNNNF1gYxcZZP6PVxC6UvrU8wr7Gc6geSou8AxQmzkP8TQS89YWeydW5amtB3Tasn5n07cyw/g7Ti0TvnyxRo2R5v3XGOnNcEh7cRd0elE2n23zOILVi00hlXAFz8nDwPkEzPK/ZJPQdA1MCrUdTIN92LV5FK+p4gyYCruweD8YXjVv+tFGerYWT2IuMDhSGd5FgwA07RTGeVGSnmYtZWhjIdBn7z+8Q76oghBSEQwE+tukCAwEAAaOCAXowggF2MAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAUTAHiynO8w744Cjg9NrBcdJx7l7kwcwYIKwYBBQUHAQEEZzBlMD8GCCsGAQUFBzAChjNodHRwOi8vY2ExLmdvdi5kay9vY2VzL2lzc3VpbmcvMS9jYWNlcnQvaXNzdWluZy5jZXIwIgYIKwYBBQUHMAGGFmh0dHA6Ly9jYTEuZ292LmRrL29jc3AwIQYDVR0gBBowGDAIBgYEAI96AQEwDAYKKoFQgSkBAQEDBzA7BggrBgEFBQcBAwQvMC0wKwYIKwYBBQUHCwIwHwYHBACL7EkBAjAUhhJodHRwczovL3VpZC5nb3YuZGswQQYDVR0fBDowODA2oDSgMoYwaHR0cDovL2NhMS5nb3YuZGsvb2Nlcy9pc3N1aW5nLzEvY3JsL2lzc3VpbmcuY3JsMB0GA1UdDgQWBBTL6f4i3VrFavBVLo2oiFVo4uUjGDAOBgNVHQ8BAf8EBAMCBaAwQQYJKoZIhvcNAQEKMDSgDzANBglghkgBZQMEAgEFAKEcMBoGCSqGSIb3DQEBCDANBglghkgBZQMEAgEFAKIDAgEgA4IBgQAsgOF/fmvwi2PXD259h8ONBHAS4owtFECDwZoSFMNrMKRG5bxvdZi4ap1nUvmo2Jctcc6Bw4l8JQFNYNXx1FigiVJ/eFdPWA0MrWFVps8knQlpxEn5ms1anTKk4zW5dn2+LWT5xCQ/ZiPYOVdL2xKpRctgC2pyod8kfaf2KIzvDzAiAF78oM38oNmHqA5lrQFJJYM8nqq2XzegCJALdVh1bcaN1AEFXEGY7DTUCQ5yP8j9fO3ZMXEFXm+Mt799v6ggQzGpVQKPI88tmtmj9nKnqImNN6+BUTPezAaB9Mtr76SfPW8TuZLm/sopBl2R+5EjiBJqgyy9MOOANWrPeD8N5NJpYAzr9zKtXgPuijrIDfci/TLmjiAxjx6k7lT7VIRoo1h9qvtE+pPQw8BLZtmhOFmmlNPlax9m6wIzfdEq1alChapM0qf4a3WByUH7jp2kCVrz72/QUewRjJORR/2Bj4ViqdeLMSf2V0Bdgk2UBHM8LDwHa876hxBjjESshRQ= - MIIGGzCCBQOgAwIBAgIEXgiSgzANBgkqhkiG9w0BAQsFADBAMQswCQYDVQQGEwJESzESMBAGA1UECgwJVFJVU1QyNDA4MR0wGwYDVQQDDBRUUlVTVDI0MDggT0NFUyBDQSBJVjAeFw0yMTA2MDgwNzAwNTFaFw0yNDA2MDgwNzAwMjJaMIGOMQswCQYDVQQGEwJESzEjMCEGA1UECgwaS09NQklUIEEvUyAvLyBDVlI6MTk0MzUwNzUxWjAgBgNVBAUTGUNWUjoxOTQzNTA3NS1GSUQ6NjE5NDIwMDgwNgYDVQQDDC9wcm9kdWt0aW9uLWFkZ2FuZ3NzdHlyaW5nIChmdW5rdGlvbnNjZXJ0aWZpa2F0KTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALsUmjF0H4bymX7Mtk+cei88Emdgo7UAOD3fHfRdioUSimNLbFG04eQSPN80mekZG6g7GgFV8PUDcp6YgDulVJeM3j4AI9Nv53btlV4+3r3fadCi7u7OlSHD/EsS3dPjZfzgx0Kk/6y3aXcByZCa1VXALDz9JtVVxSY/9ZSY/KqV0uGGgTH+cZOnCrXEn26eXML5CwAxP3SRZCGfoYV2HgcExpRrzPlJov8TvAHYElZjB2L0c5/o0hioMYg5BKnlSsyOwgc/xlbwdH6zcO9vnm+HDbViHmZV4dUYgtBfN0XmbpCkXZKsArODxdDAHn/3NIMzR+qyOPS7RAnraz5AUS0CAwEAAaOCAswwggLIMA4GA1UdDwEB/wQEAwIDuDCBiQYIKwYBBQUHAQEEfTB7MDUGCCsGAQUFBzABhilodHRwOi8vb2NzcC5pY2EwNC50cnVzdDI0MDguY29tL3Jlc3BvbmRlcjBCBggrBgEFBQcwAoY2aHR0cDovL2YuYWlhLmljYTA0LnRydXN0MjQwOC5jb20vb2Nlcy1pc3N1aW5nMDQtY2EuY2VyMIIBQwYDVR0gBIIBOjCCATYwggEyBgoqgVCBKQEBAQQDMIIBIjAvBggrBgEFBQcCARYjaHR0cDovL3d3dy50cnVzdDI0MDguY29tL3JlcG9zaXRvcnkwge4GCCsGAQUFBwICMIHhMBAWCVRSVVNUMjQwODADAgEBGoHMRm9yIGFudmVuZGVsc2UgYWYgY2VydGlmaWthdGV0IGfmbGRlciBPQ0VTIHZpbGvlciwgQ1BTIG9nIE9DRVMgQ1AsIGRlciBrYW4gaGVudGVzIGZyYSB3d3cudHJ1c3QyNDA4LmNvbS9yZXBvc2l0b3J5LiBCZW3mcmssIGF0IFRSVVNUMjQwOCBlZnRlciB2aWxr5XJlbmUgaGFyIGV0IGJlZ3LmbnNldCBhbnN2YXIgaWZ0LiBwcm9mZXNzaW9uZWxsZSBwYXJ0ZXIuMIGXBgNVHR8EgY8wgYwwLqAsoCqGKGh0dHA6Ly9jcmwuaWNhMDQudHJ1c3QyNDA4LmNvbS9pY2EwNC5jcmwwWqBYoFakVDBSMQswCQYDVQQGEwJESzESMBAGA1UECgwJVFJVU1QyNDA4MR0wGwYDVQQDDBRUUlVTVDI0MDggT0NFUyBDQSBJVjEQMA4GA1UEAwwHQ1JMMzA4MzAfBgNVHSMEGDAWgBRcu3ViFjKZqjaguJr7b6cMX/AK1TAdBgNVHQ4EFgQUiPovIxzMvVLLFL4CvGvulKIZoUgwCQYDVR0TBAIwADANBgkqhkiG9w0BAQsFAAOCAQEAbNwgvmy8zB3+WAGTsSzC0Rg4J/POPyRGj4L7c8TK43nC58UGwwAG9Br/W1Qo6GW4Egkl58P2QZria8d6OZ18GXDh0nwKAVJEtouBJuiLsPg7W8ITgQse7qSwIeHHxMbQEKc/Fx40UQpBJsswnBY26OH1kRoMNbUxYHAAiOtNsI2GWM4+gg86Wk4PmbwVZkk9+VU0wnyH0kkwFxSLIruq7dLv3LBzWo4GhYAKcXwXsHgzup4GtsdwhZPB0a+W4F7rvYo/MbrEEGO6MynsO/lakWKGVMIcYNc+Iw/7jR+nHcz8XZtGRsO423gph+PN/h/Ho2yn37KORtBcIiGMCVqVcw== + MIIGYTCCBJWgAwIBAgIUOg2gcHiF/oIqy5kaBrtpIXcs6SswQQYJKoZIhvcNAQEKMDSgDzANBglghkgBZQMEAgEFAKEcMBoGCSqGSIb3DQEBCDANBglghkgBZQMEAgEFAKIDAgEgMFYxLTArBgNVBAMMJERlbiBEYW5za2UgU3RhdCBPQ0VTIHVkc3RlZGVuZGUtQ0EgMTEYMBYGA1UECgwPRGVuIERhbnNrZSBTdGF0MQswCQYDVQQGEwJESzAeFw0yMzAzMjgwNTAwMzRaFw0yNjAzMjcwNTAwMzNaMIGYMSIwIAYDVQQDDBlBREdfUFJPRF9BZGdhbmdzc3R5cmluZ18xMTcwNQYDVQQFEy5VSTpESy1POkc6YjgxMmVlMTAtZDczOC00MTNkLWEyYjUtYmMzNDc1Y2NjNjE5MRMwEQYDVQQKDApLT01CSVQgQS9TMRcwFQYDVQRhDA5OVFJESy0xOTQzNTA3NTELMAkGA1UEBhMCREswggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQC7RBzgkR9ZVS4UtnDOc9J0YIXIpKKPSGfjTnQJUSp+A5YSv3ALAa4bw1lGsLgMgyCc72me2okHM9HOwyRfLPBpcz8lRC34coeyzMTHPkxNTeHb/gzE9RCaLccyOlBzgzgAz1h6Q2//MkXsZHO16livM0KHTRa4D/qaeMaeUzSHekAv/rt1HX20Ho88OpHsAQhfmeLz2MEfBRteMQdRXwXYixGmsllMv9nWfR4DRN887DhNPnwsXNFDrnvSJ0K+4IO+d0e6f45Y6aQJBv4lUNNNF1gYxcZZP6PVxC6UvrU8wr7Gc6geSou8AxQmzkP8TQS89YWeydW5amtB3Tasn5n07cyw/g7Ti0TvnyxRo2R5v3XGOnNcEh7cRd0elE2n23zOILVi00hlXAFz8nDwPkEzPK/ZJPQdA1MCrUdTIN92LV5FK+p4gyYCruweD8YXjVv+tFGerYWT2IuMDhSGd5FgwA07RTGeVGSnmYtZWhjIdBn7z+8Q76oghBSEQwE+tukCAwEAAaOCAXowggF2MAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAUTAHiynO8w744Cjg9NrBcdJx7l7kwcwYIKwYBBQUHAQEEZzBlMD8GCCsGAQUFBzAChjNodHRwOi8vY2ExLmdvdi5kay9vY2VzL2lzc3VpbmcvMS9jYWNlcnQvaXNzdWluZy5jZXIwIgYIKwYBBQUHMAGGFmh0dHA6Ly9jYTEuZ292LmRrL29jc3AwIQYDVR0gBBowGDAIBgYEAI96AQEwDAYKKoFQgSkBAQEDBzA7BggrBgEFBQcBAwQvMC0wKwYIKwYBBQUHCwIwHwYHBACL7EkBAjAUhhJodHRwczovL3VpZC5nb3YuZGswQQYDVR0fBDowODA2oDSgMoYwaHR0cDovL2NhMS5nb3YuZGsvb2Nlcy9pc3N1aW5nLzEvY3JsL2lzc3VpbmcuY3JsMB0GA1UdDgQWBBTL6f4i3VrFavBVLo2oiFVo4uUjGDAOBgNVHQ8BAf8EBAMCBaAwQQYJKoZIhvcNAQEKMDSgDzANBglghkgBZQMEAgEFAKEcMBoGCSqGSIb3DQEBCDANBglghkgBZQMEAgEFAKIDAgEgA4IBgQAsgOF/fmvwi2PXD259h8ONBHAS4owtFECDwZoSFMNrMKRG5bxvdZi4ap1nUvmo2Jctcc6Bw4l8JQFNYNXx1FigiVJ/eFdPWA0MrWFVps8knQlpxEn5ms1anTKk4zW5dn2+LWT5xCQ/ZiPYOVdL2xKpRctgC2pyod8kfaf2KIzvDzAiAF78oM38oNmHqA5lrQFJJYM8nqq2XzegCJALdVh1bcaN1AEFXEGY7DTUCQ5yP8j9fO3ZMXEFXm+Mt799v6ggQzGpVQKPI88tmtmj9nKnqImNN6+BUTPezAaB9Mtr76SfPW8TuZLm/sopBl2R+5EjiBJqgyy9MOOANWrPeD8N5NJpYAzr9zKtXgPuijrIDfci/TLmjiAxjx6k7lT7VIRoo1h9qvtE+pPQw8BLZtmhOFmmlNPlax9m6wIzfdEq1alChapM0qf4a3WByUH7jp2kCVrz72/QUewRjJORR/2Bj4ViqdeLMSf2V0Bdgk2UBHM8LDwHa876hxBjjESshRQ= diff --git a/Presentation.Web/idp-metadata/sts-adgangstyring-test.xml b/Presentation.Web/idp-metadata/sts-adgangstyring-test.xml index f8907caec8..889affe516 100644 --- a/Presentation.Web/idp-metadata/sts-adgangstyring-test.xml +++ b/Presentation.Web/idp-metadata/sts-adgangstyring-test.xml @@ -1,39 +1,39 @@ - - - - - - MIIGHTCCBQWgAwIBAgIEXgiTCTANBgkqhkiG9w0BAQsFADBAMQswCQYDVQQGEwJESzESMBAGA1UECgwJVFJVU1QyNDA4MR0wGwYDVQQDDBRUUlVTVDI0MDggT0NFUyBDQSBJVjAeFw0yMTA2MDgwNzA3MDNaFw0yNDA2MDgwNzA2MzVaMIGQMQswCQYDVQQGEwJESzEjMCEGA1UECgwaS09NQklUIEEvUyAvLyBDVlI6MTk0MzUwNzUxXDAgBgNVBAUTGUNWUjoxOTQzNTA3NS1GSUQ6NjA0OTI3ODgwOAYDVQQDDDF0ZXN0LWVrc3Rlcm4tYWRnYW5nc3N0eXJpbmcgKGZ1bmt0aW9uc2NlcnRpZmlrYXQpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnEbT2230TEC+ZnAgOWwAaBtoSjOszdaMBxcl1WCCfv8Rc5NFMp1FT68rexN9/k1GcTNWREPLSjEh9RUtQ5QHrEDUYDv3g/lL2YSKaVuY7YiqMn+Ei81tgKWO9N5P1UNdeLW0+5DjNSO++CC33B0AElXXVI9YhQFnSR6qTZsYPQnsD/J6FA41RMyizfk5MFmFurYn06nw9CkW3CtY5T3+FU4q55gIOiwSGplHm5emeFEyxMkXtQBaoRXpgOeSqJJ1r2GYkK3gk/1DGk/s2CKc1wPlhhU9vJOV0cNyyJ/wvUscWjjrgT5UgLX2OK3lZUiQ72W7DMgExOcKTxbvKjP+YwIDAQABo4ICzDCCAsgwDgYDVR0PAQH/BAQDAgO4MIGJBggrBgEFBQcBAQR9MHswNQYIKwYBBQUHMAGGKWh0dHA6Ly9vY3NwLmljYTA0LnRydXN0MjQwOC5jb20vcmVzcG9uZGVyMEIGCCsGAQUFBzAChjZodHRwOi8vZi5haWEuaWNhMDQudHJ1c3QyNDA4LmNvbS9vY2VzLWlzc3VpbmcwNC1jYS5jZXIwggFDBgNVHSAEggE6MIIBNjCCATIGCiqBUIEpAQEBBAMwggEiMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LnRydXN0MjQwOC5jb20vcmVwb3NpdG9yeTCB7gYIKwYBBQUHAgIwgeEwEBYJVFJVU1QyNDA4MAMCAQEagcxGb3IgYW52ZW5kZWxzZSBhZiBjZXJ0aWZpa2F0ZXQgZ+ZsZGVyIE9DRVMgdmlsa+VyLCBDUFMgb2cgT0NFUyBDUCwgZGVyIGthbiBoZW50ZXMgZnJhIHd3dy50cnVzdDI0MDguY29tL3JlcG9zaXRvcnkuIEJlbeZyaywgYXQgVFJVU1QyNDA4IGVmdGVyIHZpbGvlcmVuZSBoYXIgZXQgYmVncuZuc2V0IGFuc3ZhciBpZnQuIHByb2Zlc3Npb25lbGxlIHBhcnRlci4wgZcGA1UdHwSBjzCBjDAuoCygKoYoaHR0cDovL2NybC5pY2EwNC50cnVzdDI0MDguY29tL2ljYTA0LmNybDBaoFigVqRUMFIxCzAJBgNVBAYTAkRLMRIwEAYDVQQKDAlUUlVTVDI0MDgxHTAbBgNVBAMMFFRSVVNUMjQwOCBPQ0VTIENBIElWMRAwDgYDVQQDDAdDUkwzMDgzMB8GA1UdIwQYMBaAFFy7dWIWMpmqNqC4mvtvpwxf8ArVMB0GA1UdDgQWBBR2bXVUcWt5i4zO9J9kpBrq5fJufDAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBQ015R55ZZ+83w+eR/CNfZx9ykOKHqf70bOpM9yu7UxG2teAAE+4xA8Zt/F/SPbtLbxAZLkSBevmX4oVVYtNn6C0HrS8V/Gt65rS7VxEI/vBttD0EOOvwxJPW61wM4f5EXY84XZPzL9UY3ErjhDvz3W6trxYNp5wS1V4x85SI8WCesNXjryMHphPakK252IOTXvuybGNjyVwQL3DGI9i/DcOxzIPi0CaBlBEVUTvggR9E7v4P/YpxvQyrerqtEfy8PIJ/a2lysCyoMeeg0TTq5A51BK25SlWzo0muyJ7tbKuRLkPfGtuSq8uGfBBVyouNl4/nH0QDoU9mHDP17gSZZ - - - - - - - MIIGHTCCBQWgAwIBAgIEXgiTCTANBgkqhkiG9w0BAQsFADBAMQswCQYDVQQGEwJESzESMBAGA1UECgwJVFJVU1QyNDA4MR0wGwYDVQQDDBRUUlVTVDI0MDggT0NFUyBDQSBJVjAeFw0yMTA2MDgwNzA3MDNaFw0yNDA2MDgwNzA2MzVaMIGQMQswCQYDVQQGEwJESzEjMCEGA1UECgwaS09NQklUIEEvUyAvLyBDVlI6MTk0MzUwNzUxXDAgBgNVBAUTGUNWUjoxOTQzNTA3NS1GSUQ6NjA0OTI3ODgwOAYDVQQDDDF0ZXN0LWVrc3Rlcm4tYWRnYW5nc3N0eXJpbmcgKGZ1bmt0aW9uc2NlcnRpZmlrYXQpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnEbT2230TEC+ZnAgOWwAaBtoSjOszdaMBxcl1WCCfv8Rc5NFMp1FT68rexN9/k1GcTNWREPLSjEh9RUtQ5QHrEDUYDv3g/lL2YSKaVuY7YiqMn+Ei81tgKWO9N5P1UNdeLW0+5DjNSO++CC33B0AElXXVI9YhQFnSR6qTZsYPQnsD/J6FA41RMyizfk5MFmFurYn06nw9CkW3CtY5T3+FU4q55gIOiwSGplHm5emeFEyxMkXtQBaoRXpgOeSqJJ1r2GYkK3gk/1DGk/s2CKc1wPlhhU9vJOV0cNyyJ/wvUscWjjrgT5UgLX2OK3lZUiQ72W7DMgExOcKTxbvKjP+YwIDAQABo4ICzDCCAsgwDgYDVR0PAQH/BAQDAgO4MIGJBggrBgEFBQcBAQR9MHswNQYIKwYBBQUHMAGGKWh0dHA6Ly9vY3NwLmljYTA0LnRydXN0MjQwOC5jb20vcmVzcG9uZGVyMEIGCCsGAQUFBzAChjZodHRwOi8vZi5haWEuaWNhMDQudHJ1c3QyNDA4LmNvbS9vY2VzLWlzc3VpbmcwNC1jYS5jZXIwggFDBgNVHSAEggE6MIIBNjCCATIGCiqBUIEpAQEBBAMwggEiMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LnRydXN0MjQwOC5jb20vcmVwb3NpdG9yeTCB7gYIKwYBBQUHAgIwgeEwEBYJVFJVU1QyNDA4MAMCAQEagcxGb3IgYW52ZW5kZWxzZSBhZiBjZXJ0aWZpa2F0ZXQgZ+ZsZGVyIE9DRVMgdmlsa+VyLCBDUFMgb2cgT0NFUyBDUCwgZGVyIGthbiBoZW50ZXMgZnJhIHd3dy50cnVzdDI0MDguY29tL3JlcG9zaXRvcnkuIEJlbeZyaywgYXQgVFJVU1QyNDA4IGVmdGVyIHZpbGvlcmVuZSBoYXIgZXQgYmVncuZuc2V0IGFuc3ZhciBpZnQuIHByb2Zlc3Npb25lbGxlIHBhcnRlci4wgZcGA1UdHwSBjzCBjDAuoCygKoYoaHR0cDovL2NybC5pY2EwNC50cnVzdDI0MDguY29tL2ljYTA0LmNybDBaoFigVqRUMFIxCzAJBgNVBAYTAkRLMRIwEAYDVQQKDAlUUlVTVDI0MDgxHTAbBgNVBAMMFFRSVVNUMjQwOCBPQ0VTIENBIElWMRAwDgYDVQQDDAdDUkwzMDgzMB8GA1UdIwQYMBaAFFy7dWIWMpmqNqC4mvtvpwxf8ArVMB0GA1UdDgQWBBR2bXVUcWt5i4zO9J9kpBrq5fJufDAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQBQ015R55ZZ+83w+eR/CNfZx9ykOKHqf70bOpM9yu7UxG2teAAE+4xA8Zt/F/SPbtLbxAZLkSBevmX4oVVYtNn6C0HrS8V/Gt65rS7VxEI/vBttD0EOOvwxJPW61wM4f5EXY84XZPzL9UY3ErjhDvz3W6trxYNp5wS1V4x85SI8WCesNXjryMHphPakK252IOTXvuybGNjyVwQL3DGI9i/DcOxzIPi0CaBlBEVUTvggR9E7v4P/YpxvQyrerqtEfy8PIJ/a2lysCyoMeeg0TTq5A51BK25SlWzo0muyJ7tbKuRLkPfGtuSq8uGfBBVyouNl4/nH0QDoU9mHDP17gSZZ - - - - - - - urn:oasis:names:tc:SAML:1.1:nameid-format:X509SubjectName - - - - 1.0 - - - 2 - 3 - - - DK-SAML-2.0 - - - - - - - + + + + + + MIIGZDCCBJigAwIBAgIUTu+8f8TGgmEvXrUSmJjReRKPIokwQQYJKoZIhvcNAQEKMDSgDzANBglghkgBZQMEAgEFAKEcMBoGCSqGSIb3DQEBCDANBglghkgBZQMEAgEFAKIDAgEgMFYxLTArBgNVBAMMJERlbiBEYW5za2UgU3RhdCBPQ0VTIHVkc3RlZGVuZGUtQ0EgMTEYMBYGA1UECgwPRGVuIERhbnNrZSBTdGF0MQswCQYDVQQGEwJESzAeFw0yMzAzMjkxMDM4MjdaFw0yNjAzMjgxMDM4MjZaMIGbMSUwIwYDVQQDDBxBREdfRVhUVEVTVF9BZGdhbmdzc3R5cmluZ18xMTcwNQYDVQQFEy5VSTpESy1POkc6MTczM2MwMGItNjEyMy00YjVlLTk2YzQtOTkyMGY2YjM2OGM5MRMwEQYDVQQKDApLT01CSVQgQS9TMRcwFQYDVQRhDA5OVFJESy0xOTQzNTA3NTELMAkGA1UEBhMCREswggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQC2nmtLyhUBJQ1HmRdZThj0nmwvL4VHu4Y8Rxp5N6Zv02YeuJDObKeeJD6IcF/Nhmma22Z5OJ76EyLSknLuQbEa/9QlubC/hv98dzdB0++WAAW1KIP8t5aSwTRq5peVejicXYfAouyWVxjPNpQsufccJF2/kEI6ksRgbIPwvWVwFqrv9+6vSYmjwyPaRYiNn9r/tCcnLNqVDByTCwmNDdZqIeADt1pPUTNwU4nyGi6338Zeuh7EzVzxcjVUg/KL2qlYglj3OeqNamQC9FNjs/xCjnDE2XNe43feJxgT81q1mEGgPqc2XEQJGNBqPDFOthHUe8AvdmEQaod2KpRi9DvXLwu7+Q3KQYr1fxO+XErgJ3GXdBfa3mgh8lcJ1feiudAaOdopEflVAOunzmanQSyvkEsaR3ucmbf3tLVDLKNvDqMeo0Yy24rrHFo9+bKpuINuwmHRfAuqFxH0c1ObfpB3e2yPedtTc/GQTiYQND4KfoKX4w9qqwZzqvbf/iXBF3MCAwEAAaOCAXowggF2MAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAUTAHiynO8w744Cjg9NrBcdJx7l7kwcwYIKwYBBQUHAQEEZzBlMD8GCCsGAQUFBzAChjNodHRwOi8vY2ExLmdvdi5kay9vY2VzL2lzc3VpbmcvMS9jYWNlcnQvaXNzdWluZy5jZXIwIgYIKwYBBQUHMAGGFmh0dHA6Ly9jYTEuZ292LmRrL29jc3AwIQYDVR0gBBowGDAIBgYEAI96AQEwDAYKKoFQgSkBAQEDBzA7BggrBgEFBQcBAwQvMC0wKwYIKwYBBQUHCwIwHwYHBACL7EkBAjAUhhJodHRwczovL3VpZC5nb3YuZGswQQYDVR0fBDowODA2oDSgMoYwaHR0cDovL2NhMS5nb3YuZGsvb2Nlcy9pc3N1aW5nLzEvY3JsL2lzc3VpbmcuY3JsMB0GA1UdDgQWBBQN+vpLBQDCqTF0Xid1/+GloVHYljAOBgNVHQ8BAf8EBAMCBaAwQQYJKoZIhvcNAQEKMDSgDzANBglghkgBZQMEAgEFAKEcMBoGCSqGSIb3DQEBCDANBglghkgBZQMEAgEFAKIDAgEgA4IBgQDQk7HdkpMLYGXrtFgZ76QYWxKTNzxVsQUFw8quDpgL0hf9Xje0mCOdE7Q0tz7uuhnGffE65I4CW+ZGvIgNPqVqAIKLk82e5SxLyDzGVllxyunK7oceGRS9KPTrEfPC7xNc2SsstzvkYUo4PcdcYimF9KRdQJZWUfL1MT+gebgVI9N8lxuql2DqrW9HavK18p5UW8z099HcY+KCsdHAd+887Hkc8YpIDEVx2E3u2O2BIO0C63mCtAV4v+wP89hv5hbbJuxkDkxLDGfDTm7aAJaJtOpTJbcpyu0oytXT6yp3EFC+z42XVW9Q50AceQxtdDiaMzv1ILUNny6XDM7OBf2tNuIyyq7fNNA2vT0KcSpe+AfxkWzSiSJ/xYAqo+ChFXuJ8hOvOjjt19bne/TNg8MXNXZN0gRhvs2rzuSo4RhCp5UJG4rxtrKip8Fiel5TfoCECFGb0+AsaDbRoNR0aQRaCYmrEySvXL9pnh0zW/BdMx5+VU4OnA2vLKrQoOEkBNs= + + + + + + + MIIGZDCCBJigAwIBAgIUTu+8f8TGgmEvXrUSmJjReRKPIokwQQYJKoZIhvcNAQEKMDSgDzANBglghkgBZQMEAgEFAKEcMBoGCSqGSIb3DQEBCDANBglghkgBZQMEAgEFAKIDAgEgMFYxLTArBgNVBAMMJERlbiBEYW5za2UgU3RhdCBPQ0VTIHVkc3RlZGVuZGUtQ0EgMTEYMBYGA1UECgwPRGVuIERhbnNrZSBTdGF0MQswCQYDVQQGEwJESzAeFw0yMzAzMjkxMDM4MjdaFw0yNjAzMjgxMDM4MjZaMIGbMSUwIwYDVQQDDBxBREdfRVhUVEVTVF9BZGdhbmdzc3R5cmluZ18xMTcwNQYDVQQFEy5VSTpESy1POkc6MTczM2MwMGItNjEyMy00YjVlLTk2YzQtOTkyMGY2YjM2OGM5MRMwEQYDVQQKDApLT01CSVQgQS9TMRcwFQYDVQRhDA5OVFJESy0xOTQzNTA3NTELMAkGA1UEBhMCREswggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQC2nmtLyhUBJQ1HmRdZThj0nmwvL4VHu4Y8Rxp5N6Zv02YeuJDObKeeJD6IcF/Nhmma22Z5OJ76EyLSknLuQbEa/9QlubC/hv98dzdB0++WAAW1KIP8t5aSwTRq5peVejicXYfAouyWVxjPNpQsufccJF2/kEI6ksRgbIPwvWVwFqrv9+6vSYmjwyPaRYiNn9r/tCcnLNqVDByTCwmNDdZqIeADt1pPUTNwU4nyGi6338Zeuh7EzVzxcjVUg/KL2qlYglj3OeqNamQC9FNjs/xCjnDE2XNe43feJxgT81q1mEGgPqc2XEQJGNBqPDFOthHUe8AvdmEQaod2KpRi9DvXLwu7+Q3KQYr1fxO+XErgJ3GXdBfa3mgh8lcJ1feiudAaOdopEflVAOunzmanQSyvkEsaR3ucmbf3tLVDLKNvDqMeo0Yy24rrHFo9+bKpuINuwmHRfAuqFxH0c1ObfpB3e2yPedtTc/GQTiYQND4KfoKX4w9qqwZzqvbf/iXBF3MCAwEAAaOCAXowggF2MAwGA1UdEwEB/wQCMAAwHwYDVR0jBBgwFoAUTAHiynO8w744Cjg9NrBcdJx7l7kwcwYIKwYBBQUHAQEEZzBlMD8GCCsGAQUFBzAChjNodHRwOi8vY2ExLmdvdi5kay9vY2VzL2lzc3VpbmcvMS9jYWNlcnQvaXNzdWluZy5jZXIwIgYIKwYBBQUHMAGGFmh0dHA6Ly9jYTEuZ292LmRrL29jc3AwIQYDVR0gBBowGDAIBgYEAI96AQEwDAYKKoFQgSkBAQEDBzA7BggrBgEFBQcBAwQvMC0wKwYIKwYBBQUHCwIwHwYHBACL7EkBAjAUhhJodHRwczovL3VpZC5nb3YuZGswQQYDVR0fBDowODA2oDSgMoYwaHR0cDovL2NhMS5nb3YuZGsvb2Nlcy9pc3N1aW5nLzEvY3JsL2lzc3VpbmcuY3JsMB0GA1UdDgQWBBQN+vpLBQDCqTF0Xid1/+GloVHYljAOBgNVHQ8BAf8EBAMCBaAwQQYJKoZIhvcNAQEKMDSgDzANBglghkgBZQMEAgEFAKEcMBoGCSqGSIb3DQEBCDANBglghkgBZQMEAgEFAKIDAgEgA4IBgQDQk7HdkpMLYGXrtFgZ76QYWxKTNzxVsQUFw8quDpgL0hf9Xje0mCOdE7Q0tz7uuhnGffE65I4CW+ZGvIgNPqVqAIKLk82e5SxLyDzGVllxyunK7oceGRS9KPTrEfPC7xNc2SsstzvkYUo4PcdcYimF9KRdQJZWUfL1MT+gebgVI9N8lxuql2DqrW9HavK18p5UW8z099HcY+KCsdHAd+887Hkc8YpIDEVx2E3u2O2BIO0C63mCtAV4v+wP89hv5hbbJuxkDkxLDGfDTm7aAJaJtOpTJbcpyu0oytXT6yp3EFC+z42XVW9Q50AceQxtdDiaMzv1ILUNny6XDM7OBf2tNuIyyq7fNNA2vT0KcSpe+AfxkWzSiSJ/xYAqo+ChFXuJ8hOvOjjt19bne/TNg8MXNXZN0gRhvs2rzuSo4RhCp5UJG4rxtrKip8Fiel5TfoCECFGb0+AsaDbRoNR0aQRaCYmrEySvXL9pnh0zW/BdMx5+VU4OnA2vLKrQoOEkBNs= + + + + + + + urn:oasis:names:tc:SAML:1.1:nameid-format:X509SubjectName + + + + 1.0 + + + 2 + 3 + + + DK-SAML-2.0 + + + + + + + \ No newline at end of file diff --git a/Tests.Unit.Core.ApplicationServices/ApplicationServices/Handlers/AuthorizedUpdateOrganizationFromFKOrganisationCommandHandlerTest.cs b/Tests.Unit.Core.ApplicationServices/ApplicationServices/Handlers/AuthorizedUpdateOrganizationFromFKOrganisationCommandHandlerTest.cs index c399c060e4..34268a29a3 100644 --- a/Tests.Unit.Core.ApplicationServices/ApplicationServices/Handlers/AuthorizedUpdateOrganizationFromFKOrganisationCommandHandlerTest.cs +++ b/Tests.Unit.Core.ApplicationServices/ApplicationServices/Handlers/AuthorizedUpdateOrganizationFromFKOrganisationCommandHandlerTest.cs @@ -25,7 +25,7 @@ public class AuthorizedUpdateOrganizationFromFKOrganisationCommandHandlerTest : { private readonly DateTime _now = DateTime.Now; private AuthorizedUpdateOrganizationFromFKOrganisationCommandHandler _sut; - private Mock _stsOrganizationUnitService; + private Mock _stsOrganizationUnitService; private Mock> _organizationUnitRepositoryMock; private Mock _domainEventsMock; private Mock _databaseControlMock; @@ -364,7 +364,7 @@ private void VerifyChangesNotSaved(Mock transaction, Organ private void CreateSut(Maybe activeUserId) { - _stsOrganizationUnitService = new Mock(); + _stsOrganizationUnitService = new Mock(); _organizationUnitRepositoryMock = new Mock>(); _domainEventsMock = new Mock(); _databaseControlMock = new Mock(); diff --git a/Tests.Unit.Core.ApplicationServices/ApplicationServices/Handlers/ReportPendingFkOrganizationChangesToStakeHoldersHandlerTest.cs b/Tests.Unit.Core.ApplicationServices/ApplicationServices/Handlers/ReportPendingFkOrganizationChangesToStakeHoldersHandlerTest.cs index 3e9fd0d2b4..08c08912fa 100644 --- a/Tests.Unit.Core.ApplicationServices/ApplicationServices/Handlers/ReportPendingFkOrganizationChangesToStakeHoldersHandlerTest.cs +++ b/Tests.Unit.Core.ApplicationServices/ApplicationServices/Handlers/ReportPendingFkOrganizationChangesToStakeHoldersHandlerTest.cs @@ -21,7 +21,7 @@ namespace Tests.Unit.Core.ApplicationServices.Handlers public class ReportPendingFkOrganizationChangesToStakeHoldersHandlerTest : WithAutoFixture { private readonly ReportPendingFkOrganizationChangesToStakeHoldersHandler _sut; - private readonly Mock _stsOrgUnitServiceMock; + private readonly Mock _stsOrgUnitServiceMock; private readonly Mock _transactionManagerMock; private readonly DateTime _now; private readonly Mock _databaseControlMock; @@ -29,7 +29,7 @@ public class ReportPendingFkOrganizationChangesToStakeHoldersHandlerTest : WithA public ReportPendingFkOrganizationChangesToStakeHoldersHandlerTest() { - _stsOrgUnitServiceMock = new Mock(); + _stsOrgUnitServiceMock = new Mock(); _transactionManagerMock = new Mock(); _now = DateTime.UtcNow; _databaseControlMock = new Mock(); diff --git a/Tests.Unit.Core.ApplicationServices/ApplicationServices/Organizations/StsOrganizationSynchronizationServiceTest.cs b/Tests.Unit.Core.ApplicationServices/ApplicationServices/Organizations/StsOrganizationSynchronizationServiceTest.cs index 6b5bf1b33d..70930ad974 100644 --- a/Tests.Unit.Core.ApplicationServices/ApplicationServices/Organizations/StsOrganizationSynchronizationServiceTest.cs +++ b/Tests.Unit.Core.ApplicationServices/ApplicationServices/Organizations/StsOrganizationSynchronizationServiceTest.cs @@ -29,7 +29,7 @@ public class StsOrganizationSynchronizationServiceTest : WithAutoFixture { private readonly ITestOutputHelper _testOutputHelper; private readonly Mock _authorizationContextMock; - private readonly Mock _stsOrganizationUnitService; + private readonly Mock _stsOrganizationUnitService; private readonly Mock _organizationServiceMock; private readonly StsOrganizationSynchronizationService _sut; private readonly Mock _dbControlMock; @@ -44,7 +44,7 @@ public StsOrganizationSynchronizationServiceTest(ITestOutputHelper testOutputHel { _testOutputHelper = testOutputHelper; _authorizationContextMock = new Mock(); - _stsOrganizationUnitService = new Mock(); + _stsOrganizationUnitService = new Mock(); _organizationServiceMock = new Mock(); _dbControlMock = new Mock(); _transactionManagerMock = new Mock(); diff --git a/yarn.lock b/yarn.lock index 15740d33d8..2b7f1100f3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3,24 +3,25 @@ "@babel/code-frame@^7.0.0": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" - integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== + version "7.22.13" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" + integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== dependencies: - "@babel/highlight" "^7.18.6" + "@babel/highlight" "^7.22.13" + chalk "^2.4.2" -"@babel/helper-validator-identifier@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz#9c97e30d31b2b8c72a1d08984f2ca9b574d7a076" - integrity sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g== +"@babel/helper-validator-identifier@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== +"@babel/highlight@^7.22.13": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.20.tgz#4ca92b71d80554b01427815e06f2df965b9c1f54" + integrity sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg== dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" + "@babel/helper-validator-identifier" "^7.22.20" + chalk "^2.4.2" js-tokens "^4.0.0" "@gulp-sourcemaps/identity-map@1.X": @@ -43,44 +44,44 @@ through2 "^2.0.3" "@types/angular-animate@^1.5.11": - version "1.5.11" - resolved "https://registry.yarnpkg.com/@types/angular-animate/-/angular-animate-1.5.11.tgz#17d9611f8175ab73e528a72f0d50a16891c7429a" - integrity sha512-JJL2BM9pTLz00oqXh09knxHOjKLBbMyb9k9/DNWWvQome42iMGD+R9+iKaFX6nnvmlMnhoO1wOGWvnOFHhkujg== + version "1.5.12" + resolved "https://registry.yarnpkg.com/@types/angular-animate/-/angular-animate-1.5.12.tgz#d21efb0a4e6e2cb008163a7448175793412a0f70" + integrity sha512-5yyh/ehMcBaqZ3B9DzhrLY64sQa3OfULxFjl9S/AX4Viv9xmYyGigoMu4vVmKxyL9C5K0g+JxjITVzsZ2gimHw== dependencies: "@types/angular" "*" "@types/angular-cookies@^1.8.1": - version "1.8.1" - resolved "https://registry.yarnpkg.com/@types/angular-cookies/-/angular-cookies-1.8.1.tgz#68f9825aefa8e066c25898e5d5ffd63ddfe1bd7a" - integrity sha512-wcc/YtJTSRQNFrbXMj9nW8jLKWAkY1j0NkVKtbKBqhrP4Oz0tT0/Gug/Gjks87nXERfT/+fBnLWQB+RFiceKJQ== + version "1.8.2" + resolved "https://registry.yarnpkg.com/@types/angular-cookies/-/angular-cookies-1.8.2.tgz#ac01485e9d386f76f15dd7bf455b21420383fe1d" + integrity sha512-am+AKIIPSksb7uzFaVBxFgedO+IwvN3cZvirPWFLBQHGNnldnIYlfDrNCYZDxB+Qr/2Vfksi71u3w74PsuAZjQ== dependencies: "@types/angular" "*" "@types/angular-resource@^1.5.17": - version "1.5.17" - resolved "https://registry.yarnpkg.com/@types/angular-resource/-/angular-resource-1.5.17.tgz#ad5f249a5182e80d045de8766cf0f80a2d8f486e" - integrity sha512-HPyxurb0qxkytQY/zwunMrdx/Hlb+VZ1Neiq3tL1J+HtdVvA1AgNcGTY5aonH3uqbLnKrBASdRbfvtAxT3GCXg== + version "1.5.18" + resolved "https://registry.yarnpkg.com/@types/angular-resource/-/angular-resource-1.5.18.tgz#ec9d3346fc51446567f66694a9bbc12eec2716ad" + integrity sha512-pWUnGBsyKyTv2ffZyBQ96uJq13Hhpj/AgFCE7zIKFrYybPT8/oJcSgA5Kq64NN0SlKf/bIM3x7fLgNuJq1ZvnQ== dependencies: "@types/angular" "*" "@types/angular-ui-bootstrap@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@types/angular-ui-bootstrap/-/angular-ui-bootstrap-1.0.1.tgz#ed824f8e6ab65f0e9fb059e637204935669c8070" - integrity sha512-hxr+LpMs8wPVt4wjaZat2qd+XmSf5HlwfG3wQSXebbKX4Eh16eU0pIDKc9tvqv9dHKMrqk/u+HKq7XktoiH33w== + version "1.0.4" + resolved "https://registry.yarnpkg.com/@types/angular-ui-bootstrap/-/angular-ui-bootstrap-1.0.4.tgz#0e569ac38e666e4e7cfc130242cb7c0bdc0020b9" + integrity sha512-Ei5VbSzVdcpoHWUTaHYYTT98GrwEq9tTbyKGc9+ad1OJjukqDuFr9wpweyBzZjegCDtxlEwDfWuay75kh8v5kA== dependencies: "@types/angular" "*" "@types/angular-ui-router@^1.1.41": - version "1.1.41" - resolved "https://registry.yarnpkg.com/@types/angular-ui-router/-/angular-ui-router-1.1.41.tgz#3e39ebc960551f5e5e64df7f9cb28aac1bcc058d" - integrity sha512-fVDy2lE/AWDmVgD26mmB86MeFq8tFYodrLpf5c4VFsKTkTtUteTTsjdLQsQpFHBhY5v9JbIdvLaueYiXX6MkAQ== + version "1.1.42" + resolved "https://registry.yarnpkg.com/@types/angular-ui-router/-/angular-ui-router-1.1.42.tgz#8414e411654a4bf4d26498d47263e3b5d1322619" + integrity sha512-okPJWD+fybsTO19ouuhEG4yK4Gbwlc2bwOrEeuWqGDJ54r0j9zq9GxrghXetPDaGK/eRbsj8Xe8QQ5iCNJ2AlA== dependencies: "@types/angular" "*" "@types/angular@*": - version "1.8.4" - resolved "https://registry.yarnpkg.com/@types/angular/-/angular-1.8.4.tgz#a2cc163e508389c51d4c4119ebff6b9395cec472" - integrity sha512-wPS/ncJWhyxJsndsW1B6Ta8D4mi97x1yItSu+rkLDytU3oRIh2CFAjMuJceYwFAh9+DIohndWM0QBA9OU2Hv0g== + version "1.8.6" + resolved "https://registry.yarnpkg.com/@types/angular/-/angular-1.8.6.tgz#faeb6c734dd64ef60bbd41edf3d32d2f9c9956bf" + integrity sha512-2ub0NF1vSSZ1iHp20xyGwQyc4+QScuWnE5o2sKqh6KQ5Z4rImd8GX4E2hvgKfa6yLigzugYnZo5dFz2ogGcLCg== "@types/fancy-log@1.3.0": version "1.3.0" @@ -88,9 +89,9 @@ integrity sha512-mQjDxyOM1Cpocd+vm1kZBP7smwKZ4TNokFeds9LV7OZibmPJFEzY3+xZMrKfUdNT71lv8GoCPD6upKwHxubClw== "@types/jquery@^3.5.14": - version "3.5.14" - resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.5.14.tgz#ac8e11ee591e94d4d58da602cb3a5a8320dee577" - integrity sha512-X1gtMRMbziVQkErhTQmSe2jFwwENA/Zr+PprCkF63vFq+Yt5PZ4AlKqgmeNlwgn7dhsXEK888eIW2520EpC+xg== + version "3.5.22" + resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.5.22.tgz#893273736f5695a520986c019c873b75b157f26a" + integrity sha512-ISQFeUK5GwRftLK4PVvKTWEVCxZ2BpaqBz0TWkIq5w4vGojxZP9+XkqgcPjxoqmPeew+HLyWthCBvK7GdF5NYA== dependencies: "@types/sizzle" "*" @@ -112,26 +113,26 @@ integrity sha512-qYi3YV9inU/REEfxwVcGZzbS3KG/Xs90lv0Pr+lDtuVjBPGd1A+eciXzVSaRvLify132BfcvhvEjeVahrUl0Ug== "@types/selenium-webdriver@^3.0.0": - version "3.0.20" - resolved "https://registry.yarnpkg.com/@types/selenium-webdriver/-/selenium-webdriver-3.0.20.tgz#448771a0608ebf1c86cb5885914da6311e323c3a" - integrity sha512-6d8Q5fqS9DWOXEhMDiF6/2FjyHdmP/jSTAUyeQR7QwrFeNmYyzmvGxD5aLIHL445HjWgibs0eAig+KPnbaesXA== + version "3.0.24" + resolved "https://registry.yarnpkg.com/@types/selenium-webdriver/-/selenium-webdriver-3.0.24.tgz#788aac3b3ad788339c01e586fb0fa6ab15d3ee11" + integrity sha512-PKUsOV485ZiB466i6xuhpjiASvcC6+SSZqOwU7DIMn1as8DGrATWdMvjuG7scbyxk/e1SYwAzDB2LbobLxy0Qw== "@types/sizzle@*": - version "2.3.3" - resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.3.tgz#ff5e2f1902969d305225a047c8a0fd5c915cebef" - integrity sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ== + version "2.3.4" + resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.4.tgz#cd6531924f60834fa4a1b8081f9eecf9bb1117f0" + integrity sha512-jA2llq2zNkg8HrALI7DtWzhALcVH0l7i89yhY3iBdOz6cBPeACoFq+fkQrjHA39t1hnSFOboZ7A/AY5MMZSlag== "@types/ui-select@^0.19.1": - version "0.19.1" - resolved "https://registry.yarnpkg.com/@types/ui-select/-/ui-select-0.19.1.tgz#02a4e003e5cc35c7a9c5d2a1e8f187ac26856712" - integrity sha512-ya69uuEG3Uc2R6dHbSgQu/p7wjD7omHEARC66vv65BZwQJG2V1P9BXNUTw1Cde5zvv8c/w1TdoJGMtW4uuYBGQ== + version "0.19.2" + resolved "https://registry.yarnpkg.com/@types/ui-select/-/ui-select-0.19.2.tgz#b697ef639cc26cf7dabc9e91c19f5e993ed55f5d" + integrity sha512-khRpsJ1bfNonDwc8HYgNckOGKll4Bdwh0H2gp+l8hWBpwAgozuJwOzEAzl4atqGOfaZO1IdoplpStO05TP6K+A== dependencies: "@types/angular" "*" "@xmldom/xmldom@^0.8.5": - version "0.8.6" - resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.6.tgz#8a1524eb5bd5e965c1e3735476f0262469f71440" - integrity sha512-uRjjusqpoqfmRkTaNuLJ2VohVr67Q5YwDATW3VU7PfzTj6IRaihGrYI7zckGZjxQPBIp63nfvJbM+Yu5ICh0Bg== + version "0.8.10" + resolved "https://registry.yarnpkg.com/@xmldom/xmldom/-/xmldom-0.8.10.tgz#a1337ca426aa61cef9fe15b5b28e340a72f6fa99" + integrity sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw== accord@^0.29.0: version "0.29.0" @@ -173,10 +174,10 @@ add-matchers@0.6.2: resolved "https://registry.yarnpkg.com/add-matchers/-/add-matchers-0.6.2.tgz#faeb2fa9380228c1b0da5f21a655c69304dd2011" integrity sha512-hVO2wodMei9RF00qe+506MoeJ/NEOdCMEkSJ12+fC3hx/5Z4zmhNiP92nJEF6XhmXokeB0hOtuQrjHCx2vmXrQ== -adm-zip@^0.4.9: - version "0.4.16" - resolved "https://registry.yarnpkg.com/adm-zip/-/adm-zip-0.4.16.tgz#cf4c508fdffab02c269cbc7f471a875f05570365" - integrity sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg== +adm-zip@^0.5.2: + version "0.5.10" + resolved "https://registry.yarnpkg.com/adm-zip/-/adm-zip-0.5.10.tgz#4a51d5ab544b1f5ce51e1b9043139b639afff45b" + integrity sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ== agent-base@^4.3.0: version "4.3.0" @@ -535,9 +536,9 @@ async-done@^1.2.0, async-done@^1.2.2: stream-exhaust "^1.0.1" async-each@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" - integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== + version "1.0.6" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.6.tgz#52f1d9403818c179b7561e11a5d1b77eb2160e77" + integrity sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg== async-settle@^1.0.0: version "1.0.0" @@ -569,9 +570,9 @@ aws-sign2@~0.7.0: integrity sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA== aws4@^1.8.0: - version "1.11.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.11.0.tgz#d61f46d83b2519250e2784daf5b09479a8b41c59" - integrity sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA== + version "1.12.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.12.0.tgz#ce1c9d143389679e253b314241ea9aa5cec980d3" + integrity sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg== bach@^1.0.0: version "1.2.0" @@ -669,9 +670,9 @@ browserstack@^1.5.1: https-proxy-agent "^2.2.1" buffer-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" - integrity sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ== + version "1.0.1" + resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.1.tgz#2f7651be5b1b3f057fcd6e7ee16cf34767077d90" + integrity sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg== buffer-from@^1.0.0: version "1.1.2" @@ -750,7 +751,7 @@ chalk@^1.1.1, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.0: +chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -976,11 +977,9 @@ concat-with-sourcemaps@^1.0.0: source-map "^0.6.1" convert-source-map@1.X, convert-source-map@^1.5.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" - integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== - dependencies: - safe-buffer "~5.1.1" + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== copy-anything@^2.0.1: version "2.0.6" @@ -1089,9 +1088,9 @@ decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.2.0: integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== decode-uri-component@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" - integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og== + version "0.2.2" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" + integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== deep-is@~0.1.3: version "0.1.4" @@ -1110,11 +1109,21 @@ default-resolution@^2.0.0: resolved "https://registry.yarnpkg.com/default-resolution/-/default-resolution-2.0.0.tgz#bcb82baa72ad79b426a76732f1a81ad6df26d684" integrity sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ== +define-data-property@^1.0.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.1.tgz#c35f7cd0ab09883480d12ac5cb213715587800b3" + integrity sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ== + dependencies: + get-intrinsic "^1.2.1" + gopd "^1.0.1" + has-property-descriptors "^1.0.0" + define-properties@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" - integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== + version "1.2.1" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== dependencies: + define-data-property "^1.0.1" has-property-descriptors "^1.0.0" object-keys "^1.1.1" @@ -1373,9 +1382,9 @@ esprima@^4.0.0: integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== esquery@^1.0.1: - version "1.4.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" - integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + version "1.5.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== dependencies: estraverse "^5.1.0" @@ -1741,9 +1750,9 @@ fsevents@^1.2.7: nan "^2.12.1" function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== functional-red-black-tree@^1.0.1: version "1.0.1" @@ -1760,13 +1769,14 @@ get-caller-file@^2.0.1: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz#336975123e05ad0b7ba41f152ee4aadbea6cf598" - integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA== +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== dependencies: function-bind "^1.1.1" has "^1.0.3" + has-proto "^1.0.1" has-symbols "^1.0.3" get-stream@^4.0.0: @@ -1890,10 +1900,17 @@ glogg@^1.0.0: dependencies: sparkles "^1.0.0" +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + graceful-fs@4.X, graceful-fs@^4.0.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: - version "4.2.10" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== gulp-clean-css@^4.2.0: version "4.3.0" @@ -2102,6 +2119,11 @@ has-property-descriptors@^1.0.0: dependencies: get-intrinsic "^1.1.1" +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + has-symbols@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" @@ -2139,11 +2161,9 @@ has-values@^1.0.0: kind-of "^4.0.0" has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" + version "1.0.4" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.4.tgz#2eb2860e000011dae4f1406a86fe80e530fb2ec6" + integrity sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ== homedir-polyfill@^1.0.1: version "1.0.3" @@ -2310,10 +2330,10 @@ is-buffer@^1.1.5: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== -is-core-module@^2.9.0: - version "2.10.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" - integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== +is-core-module@^2.13.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db" + integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ== dependencies: has "^1.0.3" @@ -2996,9 +3016,9 @@ minimatch@^3.0.4, minimatch@^3.1.1: brace-expansion "^1.1.7" minimist@^1.2.0, minimist@^1.2.6: - version "1.2.6" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" - integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== mixin-deep@^1.2.0: version "1.3.2" @@ -3056,9 +3076,9 @@ mute-stream@0.0.8: integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== nan@^2.12.1: - version "2.16.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.16.0.tgz#664f43e45460fb98faf00edca0bb0d7b8dce7916" - integrity sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA== + version "2.18.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.18.0.tgz#26a6faae7ffbeb293a39660e88a76b82e30b7554" + integrity sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w== nanomatch@^1.2.9: version "1.2.13" @@ -3604,9 +3624,9 @@ pumpify@^1.3.5: pump "^2.0.0" punycode@^2.1.0, punycode@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" - integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + version "2.3.0" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" + integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== q@1.4.1: version "1.4.1" @@ -3641,18 +3661,18 @@ read-pkg@^1.0.0: path-type "^1.0.0" "readable-stream@2 || 3": - version "3.6.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" - integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + version "3.6.2" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" + integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== dependencies: inherits "^2.0.3" string_decoder "^1.1.1" util-deprecate "^1.0.1" readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: - version "2.3.7" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" - integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== + version "2.3.8" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" + integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== dependencies: core-util-is "~1.0.0" inherits "~2.0.3" @@ -3814,11 +3834,11 @@ resolve-url@^0.2.1: integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.3.2, resolve@^1.4.0, resolve@^1.5.0: - version "1.22.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== dependencies: - is-core-module "^2.9.0" + is-core-module "^2.13.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" @@ -3898,9 +3918,9 @@ saucelabs@^1.5.0: https-proxy-agent "^2.2.1" sax@>=0.6.0: - version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + version "1.3.0" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.3.0.tgz#a5dbe77db3be05c9d1ee7785dbd3ea9de51593d0" + integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA== select2-bootstrap-css@^1.4.6: version "1.4.6" @@ -3930,14 +3950,14 @@ semver-greatest-satisfied-range@^1.1.0: sver-compat "^1.5.0" "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5.0, semver@^5.6.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== semver@^6.1.2: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== set-blocking@^2.0.0: version "2.0.0" @@ -4059,9 +4079,9 @@ sparkles@^1.0.0: integrity sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw== spdx-correct@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" - integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + version "3.2.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" + integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== dependencies: spdx-expression-parse "^3.0.0" spdx-license-ids "^3.0.0" @@ -4080,9 +4100,9 @@ spdx-expression-parse@^3.0.0: spdx-license-ids "^3.0.0" spdx-license-ids@^3.0.0: - version "3.0.12" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" - integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + version "3.0.16" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz#a14f64e0954f6e25cc6587bd4f392522db0d998f" + integrity sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw== split-string@^3.0.1, split-string@^3.0.2: version "3.1.0" @@ -4514,9 +4534,9 @@ uglify-js@^2.8.22: uglify-to-browserify "~1.0.0" uglify-js@^3.0.5: - version "3.17.0" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.0.tgz#55bd6e9d19ce5eef0d5ad17cd1f587d85b180a85" - integrity sha512-aTeNPVmgIMPpm1cxXr2Q/nEbvkmV8yq66F3om7X3P/cvOXQ0TMQ64Wk63iyT1gPlmdmGzjGpyLh1f3y8MZWXGg== + version "3.17.4" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.17.4.tgz#61678cf5fa3f5b7eb789bb345df29afb8257c22c" + integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g== uglify-to-browserify@~1.0.0: version "1.0.2" @@ -4620,9 +4640,9 @@ uuid@^3.3.2: integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== v8-compile-cache@^2.0.3: - version "2.3.0" - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" - integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + version "2.4.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz#cdada8bec61e15865f05d097c5f4fd30e94dc128" + integrity sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw== v8flags@^3.2.0: version "3.2.0" @@ -4717,11 +4737,11 @@ webdriver-js-extender@2.1.0: selenium-webdriver "^3.0.1" webdriver-manager@^12.0.6, webdriver-manager@^12.1.7: - version "12.1.8" - resolved "https://registry.yarnpkg.com/webdriver-manager/-/webdriver-manager-12.1.8.tgz#5e70e73eaaf53a0767d5745270addafbc5905fd4" - integrity sha512-qJR36SXG2VwKugPcdwhaqcLQOD7r8P2Xiv9sfNbfZrKBnX243iAkOueX1yAmeNgIKhJ3YAT/F2gq6IiEZzahsg== + version "12.1.9" + resolved "https://registry.yarnpkg.com/webdriver-manager/-/webdriver-manager-12.1.9.tgz#8d83543b92711b7217b39fef4cda958a4703d2df" + integrity sha512-Yl113uKm8z4m/KMUVWHq1Sjtla2uxEBtx2Ue3AmIlnlPAKloDn/Lvmy6pqWCUersVISpdMeVpAaGbNnvMuT2LQ== dependencies: - adm-zip "^0.4.9" + adm-zip "^0.5.2" chalk "^1.1.1" del "^2.2.0" glob "^7.0.3" @@ -4744,9 +4764,9 @@ which-module@^1.0.0: integrity sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ== which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q== + version "2.0.1" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" + integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== which@^1.2.14, which@^1.2.9: version "1.3.1" @@ -4761,9 +4781,9 @@ window-size@0.1.0: integrity sha512-1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg== word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + version "1.2.5" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" + integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== wordwrap@0.0.2: version "0.0.2"