diff --git a/Core.ApplicationServices/SSO/Factories/ISsoStateFactory.cs b/Core.ApplicationServices/SSO/Factories/ISsoStateFactory.cs index 88643e6f85..60daa0928c 100644 --- a/Core.ApplicationServices/SSO/Factories/ISsoStateFactory.cs +++ b/Core.ApplicationServices/SSO/Factories/ISsoStateFactory.cs @@ -9,7 +9,7 @@ namespace Core.ApplicationServices.SSO.Factories public interface ISsoStateFactory { AbstractState CreateInitialState(); - AbstractState CreatePrivilegeVerifiedState(Guid userExternalUuid); + AbstractState CreatePrivilegeVerifiedState(Guid userExternalUuid, string cvrNumber); AbstractState CreateUserLoggedIn(User valueUser); AbstractState CreateUserIdentifiedState(User user, StsBrugerInfo stsBrugerInfo); AbstractState CreateAuthorizingUserState(User user, Organization organization); diff --git a/Core.ApplicationServices/SSO/Factories/SsoStateFactory.cs b/Core.ApplicationServices/SSO/Factories/SsoStateFactory.cs index f37e01a387..04b457be28 100644 --- a/Core.ApplicationServices/SSO/Factories/SsoStateFactory.cs +++ b/Core.ApplicationServices/SSO/Factories/SsoStateFactory.cs @@ -60,12 +60,12 @@ public AbstractState CreateInitialState() { throw new InvalidOperationException("Error: No SAML state"); } - return new InitialFlowState(_configuration, Saml20IdentityParser.CreateFrom(_samlState.Value), this); + return new InitialFlowState(_configuration, Saml20IdentityParser.CreateFrom(_samlState.Value), this, _logger); } - public AbstractState CreatePrivilegeVerifiedState(Guid userExternalUuid) + public AbstractState CreatePrivilegeVerifiedState(Guid userExternalUuid, string cvrNumber) { - return new PrivilegeVerifiedState(userExternalUuid, _userRepository, _infoService, _ssoUserIdentityRepository, this); + return new PrivilegeVerifiedState(userExternalUuid, cvrNumber, _userRepository, _infoService, _ssoUserIdentityRepository, this); } public AbstractState CreateUserLoggedIn(User user) @@ -75,12 +75,12 @@ public AbstractState CreateUserLoggedIn(User user) public AbstractState CreateUserIdentifiedState(User user, StsBrugerInfo stsBrugerInfo) { - return new UserIdentifiedState(user, stsBrugerInfo, _ssoUserIdentityRepository, _ssoOrganizationIdentityRepository, _organizationRepository,this,_logger); + return new UserIdentifiedState(user, stsBrugerInfo, _ssoUserIdentityRepository, _ssoOrganizationIdentityRepository, _organizationRepository, this, _logger); } public AbstractState CreateAuthorizingUserState(User user, Organization organization) { - return new AuthorizingUserState(user, organization, _organizationRoleService,this); + return new AuthorizingUserState(user, organization, _organizationRoleService, this); } public AbstractState CreateAuthorizingUserFromUnknownOrgState(User user) @@ -90,7 +90,7 @@ public AbstractState CreateAuthorizingUserFromUnknownOrgState(User user) public AbstractState CreateAssigningRoleState(User user, Organization ssoOrganization) { - return new AssigningRoleState(user,ssoOrganization,_organizationRoleService,this); + return new AssigningRoleState(user, ssoOrganization, _organizationRoleService, this); } public AbstractState CreateFirstTimeUserNotFoundState(StsBrugerInfo stsBrugerInfo) diff --git a/Core.ApplicationServices/SSO/Model/Saml20IdentityParser.cs b/Core.ApplicationServices/SSO/Model/Saml20IdentityParser.cs index 9023050c02..2b918f8bad 100644 --- a/Core.ApplicationServices/SSO/Model/Saml20IdentityParser.cs +++ b/Core.ApplicationServices/SSO/Model/Saml20IdentityParser.cs @@ -18,6 +18,23 @@ public static Saml20IdentityParser CreateFrom(ISaml20Identity sourceIdentity) return new Saml20IdentityParser(new Saml20IdentityNavigator(sourceIdentity)); } + public Maybe MatchCvrNumber() + { + var cvrNumberAttributes = _navigator + .GetAttribute(StsAdgangsStyringConstants.Attributes.CvrNumber) + .Select(x => x.AttributeValue) + .GetValueOrFallback(new string[0]); + + foreach (var cvrNumber in cvrNumberAttributes) + { + if (!string.IsNullOrEmpty(cvrNumber)) + { + return cvrNumber; + } + } + return Maybe.None; + } + public Maybe MatchPrivilege(string privilegeId) { return diff --git a/Core.ApplicationServices/SSO/State/AuthorizingUserState.cs b/Core.ApplicationServices/SSO/State/AuthorizingUserState.cs index ac1738a17d..98741c4b5b 100644 --- a/Core.ApplicationServices/SSO/State/AuthorizingUserState.cs +++ b/Core.ApplicationServices/SSO/State/AuthorizingUserState.cs @@ -13,7 +13,7 @@ public class AuthorizingUserState : AbstractState private readonly IOrganizationRoleService _organizationRoleService; private readonly ISsoStateFactory _ssoStateFactory; - public AuthorizingUserState(User user, Organization ssoOrganization, IOrganizationRoleService organizationRoleService,ISsoStateFactory ssoStateFactory) + public AuthorizingUserState(User user, Organization ssoOrganization, IOrganizationRoleService organizationRoleService, ISsoStateFactory ssoStateFactory) { _user = user; _ssoOrganization = ssoOrganization; @@ -25,14 +25,14 @@ public override void Handle(FlowEvent @event, FlowContext context) { if (@event.Equals(FlowEvent.OrganizationFound)) { - var rolesInOrganization = _organizationRoleService.GetRolesInOrganization(_user,_ssoOrganization.Id); + var rolesInOrganization = _organizationRoleService.GetRolesInOrganization(_user, _ssoOrganization.Id); if (rolesInOrganization.Any()) { - context.TransitionTo(_ssoStateFactory.CreateUserLoggedIn(_user),_=>_.HandleUserHasRoleInOrganization()); + context.TransitionTo(_ssoStateFactory.CreateUserLoggedIn(_user), _ => _.HandleUserHasRoleInOrganization()); } else { - context.TransitionTo(_ssoStateFactory.CreateAssigningRoleState(_user,_ssoOrganization),_=>_.HandleUserHasNoRoleInOrganization()); + context.TransitionTo(_ssoStateFactory.CreateAssigningRoleState(_user, _ssoOrganization), _ => _.HandleUserHasNoRoleInOrganization()); } } } diff --git a/Core.ApplicationServices/SSO/State/FirstTimeUserNotFoundState.cs b/Core.ApplicationServices/SSO/State/FirstTimeUserNotFoundState.cs index fc9eb53b49..10b4efe734 100644 --- a/Core.ApplicationServices/SSO/State/FirstTimeUserNotFoundState.cs +++ b/Core.ApplicationServices/SSO/State/FirstTimeUserNotFoundState.cs @@ -68,7 +68,7 @@ private User CreateAutoProvisonedUser(Organization organizationByCvrResult) user.Name = _stsBrugerInfo.FirstName; user.LastName = _stsBrugerInfo.LastName; user.DefaultOrganization = organizationByCvrResult; - user.Salt = string.Format("{0:N}{0:N}", Guid.NewGuid()); + user.Salt = _cryptoService.Encrypt($"{Guid.NewGuid():N}{Guid.NewGuid():N}"); user.Password = _cryptoService.Encrypt(string.Empty); _userRepository.Save(); return user; diff --git a/Core.ApplicationServices/SSO/State/FlowContext.cs b/Core.ApplicationServices/SSO/State/FlowContext.cs index a50a37aef1..10bdbaa6d5 100644 --- a/Core.ApplicationServices/SSO/State/FlowContext.cs +++ b/Core.ApplicationServices/SSO/State/FlowContext.cs @@ -1,5 +1,4 @@ using System; -using NotImplementedException = System.NotImplementedException; namespace Core.ApplicationServices.SSO.State { diff --git a/Core.ApplicationServices/SSO/State/InitialFlowState.cs b/Core.ApplicationServices/SSO/State/InitialFlowState.cs index 57f62df0e8..8b06ca9b51 100644 --- a/Core.ApplicationServices/SSO/State/InitialFlowState.cs +++ b/Core.ApplicationServices/SSO/State/InitialFlowState.cs @@ -2,6 +2,7 @@ using Core.ApplicationServices.SSO.Factories; using Core.ApplicationServices.SSO.Model; using Core.DomainModel.Result; +using Serilog; namespace Core.ApplicationServices.SSO.State { @@ -10,14 +11,17 @@ public class InitialFlowState : AbstractState private readonly string _samlKitosReadAccessRoleIdentifier; private readonly Saml20IdentityParser _parser; private readonly ISsoStateFactory _stateFactory; + private readonly ILogger _logger; public InitialFlowState( - SsoFlowConfiguration configuration, + SsoFlowConfiguration configuration, Saml20IdentityParser parser, - ISsoStateFactory stateFactory) + ISsoStateFactory stateFactory, + ILogger logger) { _parser = parser; _stateFactory = stateFactory; + _logger = logger; _samlKitosReadAccessRoleIdentifier = $"{configuration.PrivilegePrefix}/roles/usersystemrole/readaccess/1"; } @@ -26,10 +30,20 @@ public override void Handle(FlowEvent @event, FlowContext context) if (@event.Equals(FlowEvent.LoginCompleted)) { var externalUserUuid = GetUserExternalUuid(); - if (externalUserUuid.HasValue && CurrentUserHasKitosPrivilege()) + var cvrNumber = _parser.MatchCvrNumber(); + if (externalUserUuid.IsNone) { - context.TransitionTo(_stateFactory.CreatePrivilegeVerifiedState(externalUserUuid.Value), - _ => _.HandleUserPrivilegeVerified()); + _logger.Error("No external UUID passed from STS Adgangsstyring"); + context.TransitionTo(_stateFactory.CreateErrorState(), _ => _.HandleUnknownError()); + } + else if (cvrNumber.IsNone) + { + _logger.Error("CVR number not provided from STS Adgangsstyring"); + context.TransitionTo(_stateFactory.CreateErrorState(), _ => _.HandleUnknownError()); + } + else if (CurrentUserHasKitosPrivilege()) + { + context.TransitionTo(_stateFactory.CreatePrivilegeVerifiedState(externalUserUuid.Value, cvrNumber.Value), _ => _.HandleUserPrivilegeVerified()); } else { diff --git a/Core.ApplicationServices/SSO/State/PrivilegeVerifiedState.cs b/Core.ApplicationServices/SSO/State/PrivilegeVerifiedState.cs index 25c2e1f6bb..9caf261831 100644 --- a/Core.ApplicationServices/SSO/State/PrivilegeVerifiedState.cs +++ b/Core.ApplicationServices/SSO/State/PrivilegeVerifiedState.cs @@ -11,18 +11,22 @@ namespace Core.ApplicationServices.SSO.State public class PrivilegeVerifiedState : AbstractState { private readonly Guid _userUuid; + private readonly string _cvrNumber; private readonly IStsBrugerInfoService _stsBrugerInfoService; private readonly ISsoUserIdentityRepository _ssoUserIdentityRepository; private readonly ISsoStateFactory _ssoStateFactory; private readonly IUserRepository _userRepository; - public PrivilegeVerifiedState(Guid userUuid, + public PrivilegeVerifiedState( + Guid userUuid, + string cvrNumber, IUserRepository userRepository, IStsBrugerInfoService stsBrugerInfoService, ISsoUserIdentityRepository ssoUserIdentityRepository, ISsoStateFactory ssoStateFactory) { _userUuid = userUuid; + _cvrNumber = cvrNumber; _stsBrugerInfoService = stsBrugerInfoService; _ssoUserIdentityRepository = ssoUserIdentityRepository; _userRepository = userRepository; @@ -44,7 +48,7 @@ public override void Handle(FlowEvent @event, FlowContext context) } else { - var stsBrugerInfo = _stsBrugerInfoService.GetStsBrugerInfo(_userUuid); + var stsBrugerInfo = _stsBrugerInfoService.GetStsBrugerInfo(_userUuid, _cvrNumber); if (!stsBrugerInfo.HasValue) { context.TransitionTo(_ssoStateFactory.CreateErrorState(), _ => _.HandleUnableToResolveUserInStsOrganisation()); @@ -58,7 +62,7 @@ public override void Handle(FlowEvent @event, FlowContext context) } else // Try to find the user by email { - var stsBrugerInfo = _stsBrugerInfoService.GetStsBrugerInfo(_userUuid); + var stsBrugerInfo = _stsBrugerInfoService.GetStsBrugerInfo(_userUuid, _cvrNumber); if (!stsBrugerInfo.HasValue) { context.TransitionTo(_ssoStateFactory.CreateErrorState(), _ => _.HandleUnableToResolveUserInStsOrganisation()); diff --git a/Core.ApplicationServices/SSO/State/UserIdentifiedState.cs b/Core.ApplicationServices/SSO/State/UserIdentifiedState.cs index dab392839f..e262d75a18 100644 --- a/Core.ApplicationServices/SSO/State/UserIdentifiedState.cs +++ b/Core.ApplicationServices/SSO/State/UserIdentifiedState.cs @@ -72,7 +72,7 @@ private void HandleUserWithSsoIdentity(FlowContext context) } else { - //If not sso binding exists for the organization, try to create one by finding the org by cvr and adding the sso relation + //If no sso binding exists for the organization, try to create one by finding the org by cvr and adding the sso relation var organizationByCvrResult = _organizationRepository.GetByCvr(_externalUser.MunicipalityCvr); if (organizationByCvrResult.HasValue) { diff --git a/Core.ApplicationServices/SSO/StsAdgangsStyringConstants.cs b/Core.ApplicationServices/SSO/StsAdgangsStyringConstants.cs index 09ffa9480e..341f30f1c5 100644 --- a/Core.ApplicationServices/SSO/StsAdgangsStyringConstants.cs +++ b/Core.ApplicationServices/SSO/StsAdgangsStyringConstants.cs @@ -5,6 +5,7 @@ public static class StsAdgangsStyringConstants public static class Attributes { public const string PrivilegeKey = "dk:gov:saml:attribute:Privileges_intermediate"; + public const string CvrNumber = "dk:gov:saml:attribute:CvrNumberIdentifier"; } } } diff --git a/Core.DomainModel/Result/Maybe.cs b/Core.DomainModel/Result/Maybe.cs index 072035563b..990d5a931b 100644 --- a/Core.DomainModel/Result/Maybe.cs +++ b/Core.DomainModel/Result/Maybe.cs @@ -51,7 +51,7 @@ public Maybe Select(Func selector) throw new ArgumentNullException(nameof(selector)); return HasValue ? - Maybe.Some(selector(Value)) : + selector(Value).FromNullable() : Maybe.None; } diff --git a/Core.DomainServices/Core.DomainServices.csproj b/Core.DomainServices/Core.DomainServices.csproj index f5a2b8bd9e..be36c9a67f 100644 --- a/Core.DomainServices/Core.DomainServices.csproj +++ b/Core.DomainServices/Core.DomainServices.csproj @@ -108,7 +108,6 @@ - @@ -118,7 +117,6 @@ - diff --git a/Core.DomainServices/SSO/IStsBrugerInfoService.cs b/Core.DomainServices/SSO/IStsBrugerInfoService.cs index 8b8e66c7ab..634fb9824e 100644 --- a/Core.DomainServices/SSO/IStsBrugerInfoService.cs +++ b/Core.DomainServices/SSO/IStsBrugerInfoService.cs @@ -5,6 +5,6 @@ namespace Core.DomainServices.SSO { public interface IStsBrugerInfoService { - Maybe GetStsBrugerInfo(Guid uuid); + Maybe GetStsBrugerInfo(Guid uuid, string cvrNumber); } } \ No newline at end of file diff --git a/Core.DomainServices/SSO/StsBrugerInfoService.cs b/Core.DomainServices/SSO/StsBrugerInfoService.cs index 4e4919a011..5b030b7cf0 100644 --- a/Core.DomainServices/SSO/StsBrugerInfoService.cs +++ b/Core.DomainServices/SSO/StsBrugerInfoService.cs @@ -4,6 +4,7 @@ using System.Security.Cryptography.X509Certificates; using System.ServiceModel; using Core.DomainModel.Result; +using Infrastructure.Soap.STSBruger; using Serilog; namespace Core.DomainServices.SSO @@ -12,14 +13,12 @@ public class StsBrugerInfoService : IStsBrugerInfoService { private readonly ILogger _logger; private const string EmailTypeIdentifier = StsOrganisationConstants.UserProperties.Email; + private const string StsStandardNotFoundResultCode = "44"; private readonly string _urlServicePlatformBrugerService; private readonly string _urlServicePlatformAdresseService; - private readonly string _urlServicePlatformOrganisationService; - private readonly string _urlServicePlatformVirksomhedService; private readonly string _urlServicePlatformPersonService; private readonly string _certificateThumbprint; - private readonly string _authorizedMunicipalityCvr; public StsBrugerInfoService(StsOrganisationIntegrationConfiguration configuration, ILogger logger) { @@ -27,15 +26,12 @@ public StsBrugerInfoService(StsOrganisationIntegrationConfiguration configuratio _certificateThumbprint = configuration.CertificateThumbprint; _urlServicePlatformBrugerService = $"https://{configuration.EndpointHost}/service/Organisation/Bruger/5"; _urlServicePlatformAdresseService = $"https://{configuration.EndpointHost}/service/Organisation/Adresse/5"; - _urlServicePlatformOrganisationService = $"https://{configuration.EndpointHost}/service/Organisation/Organisation/5"; - _urlServicePlatformVirksomhedService = $"https://{configuration.EndpointHost}/service/Organisation/Virksomhed/5"; _urlServicePlatformPersonService = $"https://{configuration.EndpointHost}/service/Organisation/Person/5"; - _authorizedMunicipalityCvr = configuration.AuthorizedMunicipalityCvr; } - public Maybe GetStsBrugerInfo(Guid uuid) + public Maybe GetStsBrugerInfo(Guid uuid, string cvrNumber) { - var brugerInfo = CollectStsBrugerInformationFromUuid(uuid); + var brugerInfo = CollectStsBrugerInformationFromUuid(uuid, cvrNumber); if (brugerInfo.Failed) { _logger.Error("Failed to resolve UUIDS '{error}'", brugerInfo.Error); @@ -43,163 +39,219 @@ public Maybe GetStsBrugerInfo(Guid uuid) } var (emailAdresseUuid, organisationUuid, personUuid) = brugerInfo.Value; - var emailsResult = GetStsAdresseEmailFromUuid(emailAdresseUuid); + var emailsResult = GetStsAdresseEmailFromUuid(emailAdresseUuid, cvrNumber); if (emailsResult.Failed) { _logger.Error("Failed to resolve Emails '{error}'", emailsResult.Error); return Maybe.None; } - var personData = GetStsPersonFromUuid(personUuid); + var personData = GetStsPersonFromUuid(personUuid, cvrNumber); if (personData.Failed) { _logger.Error("Failed to resolve Person '{error}'", personData.Error); return Maybe.None; } - return - GetStsVirksomhedFromUuid(organisationUuid) - .Select(GetStsBrugerMunicipalityCvrFromUuid) - .Match - ( - onSuccess: municipalityCvr => - new StsBrugerInfo( - uuid, - emailsResult.Value, - Guid.Parse(organisationUuid), - municipalityCvr, - personData.Value.FirstName, - personData.Value.LastName), - onFailure: error => - { - _logger.Error("Failed to resolve CVR '{error}'", error); - return Maybe.None; - } - ); + return new StsBrugerInfo( + uuid, + emailsResult.Value, + Guid.Parse(organisationUuid), + cvrNumber, + personData.Value.FirstName, + personData.Value.LastName); } - private Result<(string emailAdresseUuid, string organisationUuid, string personUuid), string> CollectStsBrugerInformationFromUuid(Guid uuid) + private Result<(string emailAdresseUuid, string organisationUuid, string personUuid), string> CollectStsBrugerInformationFromUuid(Guid uuid, string cvrNumber) { using (var clientCertificate = GetClientCertificate(_certificateThumbprint)) { var client = StsBrugerHelpers.CreateBrugerPortTypeClient(CreateHttpBinding(), _urlServicePlatformBrugerService, clientCertificate); - var laesRequest = StsBrugerHelpers.CreateStsBrugerLaesRequest(_authorizedMunicipalityCvr, uuid); + var laesRequest = StsBrugerHelpers.CreateStsBrugerLaesRequest(cvrNumber, uuid); var brugerPortType = client.ChannelFactory.CreateChannel(); - var laesResponse = brugerPortType.laes(laesRequest); - foreach (var registreringType1 in laesResponse.LaesResponse1.LaesOutput.FiltreretOejebliksbillede.Registrering) + var laesResponseResult = brugerPortType.laes(laesRequest); + + if (laesResponseResult == null) + return $"Failed to fetch data from STS Bruger from uuid {uuid}"; + + var stdOutput = laesResponseResult.LaesResponse1?.LaesOutput?.StandardRetur; + var returnCode = stdOutput?.StatusKode ?? "unknown"; + var errorCode = stdOutput?.FejlbeskedTekst ?? string.Empty; + + if (returnCode == StsStandardNotFoundResultCode) + return $"Requested user '{uuid}' from cvr '{cvrNumber}' was not found. STS Bruger endpoint returned '{returnCode}:{errorCode}'"; + + var registrations = + laesResponseResult + .LaesResponse1 + ?.LaesOutput + ?.FiltreretOejebliksbillede + ?.Registrering + ?.ToList() ?? new List(); + + if (registrations.Any() == false) + return $"No STS Bruger registrations from UUID {uuid}"; + + foreach (var registreringType1 in registrations) { if (registreringType1.IsStsBrugerObsolete()) { + //User info obsolete, go to next registration + continue; + } + + var organizationUuid = + registreringType1 + .RelationListe + ?.Tilhoerer + ?.ReferenceID + ?.Item; + + if (organizationUuid == null) + { + //No organization uuid continue; } + string emailUuid = null; + var adresses = registreringType1 + .RelationListe + ?.Adresser + ?.ToList() ?? new List(); - var organizationUuid = registreringType1.RelationListe.Tilhoerer.ReferenceID.Item; - var emailUuid = string.Empty; - foreach (var adresse in registreringType1.RelationListe.Adresser) + foreach (var adresse in adresses) { - if (EmailTypeIdentifier.Equals(adresse.Rolle.Item)) + var emailField = adresse.Rolle?.Item ?? string.Empty; + + if (EmailTypeIdentifier.Equals(emailField)) { - emailUuid = adresse.ReferenceID.Item; + emailUuid = adresse.ReferenceID?.Item; + + if (emailUuid == null) + { + //No uuid provided + continue; + } break; } } - var lastKnownPerson = registreringType1.RelationListe.TilknyttedePersoner.OrderByDescending(a => a.Virkning.TilTidspunkt).First(); - var personUuid = lastKnownPerson.ReferenceID.Item; + if (emailUuid == null) + { + //Email UUID could not be found - go to the next + continue; + } + + var personUuid = registreringType1 + .RelationListe + ?.TilknyttedePersoner + ?.OrderByDescending(p => p.Virkning.TilTidspunkt) + ?.FirstOrDefault() + ?.ReferenceID + ?.Item; + + + if (personUuid == null) + { + //Person UUID could not be found, bail out + continue; + } return (emailUuid, organizationUuid, personUuid); } - return "Unable to resolve email and organization UUID"; + return $"Unable to resolve email and organization UUID from uuid {uuid}"; } } - private Result, string> GetStsAdresseEmailFromUuid(string emailAdresseUuid) + private Result, string> GetStsAdresseEmailFromUuid(string emailAdresseUuid, string cvrNumber) { using (var clientCertificate = GetClientCertificate(_certificateThumbprint)) { var client = StsAdresseHelpers.CreateAdressePortTypeClient(CreateHttpBinding(), _urlServicePlatformAdresseService, clientCertificate); - var laesRequest = StsAdresseHelpers.CreateStsAdresseLaesRequest(_authorizedMunicipalityCvr, emailAdresseUuid); + var laesRequest = StsAdresseHelpers.CreateStsAdresseLaesRequest(cvrNumber, emailAdresseUuid); var adressePortType = client.ChannelFactory.CreateChannel(); var laesResponse = adressePortType.laes(laesRequest); - var registreringType1s = laesResponse.LaesResponse1.LaesOutput.FiltreretOejebliksbillede.Registrering; - var result = new List(); - foreach (var registreringType1 in registreringType1s) - { - if (registreringType1.IsStsAdresseObsolete()) - { - continue; - } - var latest = registreringType1.AttributListe.OrderByDescending(a => a.Virkning.TilTidspunkt).First(); - result.Add(latest.AdresseTekst); - } + if (laesResponse == null) + return $"Failed to read STS Adresse from emailAdresseUUID {emailAdresseUuid}"; - if (result.Any()) - return result; + var stdOutput = laesResponse.LaesResponse1?.LaesOutput?.StandardRetur; + var returnCode = stdOutput?.StatusKode ?? "unknown"; + var errorCode = stdOutput?.FejlbeskedTekst ?? string.Empty; - return "No email addresses found"; - } - } + if (returnCode == StsStandardNotFoundResultCode) + return $"Requested email address '{emailAdresseUuid}' from cvr '{cvrNumber}' was not found. STS Adresse endpoint returned '{returnCode}:{errorCode}'"; - private Result GetStsVirksomhedFromUuid(string organisationUuid) - { - using (var clientCertificate = GetClientCertificate(_certificateThumbprint)) - { - var client = StsOrganisationHelpers.CreateOrganisationPortTypeClient(CreateHttpBinding(), - _urlServicePlatformOrganisationService, clientCertificate); - var laesRequest = StsOrganisationHelpers.CreateStsOrganisationLaesRequest(_authorizedMunicipalityCvr, organisationUuid); - var organisationPortType = client.ChannelFactory.CreateChannel(); - var laesResponse = organisationPortType.laes(laesRequest); - var registreringType1s = laesResponse.LaesResponse1.LaesOutput.FiltreretOejebliksbillede.Registrering; + var registreringType1s = + laesResponse + .LaesResponse1 + ?.LaesOutput + ?.FiltreretOejebliksbillede + ?.Registrering ?? new Infrastructure.Soap.STSAdresse.RegistreringType1[0]; + + if (registreringType1s.Any() == false) + return $"No registrations from laesResponse for emailAdresseUuid:{emailAdresseUuid}"; + + var result = new List(); foreach (var registreringType1 in registreringType1s) { - if (registreringType1.IsStsOrganisationObsolete()) - { + if (registreringType1.IsStsAdresseObsolete()) continue; - } - return Result.Success(registreringType1.RelationListe.Virksomhed.ReferenceID.Item); - } - return Result.Failure("UUID not found"); - } - } + var latest = registreringType1 + .AttributListe + ?.OrderByDescending(y => y.Virkning.TilTidspunkt) + ?.FirstOrDefault() + ?.AdresseTekst; - private Result GetStsBrugerMunicipalityCvrFromUuid(string virksomhedUuid) - { - using (var clientCertificate = GetClientCertificate(_certificateThumbprint)) - { - var client = StsVirksomhedHelpers.CreateVirksomhedPortTypeClient(CreateHttpBinding(), - _urlServicePlatformVirksomhedService, clientCertificate); - var laesRequest = StsVirksomhedHelpers.CreateStsVirksomhedLaesRequest(_authorizedMunicipalityCvr, virksomhedUuid); - var virksomhedPortType = client.ChannelFactory.CreateChannel(); - var laesResponse = virksomhedPortType.laes(laesRequest); - var registreringType1s = laesResponse.LaesResponse1.LaesOutput.FiltreretOejebliksbillede.Registrering; - foreach (var registreringType1 in registreringType1s) - { - if (registreringType1.IsStsVirksomhedObsolete()) + if (latest == null) { + //Failed to parse latest adresse continue; } - - var latest = registreringType1.AttributListe.OrderByDescending(a => a.Virkning.TilTidspunkt).First(); - return Result.Success(latest.CVRNummerTekst); + result.Add(latest); } - return Result.Failure("Unable to resolve cvr"); + + if (result.Any()) + return result; + + return $"No email addresses found from emailAdresseUuid {emailAdresseUuid}"; } } - private Result GetStsPersonFromUuid(string personUuid) + private Result GetStsPersonFromUuid(string personUuid, string cvrNumber) { using (var clientCertificate = GetClientCertificate(_certificateThumbprint)) { var client = StsPersonHelpers.CreatePersonPortTypeClient(CreateHttpBinding(), _urlServicePlatformPersonService, clientCertificate); - var laesRequest = StsPersonHelpers.CreateStsPersonLaesRequest(_authorizedMunicipalityCvr, personUuid); + var laesRequest = StsPersonHelpers.CreateStsPersonLaesRequest(cvrNumber, personUuid); var virksomhedPortType = client.ChannelFactory.CreateChannel(); var laesResponse = virksomhedPortType.laes(laesRequest); - var registreringType1s = laesResponse.LaesResponse1.LaesOutput.FiltreretOejebliksbillede.Registrering; + + if (laesResponse == null) + return $"Failed to read from STS Person with personUUID:{personUuid}"; + + var stdOutput = laesResponse.LaesResponse1?.LaesOutput?.StandardRetur; + var returnCode = stdOutput?.StatusKode ?? "unknown"; + var errorCode = stdOutput?.FejlbeskedTekst ?? string.Empty; + + if (returnCode == StsStandardNotFoundResultCode) + return $"Requested person '{personUuid}' from cvr '{cvrNumber}' was not found. STS Person endpoint returned '{returnCode}:{errorCode}'"; + + var registreringType1s = + laesResponse + .LaesResponse1 + ?.LaesOutput + ?.FiltreretOejebliksbillede + ?.Registrering ?? new Infrastructure.Soap.STSPerson.RegistreringType1[0]; + + if (registreringType1s.Any() == false) + { + return $"Failed to parse registrations from STS Person with personUUID:{personUuid}"; + } + foreach (var registreringType1 in registreringType1s) { if (registreringType1.IsStsPersonObsolete()) @@ -207,10 +259,18 @@ private Result GetStsPersonFromUuid(string personUuid) continue; } - var latest = registreringType1.AttributListe.OrderByDescending(a => a.Virkning.TilTidspunkt).First(); - return Result.Success(new StsPersonData(latest.NavnTekst)); + var latest = registreringType1 + .AttributListe + ?.OrderByDescending(y => y.Virkning.TilTidspunkt) + ?.FirstOrDefault() + ?.NavnTekst; + + if (latest == null) + continue; + + return Result.Success(new StsPersonData(latest)); } - return Result.Failure("Unable to resolve cvr"); + return Result.Failure($"Unable to resolve person from personuuid:{personUuid}"); } } diff --git a/Core.DomainServices/SSO/StsOrganisationHelpers.cs b/Core.DomainServices/SSO/StsOrganisationHelpers.cs deleted file mode 100644 index 5349aa5c09..0000000000 --- a/Core.DomainServices/SSO/StsOrganisationHelpers.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System.Security.Cryptography.X509Certificates; -using System.ServiceModel; -using Infrastructure.Soap.STSOrganisation; -using AuthorityContextType = Infrastructure.Soap.STSOrganisation.AuthorityContextType; -using LaesInputType = Infrastructure.Soap.STSOrganisation.LaesInputType; -using laesRequest = Infrastructure.Soap.STSOrganisation.laesRequest; -using LaesRequestType = Infrastructure.Soap.STSOrganisation.LaesRequestType; - -namespace Core.DomainServices.SSO -{ - internal static class StsOrganisationHelpers - { - public static laesRequest CreateStsOrganisationLaesRequest(string municipalityCvr, string uuid) - { - var laesInputType = new LaesInputType {UUIDIdentifikator = uuid}; - var laesRequest = new laesRequest - { - LaesRequest1 = new LaesRequestType - { - LaesInput = laesInputType, - AuthorityContext = new AuthorityContextType - { - MunicipalityCVR = municipalityCvr - } - } - }; - return laesRequest; - } - - public static OrganisationPortTypeClient CreateOrganisationPortTypeClient(BasicHttpBinding binding, string urlServicePlatformService, X509Certificate2 certificate) - { - var client = new OrganisationPortTypeClient(binding, new EndpointAddress(urlServicePlatformService)) - { - ClientCredentials = - { - ClientCertificate = - { - Certificate = certificate - } - } - }; - return client; - } - - public static bool IsStsOrganisationObsolete(this RegistreringType1 registreringType1) - { - return registreringType1.LivscyklusKode.Equals(LivscyklusKodeType.Passiveret) || - registreringType1.LivscyklusKode.Equals(LivscyklusKodeType.Slettet); - } - } -} diff --git a/Core.DomainServices/SSO/StsOrganisationIntegrationConfiguration.cs b/Core.DomainServices/SSO/StsOrganisationIntegrationConfiguration.cs index d0811d7333..9e7fdb36a4 100644 --- a/Core.DomainServices/SSO/StsOrganisationIntegrationConfiguration.cs +++ b/Core.DomainServices/SSO/StsOrganisationIntegrationConfiguration.cs @@ -4,13 +4,11 @@ public class StsOrganisationIntegrationConfiguration { public string CertificateThumbprint { get; } public string EndpointHost { get; } - public string AuthorizedMunicipalityCvr { get; } - public StsOrganisationIntegrationConfiguration(string certificateThumbprint, string endpointHost, string authorizedMunicipalityCvr) + public StsOrganisationIntegrationConfiguration(string certificateThumbprint, string endpointHost) { CertificateThumbprint = certificateThumbprint; EndpointHost = endpointHost; - AuthorizedMunicipalityCvr = authorizedMunicipalityCvr; } } } diff --git a/Core.DomainServices/SSO/StsVirksomhedHelpers.cs b/Core.DomainServices/SSO/StsVirksomhedHelpers.cs deleted file mode 100644 index 7f9930433b..0000000000 --- a/Core.DomainServices/SSO/StsVirksomhedHelpers.cs +++ /dev/null @@ -1,47 +0,0 @@ -using System.Security.Cryptography.X509Certificates; -using System.ServiceModel; -using Infrastructure.Soap.STSVirksomhed; - -namespace Core.DomainServices.SSO -{ - internal static class StsVirksomhedHelpers - { - public static laesRequest CreateStsVirksomhedLaesRequest(string municipalityCvr, string uuid) - { - var laesInputType = new LaesInputType {UUIDIdentifikator = uuid}; - var laesRequest = new laesRequest - { - LaesRequest1 = new LaesRequestType - { - LaesInput = laesInputType, - AuthorityContext = new AuthorityContextType() - { - MunicipalityCVR = municipalityCvr - } - } - }; - return laesRequest; - } - - public static VirksomhedPortTypeClient CreateVirksomhedPortTypeClient(BasicHttpBinding binding, string urlServicePlatformService, X509Certificate2 certificate) - { - var client = new VirksomhedPortTypeClient(binding, new EndpointAddress(urlServicePlatformService)) - { - ClientCredentials = - { - ClientCertificate = - { - Certificate = certificate - } - } - }; - return client; - } - - public static bool IsStsVirksomhedObsolete(this RegistreringType1 registreringType1) - { - return registreringType1.LivscyklusKode.Equals(LivscyklusKodeType.Slettet) || - registreringType1.LivscyklusKode.Equals(LivscyklusKodeType.Passiveret); - } - } -} diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/AuthorityContext_1.xsd b/Infrastructure.Soap/Connected Services/STSOrganisation/AuthorityContext_1.xsd deleted file mode 100644 index c4b7c49243..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/AuthorityContext_1.xsd +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/CallContext_1.xsd b/Infrastructure.Soap/Connected Services/STSOrganisation/CallContext_1.xsd deleted file mode 100644 index b8fe8f6901..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/CallContext_1.xsd +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.ImporterResponseType.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.ImporterResponseType.datasource deleted file mode 100644 index 03872ced02..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.ImporterResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.ImporterResponseType, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.LaesResponseType.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.LaesResponseType.datasource deleted file mode 100644 index 51cd74d87f..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.LaesResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.LaesResponseType, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.ListResponseType.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.ListResponseType.datasource deleted file mode 100644 index 14b13b3836..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.ListResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.ListResponseType, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.OpretResponseType.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.OpretResponseType.datasource deleted file mode 100644 index 86375cbdbf..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.OpretResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.OpretResponseType, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.PassiverResponseType.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.PassiverResponseType.datasource deleted file mode 100644 index 9fcb6d8059..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.PassiverResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.PassiverResponseType, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.RequestHeaderType.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.RequestHeaderType.datasource deleted file mode 100644 index 544f143894..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.RequestHeaderType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.RequestHeaderType, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.RetResponseType.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.RetResponseType.datasource deleted file mode 100644 index 8eeb24b5b5..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.RetResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.RetResponseType, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.SletResponseType.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.SletResponseType.datasource deleted file mode 100644 index 1a69ff4f33..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.SletResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.SletResponseType, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.SoegResponseType.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.SoegResponseType.datasource deleted file mode 100644 index f9b7cf2382..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.SoegResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.SoegResponseType, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.importerResponse.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.importerResponse.datasource deleted file mode 100644 index 46d2fd219d..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.importerResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.importerResponse, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.laesResponse.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.laesResponse.datasource deleted file mode 100644 index 5489185a7e..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.laesResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.laesResponse, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.listResponse.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.listResponse.datasource deleted file mode 100644 index 16ea54e8ef..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.listResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.listResponse, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.opretResponse.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.opretResponse.datasource deleted file mode 100644 index 4198333e04..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.opretResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.opretResponse, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.passiverResponse.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.passiverResponse.datasource deleted file mode 100644 index 75bf72ec81..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.passiverResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.passiverResponse, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.retResponse.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.retResponse.datasource deleted file mode 100644 index a728c827f8..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.retResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.retResponse, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.sletResponse.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.sletResponse.datasource deleted file mode 100644 index 8c6da4df4e..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.sletResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.sletResponse, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.soegResponse.datasource b/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.soegResponse.datasource deleted file mode 100644 index bd9988c8f3..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Infrastructure.Soap.STSOrganisation.soegResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSOrganisation.soegResponse, Connected Services.STSOrganisation.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Organisation.xsd b/Infrastructure.Soap/Connected Services/STSOrganisation/Organisation.xsd deleted file mode 100644 index 851b0076d6..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Organisation.xsd +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/OrganisationFaelles.xsd b/Infrastructure.Soap/Connected Services/STSOrganisation/OrganisationFaelles.xsd deleted file mode 100644 index 18c70764b2..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/OrganisationFaelles.xsd +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/OrganisationOperationer.xsd b/Infrastructure.Soap/Connected Services/STSOrganisation/OrganisationOperationer.xsd deleted file mode 100644 index f61a6d5d52..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/OrganisationOperationer.xsd +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/OrganisationService.wsdl b/Infrastructure.Soap/Connected Services/STSOrganisation/OrganisationService.wsdl deleted file mode 100644 index fc2c3f5e55..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/OrganisationService.wsdl +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/OrganisationServiceMsg.xsd b/Infrastructure.Soap/Connected Services/STSOrganisation/OrganisationServiceMsg.xsd deleted file mode 100644 index 401db5738e..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/OrganisationServiceMsg.xsd +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Part.xsd b/Infrastructure.Soap/Connected Services/STSOrganisation/Part.xsd deleted file mode 100644 index 2ce9ea4273..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Part.xsd +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Reference.cs b/Infrastructure.Soap/Connected Services/STSOrganisation/Reference.cs deleted file mode 100644 index c99bce582d..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/Reference.cs +++ /dev/null @@ -1,4152 +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.Soap.STSOrganisation { - - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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 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.3752.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 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.3752.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 EgenskabType : 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.3752.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.3752.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.3752.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.3752.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.3752.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 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.3752.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.3752.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.3752.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 RelationListeType : 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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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(OrganisationType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesFiltreretOutputType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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(OrganisationType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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(OrganisationType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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.3752.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 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.3752.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.3752.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 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.3752.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.3752.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.3752.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.3752.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 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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/")] - public partial class OpretResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private OpretOutputType opretOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisation: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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(TypeName="OpretInputType", Namespace="urn:oio:sts:organisation:organisation: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.3752.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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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:organisation: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/Organisation/5/", ConfigurationName="STSOrganisation.OrganisationPortType")] - public interface OrganisationPortType { - - // 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/Organisation/5/opret", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSOrganisation.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/opret", 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.Soap.STSOrganisation.opretResponse opret(Infrastructure.Soap.STSOrganisation.opretRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/opret", ReplyAction="*")] - System.Threading.Tasks.Task opretAsync(Infrastructure.Soap.STSOrganisation.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/Organisation/5/importer", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSOrganisation.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/importer", 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.Soap.STSOrganisation.importerResponse importer(Infrastructure.Soap.STSOrganisation.importerRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/importer", ReplyAction="*")] - System.Threading.Tasks.Task importerAsync(Infrastructure.Soap.STSOrganisation.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/Organisation/5/passiver", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSOrganisation.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/passiver", 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.Soap.STSOrganisation.passiverResponse passiver(Infrastructure.Soap.STSOrganisation.passiverRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/passiver", ReplyAction="*")] - System.Threading.Tasks.Task passiverAsync(Infrastructure.Soap.STSOrganisation.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/Organisation/5/laes", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSOrganisation.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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.Soap.STSOrganisation.laesResponse laes(Infrastructure.Soap.STSOrganisation.laesRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/laes", ReplyAction="*")] - System.Threading.Tasks.Task laesAsync(Infrastructure.Soap.STSOrganisation.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/Organisation/5/ret", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSOrganisation.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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.Soap.STSOrganisation.retResponse ret(Infrastructure.Soap.STSOrganisation.retRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/ret", ReplyAction="*")] - System.Threading.Tasks.Task retAsync(Infrastructure.Soap.STSOrganisation.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/Organisation/5/slet", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSOrganisation.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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.Soap.STSOrganisation.sletResponse slet(Infrastructure.Soap.STSOrganisation.sletRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/slet", ReplyAction="*")] - System.Threading.Tasks.Task sletAsync(Infrastructure.Soap.STSOrganisation.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/Organisation/5/soeg", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSOrganisation.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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.Soap.STSOrganisation.soegResponse soeg(Infrastructure.Soap.STSOrganisation.soegRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/soeg", ReplyAction="*")] - System.Threading.Tasks.Task soegAsync(Infrastructure.Soap.STSOrganisation.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/Organisation/5/list", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSOrganisation.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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.Soap.STSOrganisation.listResponse list(Infrastructure.Soap.STSOrganisation.listRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/list", ReplyAction="*")] - System.Threading.Tasks.Task listAsync(Infrastructure.Soap.STSOrganisation.listRequest request); - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="OpretRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.OpretRequestType OpretRequest1; - - public opretRequest() { - } - - public opretRequest(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="OpretResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.OpretResponseType OpretResponse1; - - public opretResponse() { - } - - public opretResponse(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.OpretResponseType OpretResponse1) { - this.RequestHeader = RequestHeader; - this.OpretResponse1 = OpretResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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:organisation: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.3752.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 ImportInputType : object, System.ComponentModel.INotifyPropertyChanged { - - private OrganisationType organisationField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public OrganisationType Organisation { - get { - return this.organisationField; - } - set { - this.organisationField = value; - this.RaisePropertyChanged("Organisation"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/")] - public partial class ImporterResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private BasicOutputType importOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisation: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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="ImporterRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.ImporterRequestType ImporterRequest1; - - public importerRequest() { - } - - public importerRequest(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="ImporterResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.ImporterResponseType ImporterResponse1; - - public importerResponse() { - } - - public importerResponse(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.ImporterResponseType ImporterResponse1) { - this.RequestHeader = RequestHeader; - this.ImporterResponse1 = ImporterResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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:organisation: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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/")] - public partial class PassiverResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private BasicOutputType passiverOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisation: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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="PassiverRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.PassiverRequestType PassiverRequest1; - - public passiverRequest() { - } - - public passiverRequest(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="PassiverResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.PassiverResponseType PassiverResponse1; - - public passiverResponse() { - } - - public passiverResponse(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.PassiverResponseType PassiverResponse1) { - this.RequestHeader = RequestHeader; - this.PassiverResponse1 = PassiverResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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:organisation: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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/")] - public partial class LaesResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private LaesOutputType laesOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisation: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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="LaesRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.LaesRequestType LaesRequest1; - - public laesRequest() { - } - - public laesRequest(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="LaesResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.LaesResponseType LaesResponse1; - - public laesResponse() { - } - - public laesResponse(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.LaesResponseType LaesResponse1) { - this.RequestHeader = RequestHeader; - this.LaesResponse1 = LaesResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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:organisation: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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(TypeName="RetInputType", Namespace="urn:oio:sts:organisation:organisation: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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/")] - public partial class RetResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private BasicOutputType retOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisation: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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="RetRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.RetRequestType RetRequest1; - - public retRequest() { - } - - public retRequest(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="RetResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.RetResponseType RetResponse1; - - public retResponse() { - } - - public retResponse(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.RetResponseType RetResponse1) { - this.RequestHeader = RequestHeader; - this.RetResponse1 = RetResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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:organisation: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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/")] - public partial class SletResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private BasicOutputType sletOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisation: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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="SletRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.SletRequestType SletRequest1; - - public sletRequest() { - } - - public sletRequest(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="SletResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.SletResponseType SletResponse1; - - public sletResponse() { - } - - public sletResponse(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.SletResponseType SletResponse1) { - this.RequestHeader = RequestHeader; - this.SletResponse1 = SletResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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:organisation: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.3752.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 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.3752.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.3752.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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/")] - public partial class SoegResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private SoegOutputType soegOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisation: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.3752.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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="SoegRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.SoegRequestType SoegRequest1; - - public soegRequest() { - } - - public soegRequest(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="SoegResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.SoegResponseType SoegResponse1; - - public soegResponse() { - } - - public soegResponse(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.SoegResponseType SoegResponse1) { - this.RequestHeader = RequestHeader; - this.SoegResponse1 = SoegResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/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:organisation: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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/")] - public partial class ListResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private ListOutputType1 listOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:organisation: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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(TypeName="ListOutputType", Namespace="urn:oio:sts:organisation:organisation: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.3752.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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="ListRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.ListRequestType ListRequest1; - - public listRequest() { - } - - public listRequest(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.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.Soap.STSOrganisation.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="ListResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Organisation/5/", Order=0)] - public Infrastructure.Soap.STSOrganisation.ListResponseType ListResponse1; - - public listResponse() { - } - - public listResponse(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.ListResponseType ListResponse1) { - this.RequestHeader = RequestHeader; - this.ListResponse1 = ListResponse1; - } - } - - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] - public interface OrganisationPortTypeChannel : Infrastructure.Soap.STSOrganisation.OrganisationPortType, System.ServiceModel.IClientChannel { - } - - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] - public partial class OrganisationPortTypeClient : System.ServiceModel.ClientBase, Infrastructure.Soap.STSOrganisation.OrganisationPortType { - - public OrganisationPortTypeClient() { - } - - public OrganisationPortTypeClient(string endpointConfigurationName) : - base(endpointConfigurationName) { - } - - public OrganisationPortTypeClient(string endpointConfigurationName, string remoteAddress) : - base(endpointConfigurationName, remoteAddress) { - } - - public OrganisationPortTypeClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : - base(endpointConfigurationName, remoteAddress) { - } - - public OrganisationPortTypeClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : - base(binding, remoteAddress) { - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSOrganisation.opretResponse Infrastructure.Soap.STSOrganisation.OrganisationPortType.opret(Infrastructure.Soap.STSOrganisation.opretRequest request) { - return base.Channel.opret(request); - } - - public Infrastructure.Soap.STSOrganisation.OpretResponseType opret(ref Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.OpretRequestType OpretRequest1) { - Infrastructure.Soap.STSOrganisation.opretRequest inValue = new Infrastructure.Soap.STSOrganisation.opretRequest(); - inValue.RequestHeader = RequestHeader; - inValue.OpretRequest1 = OpretRequest1; - Infrastructure.Soap.STSOrganisation.opretResponse retVal = ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).opret(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.OpretResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSOrganisation.OrganisationPortType.opretAsync(Infrastructure.Soap.STSOrganisation.opretRequest request) { - return base.Channel.opretAsync(request); - } - - public System.Threading.Tasks.Task opretAsync(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.OpretRequestType OpretRequest1) { - Infrastructure.Soap.STSOrganisation.opretRequest inValue = new Infrastructure.Soap.STSOrganisation.opretRequest(); - inValue.RequestHeader = RequestHeader; - inValue.OpretRequest1 = OpretRequest1; - return ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).opretAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSOrganisation.importerResponse Infrastructure.Soap.STSOrganisation.OrganisationPortType.importer(Infrastructure.Soap.STSOrganisation.importerRequest request) { - return base.Channel.importer(request); - } - - public Infrastructure.Soap.STSOrganisation.ImporterResponseType importer(ref Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.ImporterRequestType ImporterRequest1) { - Infrastructure.Soap.STSOrganisation.importerRequest inValue = new Infrastructure.Soap.STSOrganisation.importerRequest(); - inValue.RequestHeader = RequestHeader; - inValue.ImporterRequest1 = ImporterRequest1; - Infrastructure.Soap.STSOrganisation.importerResponse retVal = ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).importer(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.ImporterResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSOrganisation.OrganisationPortType.importerAsync(Infrastructure.Soap.STSOrganisation.importerRequest request) { - return base.Channel.importerAsync(request); - } - - public System.Threading.Tasks.Task importerAsync(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.ImporterRequestType ImporterRequest1) { - Infrastructure.Soap.STSOrganisation.importerRequest inValue = new Infrastructure.Soap.STSOrganisation.importerRequest(); - inValue.RequestHeader = RequestHeader; - inValue.ImporterRequest1 = ImporterRequest1; - return ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).importerAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSOrganisation.passiverResponse Infrastructure.Soap.STSOrganisation.OrganisationPortType.passiver(Infrastructure.Soap.STSOrganisation.passiverRequest request) { - return base.Channel.passiver(request); - } - - public Infrastructure.Soap.STSOrganisation.PassiverResponseType passiver(ref Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.PassiverRequestType PassiverRequest1) { - Infrastructure.Soap.STSOrganisation.passiverRequest inValue = new Infrastructure.Soap.STSOrganisation.passiverRequest(); - inValue.RequestHeader = RequestHeader; - inValue.PassiverRequest1 = PassiverRequest1; - Infrastructure.Soap.STSOrganisation.passiverResponse retVal = ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).passiver(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.PassiverResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSOrganisation.OrganisationPortType.passiverAsync(Infrastructure.Soap.STSOrganisation.passiverRequest request) { - return base.Channel.passiverAsync(request); - } - - public System.Threading.Tasks.Task passiverAsync(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.PassiverRequestType PassiverRequest1) { - Infrastructure.Soap.STSOrganisation.passiverRequest inValue = new Infrastructure.Soap.STSOrganisation.passiverRequest(); - inValue.RequestHeader = RequestHeader; - inValue.PassiverRequest1 = PassiverRequest1; - return ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).passiverAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSOrganisation.laesResponse Infrastructure.Soap.STSOrganisation.OrganisationPortType.laes(Infrastructure.Soap.STSOrganisation.laesRequest request) { - return base.Channel.laes(request); - } - - public Infrastructure.Soap.STSOrganisation.LaesResponseType laes(ref Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.LaesRequestType LaesRequest1) { - Infrastructure.Soap.STSOrganisation.laesRequest inValue = new Infrastructure.Soap.STSOrganisation.laesRequest(); - inValue.RequestHeader = RequestHeader; - inValue.LaesRequest1 = LaesRequest1; - Infrastructure.Soap.STSOrganisation.laesResponse retVal = ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).laes(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.LaesResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSOrganisation.OrganisationPortType.laesAsync(Infrastructure.Soap.STSOrganisation.laesRequest request) { - return base.Channel.laesAsync(request); - } - - public System.Threading.Tasks.Task laesAsync(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.LaesRequestType LaesRequest1) { - Infrastructure.Soap.STSOrganisation.laesRequest inValue = new Infrastructure.Soap.STSOrganisation.laesRequest(); - inValue.RequestHeader = RequestHeader; - inValue.LaesRequest1 = LaesRequest1; - return ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).laesAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSOrganisation.retResponse Infrastructure.Soap.STSOrganisation.OrganisationPortType.ret(Infrastructure.Soap.STSOrganisation.retRequest request) { - return base.Channel.ret(request); - } - - public Infrastructure.Soap.STSOrganisation.RetResponseType ret(ref Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.RetRequestType RetRequest1) { - Infrastructure.Soap.STSOrganisation.retRequest inValue = new Infrastructure.Soap.STSOrganisation.retRequest(); - inValue.RequestHeader = RequestHeader; - inValue.RetRequest1 = RetRequest1; - Infrastructure.Soap.STSOrganisation.retResponse retVal = ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).ret(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.RetResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSOrganisation.OrganisationPortType.retAsync(Infrastructure.Soap.STSOrganisation.retRequest request) { - return base.Channel.retAsync(request); - } - - public System.Threading.Tasks.Task retAsync(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.RetRequestType RetRequest1) { - Infrastructure.Soap.STSOrganisation.retRequest inValue = new Infrastructure.Soap.STSOrganisation.retRequest(); - inValue.RequestHeader = RequestHeader; - inValue.RetRequest1 = RetRequest1; - return ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).retAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSOrganisation.sletResponse Infrastructure.Soap.STSOrganisation.OrganisationPortType.slet(Infrastructure.Soap.STSOrganisation.sletRequest request) { - return base.Channel.slet(request); - } - - public Infrastructure.Soap.STSOrganisation.SletResponseType slet(ref Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.SletRequestType SletRequest1) { - Infrastructure.Soap.STSOrganisation.sletRequest inValue = new Infrastructure.Soap.STSOrganisation.sletRequest(); - inValue.RequestHeader = RequestHeader; - inValue.SletRequest1 = SletRequest1; - Infrastructure.Soap.STSOrganisation.sletResponse retVal = ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).slet(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.SletResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSOrganisation.OrganisationPortType.sletAsync(Infrastructure.Soap.STSOrganisation.sletRequest request) { - return base.Channel.sletAsync(request); - } - - public System.Threading.Tasks.Task sletAsync(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.SletRequestType SletRequest1) { - Infrastructure.Soap.STSOrganisation.sletRequest inValue = new Infrastructure.Soap.STSOrganisation.sletRequest(); - inValue.RequestHeader = RequestHeader; - inValue.SletRequest1 = SletRequest1; - return ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).sletAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSOrganisation.soegResponse Infrastructure.Soap.STSOrganisation.OrganisationPortType.soeg(Infrastructure.Soap.STSOrganisation.soegRequest request) { - return base.Channel.soeg(request); - } - - public Infrastructure.Soap.STSOrganisation.SoegResponseType soeg(ref Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.SoegRequestType SoegRequest1) { - Infrastructure.Soap.STSOrganisation.soegRequest inValue = new Infrastructure.Soap.STSOrganisation.soegRequest(); - inValue.RequestHeader = RequestHeader; - inValue.SoegRequest1 = SoegRequest1; - Infrastructure.Soap.STSOrganisation.soegResponse retVal = ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).soeg(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.SoegResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSOrganisation.OrganisationPortType.soegAsync(Infrastructure.Soap.STSOrganisation.soegRequest request) { - return base.Channel.soegAsync(request); - } - - public System.Threading.Tasks.Task soegAsync(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.SoegRequestType SoegRequest1) { - Infrastructure.Soap.STSOrganisation.soegRequest inValue = new Infrastructure.Soap.STSOrganisation.soegRequest(); - inValue.RequestHeader = RequestHeader; - inValue.SoegRequest1 = SoegRequest1; - return ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).soegAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSOrganisation.listResponse Infrastructure.Soap.STSOrganisation.OrganisationPortType.list(Infrastructure.Soap.STSOrganisation.listRequest request) { - return base.Channel.list(request); - } - - public Infrastructure.Soap.STSOrganisation.ListResponseType list(ref Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.ListRequestType ListRequest1) { - Infrastructure.Soap.STSOrganisation.listRequest inValue = new Infrastructure.Soap.STSOrganisation.listRequest(); - inValue.RequestHeader = RequestHeader; - inValue.ListRequest1 = ListRequest1; - Infrastructure.Soap.STSOrganisation.listResponse retVal = ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).list(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.ListResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSOrganisation.OrganisationPortType.listAsync(Infrastructure.Soap.STSOrganisation.listRequest request) { - return base.Channel.listAsync(request); - } - - public System.Threading.Tasks.Task listAsync(Infrastructure.Soap.STSOrganisation.RequestHeaderType RequestHeader, Infrastructure.Soap.STSOrganisation.ListRequestType ListRequest1) { - Infrastructure.Soap.STSOrganisation.listRequest inValue = new Infrastructure.Soap.STSOrganisation.listRequest(); - inValue.RequestHeader = RequestHeader; - inValue.ListRequest1 = ListRequest1; - return ((Infrastructure.Soap.STSOrganisation.OrganisationPortType)(this)).listAsync(inValue); - } - } -} diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/Reference.svcmap b/Infrastructure.Soap/Connected Services/STSOrganisation/Reference.svcmap deleted file mode 100644 index 701b4c2be9..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/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.Soap/Connected Services/STSOrganisation/RequestHeader.xsd b/Infrastructure.Soap/Connected Services/STSOrganisation/RequestHeader.xsd deleted file mode 100644 index 86cc4c8882..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/RequestHeader.xsd +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/SagDokObjekt.xsd b/Infrastructure.Soap/Connected Services/STSOrganisation/SagDokObjekt.xsd deleted file mode 100644 index 7d028a840d..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/SagDokObjekt.xsd +++ /dev/null @@ -1,803 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/ServiceplatformFaultMessage.wsdl b/Infrastructure.Soap/Connected Services/STSOrganisation/ServiceplatformFaultMessage.wsdl deleted file mode 100644 index 7b2666e388..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/ServiceplatformFaultMessage.wsdl +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/ServiceplatformFault_1.xsd b/Infrastructure.Soap/Connected Services/STSOrganisation/ServiceplatformFault_1.xsd deleted file mode 100644 index b0b7ce41e9..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/ServiceplatformFault_1.xsd +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/configuration.svcinfo b/Infrastructure.Soap/Connected Services/STSOrganisation/configuration.svcinfo deleted file mode 100644 index 3b20b6fd96..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/configuration.svcinfo +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/configuration91.svcinfo b/Infrastructure.Soap/Connected Services/STSOrganisation/configuration91.svcinfo deleted file mode 100644 index ce85b777f8..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/configuration91.svcinfo +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - OrganisationBinding - - - - - - - - - - - - - - - - - - - - - StrongWildcard - - - - - - 65536 - - - - - - - - - System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - System.Text.UTF8Encoding - - - Buffered - - - - - - Text - - - System.ServiceModel.Configuration.BasicHttpSecurityElement - - - Transport - - - System.ServiceModel.Configuration.HttpTransportSecurityElement - - - None - - - None - - - System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement - - - Never - - - TransportSelected - - - (Collection) - - - - - - System.ServiceModel.Configuration.BasicHttpMessageSecurityElement - - - UserName - - - Default - - - - - - - - - https://localhost:8080/service/Organisation/Organisation/5 - - - - - - basicHttpBinding - - - OrganisationBinding - - - STSOrganisation.OrganisationPortType - - - System.ServiceModel.Configuration.AddressHeaderCollectionElement - - - <Header /> - - - System.ServiceModel.Configuration.IdentityElement - - - System.ServiceModel.Configuration.UserPrincipalNameElement - - - - - - System.ServiceModel.Configuration.ServicePrincipalNameElement - - - - - - System.ServiceModel.Configuration.DnsElement - - - - - - System.ServiceModel.Configuration.RsaElement - - - - - - System.ServiceModel.Configuration.CertificateElement - - - - - - System.ServiceModel.Configuration.CertificateReferenceElement - - - My - - - LocalMachine - - - FindBySubjectDistinguishedName - - - - - - False - - - OrganisationPort - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSOrganisation/policies.wsdl b/Infrastructure.Soap/Connected Services/STSOrganisation/policies.wsdl deleted file mode 100644 index ff60ad349b..0000000000 --- a/Infrastructure.Soap/Connected Services/STSOrganisation/policies.wsdl +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/AuthorityContext_1.xsd b/Infrastructure.Soap/Connected Services/STSVirksomhed/AuthorityContext_1.xsd deleted file mode 100644 index c4b7c49243..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/AuthorityContext_1.xsd +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/CallContext_1.xsd b/Infrastructure.Soap/Connected Services/STSVirksomhed/CallContext_1.xsd deleted file mode 100644 index b8fe8f6901..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/CallContext_1.xsd +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/GenerelleDefinitioner.xsd b/Infrastructure.Soap/Connected Services/STSVirksomhed/GenerelleDefinitioner.xsd deleted file mode 100644 index 1cd19da05d..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/GenerelleDefinitioner.xsd +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.ImporterResponseType.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.ImporterResponseType.datasource deleted file mode 100644 index a34ec7b2fe..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.ImporterResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.ImporterResponseType, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.LaesResponseType.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.LaesResponseType.datasource deleted file mode 100644 index 0e18f465e8..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.LaesResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.LaesResponseType, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.ListResponseType.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.ListResponseType.datasource deleted file mode 100644 index f4b61088e6..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.ListResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.ListResponseType, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.OpretResponseType.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.OpretResponseType.datasource deleted file mode 100644 index dfdf53d9d5..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.OpretResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.OpretResponseType, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.PassiverResponseType.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.PassiverResponseType.datasource deleted file mode 100644 index 83531fd1bd..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.PassiverResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.PassiverResponseType, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.RequestHeaderType.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.RequestHeaderType.datasource deleted file mode 100644 index ef7f6a08dc..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.RequestHeaderType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.RequestHeaderType, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.RetResponseType.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.RetResponseType.datasource deleted file mode 100644 index d152efe34b..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.RetResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.RetResponseType, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.SletResponseType.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.SletResponseType.datasource deleted file mode 100644 index f4992eafd8..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.SletResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.SletResponseType, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.SoegResponseType.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.SoegResponseType.datasource deleted file mode 100644 index 3e06da44fe..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.SoegResponseType.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.SoegResponseType, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.importerResponse.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.importerResponse.datasource deleted file mode 100644 index e5de7f5bd8..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.importerResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.importerResponse, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.laesResponse.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.laesResponse.datasource deleted file mode 100644 index 44973aebcb..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.laesResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.laesResponse, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.listResponse.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.listResponse.datasource deleted file mode 100644 index 18752c6fda..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.listResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.listResponse, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.opretResponse.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.opretResponse.datasource deleted file mode 100644 index 2c0167b914..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.opretResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.opretResponse, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.passiverResponse.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.passiverResponse.datasource deleted file mode 100644 index df8fb5079d..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.passiverResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.passiverResponse, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.retResponse.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.retResponse.datasource deleted file mode 100644 index 8af9c653a4..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.retResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.retResponse, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.sletResponse.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.sletResponse.datasource deleted file mode 100644 index 93323acb2e..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.sletResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.sletResponse, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.soegResponse.datasource b/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.soegResponse.datasource deleted file mode 100644 index 46e2fd58ab..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Infrastructure.Soap.STSVirksomhed.soegResponse.datasource +++ /dev/null @@ -1,10 +0,0 @@ - - - - Infrastructure.Soap.STSVirksomhed.soegResponse, Connected Services.STSVirksomhed.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Part.xsd b/Infrastructure.Soap/Connected Services/STSVirksomhed/Part.xsd deleted file mode 100644 index 2ce9ea4273..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Part.xsd +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Reference.cs b/Infrastructure.Soap/Connected Services/STSVirksomhed/Reference.cs deleted file mode 100644 index ae2fff8514..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Reference.cs +++ /dev/null @@ -1,3267 +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.Soap.STSVirksomhed { - - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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 RegistreringType1 : 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.3752.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.3752.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.3752.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.3752.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.3752.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.3752.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.Xml.Serialization.XmlIncludeAttribute(typeof(PartType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(VirksomhedType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesFiltreretOutputType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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(VirksomhedType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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 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.3752.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.3752.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 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.3752.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.3752.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(ListOutputType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(LaesOutputType))] - [System.Xml.Serialization.XmlIncludeAttribute(typeof(OpretOutputType))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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.3752.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.3752.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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/")] - public partial class OpretResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private OpretOutputType opretOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:virksomhed: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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(TypeName="OpretInputType", Namespace="urn:oio:sts:organisation:virksomhed:1.1.3.0")] - public partial class OpretInputType1 : OpretInputType { - - 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.3752.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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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:virksomhed: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/Virksomhed/5/", ConfigurationName="STSVirksomhed.VirksomhedPortType")] - public interface VirksomhedPortType { - - // 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/Virksomhed/5/opret", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSVirksomhed.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/opret", 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(OpretInputType))] - Infrastructure.Soap.STSVirksomhed.opretResponse opret(Infrastructure.Soap.STSVirksomhed.opretRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/opret", ReplyAction="*")] - System.Threading.Tasks.Task opretAsync(Infrastructure.Soap.STSVirksomhed.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/Virksomhed/5/importer", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSVirksomhed.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/importer", 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(OpretInputType))] - Infrastructure.Soap.STSVirksomhed.importerResponse importer(Infrastructure.Soap.STSVirksomhed.importerRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/importer", ReplyAction="*")] - System.Threading.Tasks.Task importerAsync(Infrastructure.Soap.STSVirksomhed.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/Virksomhed/5/passiver", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSVirksomhed.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/passiver", 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(OpretInputType))] - Infrastructure.Soap.STSVirksomhed.passiverResponse passiver(Infrastructure.Soap.STSVirksomhed.passiverRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/passiver", ReplyAction="*")] - System.Threading.Tasks.Task passiverAsync(Infrastructure.Soap.STSVirksomhed.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/Virksomhed/5/laes", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSVirksomhed.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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(OpretInputType))] - Infrastructure.Soap.STSVirksomhed.laesResponse laes(Infrastructure.Soap.STSVirksomhed.laesRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/laes", ReplyAction="*")] - System.Threading.Tasks.Task laesAsync(Infrastructure.Soap.STSVirksomhed.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/Virksomhed/5/ret", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSVirksomhed.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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(OpretInputType))] - Infrastructure.Soap.STSVirksomhed.retResponse ret(Infrastructure.Soap.STSVirksomhed.retRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/ret", ReplyAction="*")] - System.Threading.Tasks.Task retAsync(Infrastructure.Soap.STSVirksomhed.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/Virksomhed/5/slet", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSVirksomhed.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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(OpretInputType))] - Infrastructure.Soap.STSVirksomhed.sletResponse slet(Infrastructure.Soap.STSVirksomhed.sletRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/slet", ReplyAction="*")] - System.Threading.Tasks.Task sletAsync(Infrastructure.Soap.STSVirksomhed.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/Virksomhed/5/soeg", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSVirksomhed.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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(OpretInputType))] - Infrastructure.Soap.STSVirksomhed.soegResponse soeg(Infrastructure.Soap.STSVirksomhed.soegRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/soeg", ReplyAction="*")] - System.Threading.Tasks.Task soegAsync(Infrastructure.Soap.STSVirksomhed.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/Virksomhed/5/list", ReplyAction="*")] - [System.ServiceModel.FaultContractAttribute(typeof(Infrastructure.Soap.STSVirksomhed.ServiceplatformFaultType), Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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(OpretInputType))] - Infrastructure.Soap.STSVirksomhed.listResponse list(Infrastructure.Soap.STSVirksomhed.listRequest request); - - [System.ServiceModel.OperationContractAttribute(Action="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/list", ReplyAction="*")] - System.Threading.Tasks.Task listAsync(Infrastructure.Soap.STSVirksomhed.listRequest request); - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="OpretRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.OpretRequestType OpretRequest1; - - public opretRequest() { - } - - public opretRequest(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="OpretResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.OpretResponseType OpretResponse1; - - public opretResponse() { - } - - public opretResponse(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.OpretResponseType OpretResponse1) { - this.RequestHeader = RequestHeader; - this.OpretResponse1 = OpretResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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:virksomhed: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.3752.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 ImportInputType : object, System.ComponentModel.INotifyPropertyChanged { - - private VirksomhedType virksomhedField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Order=0)] - public VirksomhedType Virksomhed { - get { - return this.virksomhedField; - } - set { - this.virksomhedField = value; - this.RaisePropertyChanged("Virksomhed"); - } - } - - public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; - - protected void RaisePropertyChanged(string propertyName) { - System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; - if ((propertyChanged != null)) { - propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); - } - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/")] - public partial class ImporterResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private BasicOutputType importOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:virksomhed: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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="ImporterRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.ImporterRequestType ImporterRequest1; - - public importerRequest() { - } - - public importerRequest(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="ImporterResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.ImporterResponseType ImporterResponse1; - - public importerResponse() { - } - - public importerResponse(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.ImporterResponseType ImporterResponse1) { - this.RequestHeader = RequestHeader; - this.ImporterResponse1 = ImporterResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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:virksomhed: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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/")] - public partial class PassiverResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private BasicOutputType passiverOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:virksomhed: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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="PassiverRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.PassiverRequestType PassiverRequest1; - - public passiverRequest() { - } - - public passiverRequest(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="PassiverResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.PassiverResponseType PassiverResponse1; - - public passiverResponse() { - } - - public passiverResponse(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.PassiverResponseType PassiverResponse1) { - this.RequestHeader = RequestHeader; - this.PassiverResponse1 = PassiverResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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:virksomhed: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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/")] - public partial class LaesResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private LaesOutputType laesOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:virksomhed: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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="LaesRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.LaesRequestType LaesRequest1; - - public laesRequest() { - } - - public laesRequest(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="LaesResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.LaesResponseType LaesResponse1; - - public laesResponse() { - } - - public laesResponse(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.LaesResponseType LaesResponse1) { - this.RequestHeader = RequestHeader; - this.LaesResponse1 = LaesResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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:virksomhed: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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(TypeName="RetInputType", Namespace="urn:oio:sts:organisation:virksomhed:1.1.3.0")] - public partial class RetInputType1 : RetInputType { - - 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.Xml.Serialization.XmlIncludeAttribute(typeof(RetInputType1))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/")] - public partial class RetResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private BasicOutputType retOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:virksomhed: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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="RetRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.RetRequestType RetRequest1; - - public retRequest() { - } - - public retRequest(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="RetResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.RetResponseType RetResponse1; - - public retResponse() { - } - - public retResponse(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.RetResponseType RetResponse1) { - this.RequestHeader = RequestHeader; - this.RetResponse1 = RetResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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:virksomhed: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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/")] - public partial class SletResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private BasicOutputType sletOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:virksomhed: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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="SletRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.SletRequestType SletRequest1; - - public sletRequest() { - } - - public sletRequest(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="SletResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.SletResponseType SletResponse1; - - public sletResponse() { - } - - public sletResponse(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.SletResponseType SletResponse1) { - this.RequestHeader = RequestHeader; - this.SletResponse1 = SletResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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:virksomhed: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.3752.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.Xml.Serialization.XmlIncludeAttribute(typeof(SoegInputType1))] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.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.3752.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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/")] - public partial class SoegResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private SoegOutputType soegOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:virksomhed: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.3752.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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="SoegRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.SoegRequestType SoegRequest1; - - public soegRequest() { - } - - public soegRequest(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="SoegResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.SoegResponseType SoegResponse1; - - public soegResponse() { - } - - public soegResponse(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.SoegResponseType SoegResponse1) { - this.RequestHeader = RequestHeader; - this.SoegResponse1 = SoegResponse1; - } - } - - /// - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.8.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/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:virksomhed: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.3752.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.3752.0")] - [System.SerializableAttribute()] - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.ComponentModel.DesignerCategoryAttribute("code")] - [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/")] - public partial class ListResponseType : object, System.ComponentModel.INotifyPropertyChanged { - - private ListOutputType listOutputField; - - /// - [System.Xml.Serialization.XmlElementAttribute(Namespace="urn:oio:sts:organisation:virksomhed:1.1.3.0", Order=0)] - public ListOutputType 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.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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="ListRequest", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.ListRequestType ListRequest1; - - public listRequest() { - } - - public listRequest(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.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.Soap.STSVirksomhed.RequestHeaderType RequestHeader; - - [System.ServiceModel.MessageBodyMemberAttribute(Name="ListResponse", Namespace="http://serviceplatformen.dk/xml/wsdl/soap11/Organisation/Virksomhed/5/", Order=0)] - public Infrastructure.Soap.STSVirksomhed.ListResponseType ListResponse1; - - public listResponse() { - } - - public listResponse(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.ListResponseType ListResponse1) { - this.RequestHeader = RequestHeader; - this.ListResponse1 = ListResponse1; - } - } - - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] - public interface VirksomhedPortTypeChannel : Infrastructure.Soap.STSVirksomhed.VirksomhedPortType, System.ServiceModel.IClientChannel { - } - - [System.Diagnostics.DebuggerStepThroughAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] - public partial class VirksomhedPortTypeClient : System.ServiceModel.ClientBase, Infrastructure.Soap.STSVirksomhed.VirksomhedPortType { - - public VirksomhedPortTypeClient() { - } - - public VirksomhedPortTypeClient(string endpointConfigurationName) : - base(endpointConfigurationName) { - } - - public VirksomhedPortTypeClient(string endpointConfigurationName, string remoteAddress) : - base(endpointConfigurationName, remoteAddress) { - } - - public VirksomhedPortTypeClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : - base(endpointConfigurationName, remoteAddress) { - } - - public VirksomhedPortTypeClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : - base(binding, remoteAddress) { - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSVirksomhed.opretResponse Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.opret(Infrastructure.Soap.STSVirksomhed.opretRequest request) { - return base.Channel.opret(request); - } - - public Infrastructure.Soap.STSVirksomhed.OpretResponseType opret(ref Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.OpretRequestType OpretRequest1) { - Infrastructure.Soap.STSVirksomhed.opretRequest inValue = new Infrastructure.Soap.STSVirksomhed.opretRequest(); - inValue.RequestHeader = RequestHeader; - inValue.OpretRequest1 = OpretRequest1; - Infrastructure.Soap.STSVirksomhed.opretResponse retVal = ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).opret(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.OpretResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.opretAsync(Infrastructure.Soap.STSVirksomhed.opretRequest request) { - return base.Channel.opretAsync(request); - } - - public System.Threading.Tasks.Task opretAsync(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.OpretRequestType OpretRequest1) { - Infrastructure.Soap.STSVirksomhed.opretRequest inValue = new Infrastructure.Soap.STSVirksomhed.opretRequest(); - inValue.RequestHeader = RequestHeader; - inValue.OpretRequest1 = OpretRequest1; - return ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).opretAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSVirksomhed.importerResponse Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.importer(Infrastructure.Soap.STSVirksomhed.importerRequest request) { - return base.Channel.importer(request); - } - - public Infrastructure.Soap.STSVirksomhed.ImporterResponseType importer(ref Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.ImporterRequestType ImporterRequest1) { - Infrastructure.Soap.STSVirksomhed.importerRequest inValue = new Infrastructure.Soap.STSVirksomhed.importerRequest(); - inValue.RequestHeader = RequestHeader; - inValue.ImporterRequest1 = ImporterRequest1; - Infrastructure.Soap.STSVirksomhed.importerResponse retVal = ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).importer(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.ImporterResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.importerAsync(Infrastructure.Soap.STSVirksomhed.importerRequest request) { - return base.Channel.importerAsync(request); - } - - public System.Threading.Tasks.Task importerAsync(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.ImporterRequestType ImporterRequest1) { - Infrastructure.Soap.STSVirksomhed.importerRequest inValue = new Infrastructure.Soap.STSVirksomhed.importerRequest(); - inValue.RequestHeader = RequestHeader; - inValue.ImporterRequest1 = ImporterRequest1; - return ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).importerAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSVirksomhed.passiverResponse Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.passiver(Infrastructure.Soap.STSVirksomhed.passiverRequest request) { - return base.Channel.passiver(request); - } - - public Infrastructure.Soap.STSVirksomhed.PassiverResponseType passiver(ref Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.PassiverRequestType PassiverRequest1) { - Infrastructure.Soap.STSVirksomhed.passiverRequest inValue = new Infrastructure.Soap.STSVirksomhed.passiverRequest(); - inValue.RequestHeader = RequestHeader; - inValue.PassiverRequest1 = PassiverRequest1; - Infrastructure.Soap.STSVirksomhed.passiverResponse retVal = ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).passiver(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.PassiverResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.passiverAsync(Infrastructure.Soap.STSVirksomhed.passiverRequest request) { - return base.Channel.passiverAsync(request); - } - - public System.Threading.Tasks.Task passiverAsync(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.PassiverRequestType PassiverRequest1) { - Infrastructure.Soap.STSVirksomhed.passiverRequest inValue = new Infrastructure.Soap.STSVirksomhed.passiverRequest(); - inValue.RequestHeader = RequestHeader; - inValue.PassiverRequest1 = PassiverRequest1; - return ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).passiverAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSVirksomhed.laesResponse Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.laes(Infrastructure.Soap.STSVirksomhed.laesRequest request) { - return base.Channel.laes(request); - } - - public Infrastructure.Soap.STSVirksomhed.LaesResponseType laes(ref Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.LaesRequestType LaesRequest1) { - Infrastructure.Soap.STSVirksomhed.laesRequest inValue = new Infrastructure.Soap.STSVirksomhed.laesRequest(); - inValue.RequestHeader = RequestHeader; - inValue.LaesRequest1 = LaesRequest1; - Infrastructure.Soap.STSVirksomhed.laesResponse retVal = ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).laes(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.LaesResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.laesAsync(Infrastructure.Soap.STSVirksomhed.laesRequest request) { - return base.Channel.laesAsync(request); - } - - public System.Threading.Tasks.Task laesAsync(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.LaesRequestType LaesRequest1) { - Infrastructure.Soap.STSVirksomhed.laesRequest inValue = new Infrastructure.Soap.STSVirksomhed.laesRequest(); - inValue.RequestHeader = RequestHeader; - inValue.LaesRequest1 = LaesRequest1; - return ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).laesAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSVirksomhed.retResponse Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.ret(Infrastructure.Soap.STSVirksomhed.retRequest request) { - return base.Channel.ret(request); - } - - public Infrastructure.Soap.STSVirksomhed.RetResponseType ret(ref Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.RetRequestType RetRequest1) { - Infrastructure.Soap.STSVirksomhed.retRequest inValue = new Infrastructure.Soap.STSVirksomhed.retRequest(); - inValue.RequestHeader = RequestHeader; - inValue.RetRequest1 = RetRequest1; - Infrastructure.Soap.STSVirksomhed.retResponse retVal = ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).ret(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.RetResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.retAsync(Infrastructure.Soap.STSVirksomhed.retRequest request) { - return base.Channel.retAsync(request); - } - - public System.Threading.Tasks.Task retAsync(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.RetRequestType RetRequest1) { - Infrastructure.Soap.STSVirksomhed.retRequest inValue = new Infrastructure.Soap.STSVirksomhed.retRequest(); - inValue.RequestHeader = RequestHeader; - inValue.RetRequest1 = RetRequest1; - return ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).retAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSVirksomhed.sletResponse Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.slet(Infrastructure.Soap.STSVirksomhed.sletRequest request) { - return base.Channel.slet(request); - } - - public Infrastructure.Soap.STSVirksomhed.SletResponseType slet(ref Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.SletRequestType SletRequest1) { - Infrastructure.Soap.STSVirksomhed.sletRequest inValue = new Infrastructure.Soap.STSVirksomhed.sletRequest(); - inValue.RequestHeader = RequestHeader; - inValue.SletRequest1 = SletRequest1; - Infrastructure.Soap.STSVirksomhed.sletResponse retVal = ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).slet(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.SletResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.sletAsync(Infrastructure.Soap.STSVirksomhed.sletRequest request) { - return base.Channel.sletAsync(request); - } - - public System.Threading.Tasks.Task sletAsync(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.SletRequestType SletRequest1) { - Infrastructure.Soap.STSVirksomhed.sletRequest inValue = new Infrastructure.Soap.STSVirksomhed.sletRequest(); - inValue.RequestHeader = RequestHeader; - inValue.SletRequest1 = SletRequest1; - return ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).sletAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSVirksomhed.soegResponse Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.soeg(Infrastructure.Soap.STSVirksomhed.soegRequest request) { - return base.Channel.soeg(request); - } - - public Infrastructure.Soap.STSVirksomhed.SoegResponseType soeg(ref Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.SoegRequestType SoegRequest1) { - Infrastructure.Soap.STSVirksomhed.soegRequest inValue = new Infrastructure.Soap.STSVirksomhed.soegRequest(); - inValue.RequestHeader = RequestHeader; - inValue.SoegRequest1 = SoegRequest1; - Infrastructure.Soap.STSVirksomhed.soegResponse retVal = ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).soeg(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.SoegResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.soegAsync(Infrastructure.Soap.STSVirksomhed.soegRequest request) { - return base.Channel.soegAsync(request); - } - - public System.Threading.Tasks.Task soegAsync(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.SoegRequestType SoegRequest1) { - Infrastructure.Soap.STSVirksomhed.soegRequest inValue = new Infrastructure.Soap.STSVirksomhed.soegRequest(); - inValue.RequestHeader = RequestHeader; - inValue.SoegRequest1 = SoegRequest1; - return ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).soegAsync(inValue); - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - Infrastructure.Soap.STSVirksomhed.listResponse Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.list(Infrastructure.Soap.STSVirksomhed.listRequest request) { - return base.Channel.list(request); - } - - public Infrastructure.Soap.STSVirksomhed.ListResponseType list(ref Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.ListRequestType ListRequest1) { - Infrastructure.Soap.STSVirksomhed.listRequest inValue = new Infrastructure.Soap.STSVirksomhed.listRequest(); - inValue.RequestHeader = RequestHeader; - inValue.ListRequest1 = ListRequest1; - Infrastructure.Soap.STSVirksomhed.listResponse retVal = ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).list(inValue); - RequestHeader = retVal.RequestHeader; - return retVal.ListResponse1; - } - - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)] - System.Threading.Tasks.Task Infrastructure.Soap.STSVirksomhed.VirksomhedPortType.listAsync(Infrastructure.Soap.STSVirksomhed.listRequest request) { - return base.Channel.listAsync(request); - } - - public System.Threading.Tasks.Task listAsync(Infrastructure.Soap.STSVirksomhed.RequestHeaderType RequestHeader, Infrastructure.Soap.STSVirksomhed.ListRequestType ListRequest1) { - Infrastructure.Soap.STSVirksomhed.listRequest inValue = new Infrastructure.Soap.STSVirksomhed.listRequest(); - inValue.RequestHeader = RequestHeader; - inValue.ListRequest1 = ListRequest1; - return ((Infrastructure.Soap.STSVirksomhed.VirksomhedPortType)(this)).listAsync(inValue); - } - } -} diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Reference.svcmap b/Infrastructure.Soap/Connected Services/STSVirksomhed/Reference.svcmap deleted file mode 100644 index c590f9da6c..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/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.Soap/Connected Services/STSVirksomhed/RequestHeader.xsd b/Infrastructure.Soap/Connected Services/STSVirksomhed/RequestHeader.xsd deleted file mode 100644 index 86cc4c8882..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/RequestHeader.xsd +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/SagDokObjekt.xsd b/Infrastructure.Soap/Connected Services/STSVirksomhed/SagDokObjekt.xsd deleted file mode 100644 index 7d028a840d..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/SagDokObjekt.xsd +++ /dev/null @@ -1,803 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/ServiceplatformFaultMessage.wsdl b/Infrastructure.Soap/Connected Services/STSVirksomhed/ServiceplatformFaultMessage.wsdl deleted file mode 100644 index 7b2666e388..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/ServiceplatformFaultMessage.wsdl +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/ServiceplatformFault_1.xsd b/Infrastructure.Soap/Connected Services/STSVirksomhed/ServiceplatformFault_1.xsd deleted file mode 100644 index b0b7ce41e9..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/ServiceplatformFault_1.xsd +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/Virksomhed.xsd b/Infrastructure.Soap/Connected Services/STSVirksomhed/Virksomhed.xsd deleted file mode 100644 index b5dc4877a5..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/Virksomhed.xsd +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/VirksomhedOperationer.xsd b/Infrastructure.Soap/Connected Services/STSVirksomhed/VirksomhedOperationer.xsd deleted file mode 100644 index 3d1801d70c..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/VirksomhedOperationer.xsd +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/VirksomhedService.wsdl b/Infrastructure.Soap/Connected Services/STSVirksomhed/VirksomhedService.wsdl deleted file mode 100644 index 2283191a62..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/VirksomhedService.wsdl +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/VirksomhedServiceMsg.xsd b/Infrastructure.Soap/Connected Services/STSVirksomhed/VirksomhedServiceMsg.xsd deleted file mode 100644 index 7de9d0ee7a..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/VirksomhedServiceMsg.xsd +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/configuration.svcinfo b/Infrastructure.Soap/Connected Services/STSVirksomhed/configuration.svcinfo deleted file mode 100644 index a89847491a..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/configuration.svcinfo +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/configuration91.svcinfo b/Infrastructure.Soap/Connected Services/STSVirksomhed/configuration91.svcinfo deleted file mode 100644 index e16f999667..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/configuration91.svcinfo +++ /dev/null @@ -1,310 +0,0 @@ - - - - - - - VirksomhedBinding1 - - - - - - - - - - - - - - - - - - - - - StrongWildcard - - - - - - 65536 - - - - - - - - - System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - System.Text.UTF8Encoding - - - Buffered - - - - - - Text - - - System.ServiceModel.Configuration.BasicHttpSecurityElement - - - Transport - - - System.ServiceModel.Configuration.HttpTransportSecurityElement - - - None - - - None - - - System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement - - - Never - - - TransportSelected - - - (Collection) - - - - - - System.ServiceModel.Configuration.BasicHttpMessageSecurityElement - - - UserName - - - Default - - - - - - - VirksomhedBinding2 - - - - - - - - - - - - - - - - - - - - - StrongWildcard - - - - - - 65536 - - - - - - - - - System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement - - - 0 - - - 0 - - - 0 - - - 0 - - - 0 - - - System.Text.UTF8Encoding - - - Buffered - - - - - - Text - - - System.ServiceModel.Configuration.BasicHttpSecurityElement - - - None - - - System.ServiceModel.Configuration.HttpTransportSecurityElement - - - None - - - None - - - System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement - - - Never - - - TransportSelected - - - (Collection) - - - - - - System.ServiceModel.Configuration.BasicHttpMessageSecurityElement - - - UserName - - - Default - - - - - - - - - https://localhost:8080/service/Organisation/Virksomhed/5 - - - - - - basicHttpBinding - - - VirksomhedBinding1 - - - STSVirksomhed.VirksomhedPortType - - - System.ServiceModel.Configuration.AddressHeaderCollectionElement - - - <Header /> - - - System.ServiceModel.Configuration.IdentityElement - - - System.ServiceModel.Configuration.UserPrincipalNameElement - - - - - - System.ServiceModel.Configuration.ServicePrincipalNameElement - - - - - - System.ServiceModel.Configuration.DnsElement - - - - - - System.ServiceModel.Configuration.RsaElement - - - - - - System.ServiceModel.Configuration.CertificateElement - - - - - - System.ServiceModel.Configuration.CertificateReferenceElement - - - My - - - LocalMachine - - - FindBySubjectDistinguishedName - - - - - - False - - - VirksomhedPort1 - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Connected Services/STSVirksomhed/policies.wsdl b/Infrastructure.Soap/Connected Services/STSVirksomhed/policies.wsdl deleted file mode 100644 index ff60ad349b..0000000000 --- a/Infrastructure.Soap/Connected Services/STSVirksomhed/policies.wsdl +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Infrastructure.Soap.csproj b/Infrastructure.Soap/Infrastructure.Soap.csproj index 16151ca515..b4f4097405 100644 --- a/Infrastructure.Soap/Infrastructure.Soap.csproj +++ b/Infrastructure.Soap/Infrastructure.Soap.csproj @@ -65,21 +65,11 @@ True Reference.svcmap - - True - True - Reference.svcmap - True True Reference.svcmap - - True - True - Reference.svcmap - @@ -339,90 +329,6 @@ Designer - - Designer - - - Designer - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Designer - - - Designer - - - Designer - - - - Designer - - - Designer - - - - Designer - - - Designer - - - - Designer - Designer @@ -507,135 +413,6 @@ Designer - - Designer - - - Designer - - - Designer - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Reference.svcmap - - - Designer - - - - Designer - - - Designer - - - - Designer - - - Designer - - - Designer - - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - - - Designer - - - - - Designer @@ -681,51 +458,6 @@ - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - Designer - - - - - Designer - - - Designer - - - - - @@ -733,9 +465,7 @@ - - @@ -761,30 +491,6 @@ Reference.cs - - - - - - - - - WCF Proxy Generator - Reference.cs - - - - - - - - - - - WCF Proxy Generator - Reference.cs - - diff --git a/Infrastructure.Soap/Organisation/OrganisationServiceMsg.xsd b/Infrastructure.Soap/Organisation/OrganisationServiceMsg.xsd deleted file mode 100644 index dffc5dadb5..0000000000 --- a/Infrastructure.Soap/Organisation/OrganisationServiceMsg.xsd +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/GenerelleDefinitioner.xsd b/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/GenerelleDefinitioner.xsd deleted file mode 100644 index ef7604df82..0000000000 --- a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/GenerelleDefinitioner.xsd +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/Organisation.xsd b/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/Organisation.xsd deleted file mode 100644 index 6697e76bd2..0000000000 --- a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/Organisation.xsd +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/OrganisationBesked.xsd b/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/OrganisationBesked.xsd deleted file mode 100644 index b9e7066a5b..0000000000 --- a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/OrganisationBesked.xsd +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/OrganisationFaelles.xsd b/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/OrganisationFaelles.xsd deleted file mode 100644 index e8e1d1b218..0000000000 --- a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/OrganisationFaelles.xsd +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/OrganisationOperationer.xsd b/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/OrganisationOperationer.xsd deleted file mode 100644 index 0090b101b3..0000000000 --- a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/OrganisationOperationer.xsd +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/Part.xsd b/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/Part.xsd deleted file mode 100644 index a6b994566c..0000000000 --- a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/1.1.STS-3/Part.xsd +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/common/RequestHeader.xsd b/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/common/RequestHeader.xsd deleted file mode 100644 index 6b8579c4b9..0000000000 --- a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/common/RequestHeader.xsd +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/common/SagDokObjekt.xsd b/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/common/SagDokObjekt.xsd deleted file mode 100644 index 6962705066..0000000000 --- a/Infrastructure.Soap/Organisation/SF1500_EP_FS8/xsd/common/SagDokObjekt.xsd +++ /dev/null @@ -1,1059 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Organisation/sp/AuthorityContext_1.xsd b/Infrastructure.Soap/Organisation/sp/AuthorityContext_1.xsd deleted file mode 100644 index 5346245539..0000000000 --- a/Infrastructure.Soap/Organisation/sp/AuthorityContext_1.xsd +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Organisation/sp/CallContext_1.xsd b/Infrastructure.Soap/Organisation/sp/CallContext_1.xsd deleted file mode 100644 index 545b0beffc..0000000000 --- a/Infrastructure.Soap/Organisation/sp/CallContext_1.xsd +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Organisation/sp/InvocationContext_1.xsd b/Infrastructure.Soap/Organisation/sp/InvocationContext_1.xsd deleted file mode 100644 index e7ab223045..0000000000 --- a/Infrastructure.Soap/Organisation/sp/InvocationContext_1.xsd +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Organisation/sp/ServiceplatformFaultMessage_1.wsdl b/Infrastructure.Soap/Organisation/sp/ServiceplatformFaultMessage_1.wsdl deleted file mode 100644 index d0d0592848..0000000000 --- a/Infrastructure.Soap/Organisation/sp/ServiceplatformFaultMessage_1.wsdl +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Organisation/sp/ServiceplatformFault_1.xsd b/Infrastructure.Soap/Organisation/sp/ServiceplatformFault_1.xsd deleted file mode 100644 index 92b85d4711..0000000000 --- a/Infrastructure.Soap/Organisation/sp/ServiceplatformFault_1.xsd +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Organisation/sp/service.properties b/Infrastructure.Soap/Organisation/sp/service.properties deleted file mode 100644 index 6249fd70f6..0000000000 --- a/Infrastructure.Soap/Organisation/sp/service.properties +++ /dev/null @@ -1,6 +0,0 @@ -service.uuid=4afb35be-7b7a-45b3-ab01-bd5017a8b182 -service.entityID=http://organisation.serviceplatformen.dk/service/organisation/5 -service.token.wsdl.path= -service.context.wsdl.path= -service.class= -service.endpoint= \ No newline at end of file diff --git a/Infrastructure.Soap/Organisation/wsdl/context/OrganisationService.wsdl b/Infrastructure.Soap/Organisation/wsdl/context/OrganisationService.wsdl deleted file mode 100644 index c7710a1b1e..0000000000 --- a/Infrastructure.Soap/Organisation/wsdl/context/OrganisationService.wsdl +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Organisation/wsdl/context/policies.wsdl b/Infrastructure.Soap/Organisation/wsdl/context/policies.wsdl deleted file mode 100644 index fb482aab5a..0000000000 --- a/Infrastructure.Soap/Organisation/wsdl/context/policies.wsdl +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Organisation/wsdl/token/OrganisationService.wsdl b/Infrastructure.Soap/Organisation/wsdl/token/OrganisationService.wsdl deleted file mode 100644 index c7710a1b1e..0000000000 --- a/Infrastructure.Soap/Organisation/wsdl/token/OrganisationService.wsdl +++ /dev/null @@ -1,245 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Organisation/wsdl/token/policies.wsdl b/Infrastructure.Soap/Organisation/wsdl/token/policies.wsdl deleted file mode 100644 index 635b7af405..0000000000 --- a/Infrastructure.Soap/Organisation/wsdl/token/policies.wsdl +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/GenerelleDefinitioner.xsd b/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/GenerelleDefinitioner.xsd deleted file mode 100644 index ef7604df82..0000000000 --- a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/GenerelleDefinitioner.xsd +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/OrganisationFaelles.xsd b/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/OrganisationFaelles.xsd deleted file mode 100644 index e8e1d1b218..0000000000 --- a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/OrganisationFaelles.xsd +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/Part.xsd b/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/Part.xsd deleted file mode 100644 index a6b994566c..0000000000 --- a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/Part.xsd +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/Virksomhed.xsd b/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/Virksomhed.xsd deleted file mode 100644 index 4b4a20a6c9..0000000000 --- a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/Virksomhed.xsd +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/VirksomhedBesked.xsd b/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/VirksomhedBesked.xsd deleted file mode 100644 index 951454e3c5..0000000000 --- a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/VirksomhedBesked.xsd +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/VirksomhedOperationer.xsd b/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/VirksomhedOperationer.xsd deleted file mode 100644 index 453a73a435..0000000000 --- a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/1.1.STS-3/VirksomhedOperationer.xsd +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/common/RequestHeader.xsd b/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/common/RequestHeader.xsd deleted file mode 100644 index 6b8579c4b9..0000000000 --- a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/common/RequestHeader.xsd +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/common/SagDokObjekt.xsd b/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/common/SagDokObjekt.xsd deleted file mode 100644 index 6962705066..0000000000 --- a/Infrastructure.Soap/Virksomhed/SF1500_EP_FS11/xsd/common/SagDokObjekt.xsd +++ /dev/null @@ -1,1059 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Virksomhed/VirksomhedServiceMsg.xsd b/Infrastructure.Soap/Virksomhed/VirksomhedServiceMsg.xsd deleted file mode 100644 index 484dacf8ca..0000000000 --- a/Infrastructure.Soap/Virksomhed/VirksomhedServiceMsg.xsd +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Virksomhed/sp/AuthorityContext_1.xsd b/Infrastructure.Soap/Virksomhed/sp/AuthorityContext_1.xsd deleted file mode 100644 index 5346245539..0000000000 --- a/Infrastructure.Soap/Virksomhed/sp/AuthorityContext_1.xsd +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Virksomhed/sp/CallContext_1.xsd b/Infrastructure.Soap/Virksomhed/sp/CallContext_1.xsd deleted file mode 100644 index 545b0beffc..0000000000 --- a/Infrastructure.Soap/Virksomhed/sp/CallContext_1.xsd +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Virksomhed/sp/InvocationContext_1.xsd b/Infrastructure.Soap/Virksomhed/sp/InvocationContext_1.xsd deleted file mode 100644 index e7ab223045..0000000000 --- a/Infrastructure.Soap/Virksomhed/sp/InvocationContext_1.xsd +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Virksomhed/sp/ServiceplatformFaultMessage_1.wsdl b/Infrastructure.Soap/Virksomhed/sp/ServiceplatformFaultMessage_1.wsdl deleted file mode 100644 index d0d0592848..0000000000 --- a/Infrastructure.Soap/Virksomhed/sp/ServiceplatformFaultMessage_1.wsdl +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Virksomhed/sp/ServiceplatformFault_1.xsd b/Infrastructure.Soap/Virksomhed/sp/ServiceplatformFault_1.xsd deleted file mode 100644 index 92b85d4711..0000000000 --- a/Infrastructure.Soap/Virksomhed/sp/ServiceplatformFault_1.xsd +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Virksomhed/sp/service.properties b/Infrastructure.Soap/Virksomhed/sp/service.properties deleted file mode 100644 index 43d7bbdb80..0000000000 --- a/Infrastructure.Soap/Virksomhed/sp/service.properties +++ /dev/null @@ -1,6 +0,0 @@ -service.uuid=9fdac538-fae1-494d-b326-23898eeb182c -service.entityID=http://organisation.serviceplatformen.dk/service/organisation/5 -service.token.wsdl.path= -service.context.wsdl.path= -service.class= -service.endpoint= \ No newline at end of file diff --git a/Infrastructure.Soap/Virksomhed/wsdl/context/VirksomhedService.wsdl b/Infrastructure.Soap/Virksomhed/wsdl/context/VirksomhedService.wsdl deleted file mode 100644 index 924d8319f0..0000000000 --- a/Infrastructure.Soap/Virksomhed/wsdl/context/VirksomhedService.wsdl +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Virksomhed/wsdl/context/policies.wsdl b/Infrastructure.Soap/Virksomhed/wsdl/context/policies.wsdl deleted file mode 100644 index fb482aab5a..0000000000 --- a/Infrastructure.Soap/Virksomhed/wsdl/context/policies.wsdl +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/Virksomhed/wsdl/token/VirksomhedService.wsdl b/Infrastructure.Soap/Virksomhed/wsdl/token/VirksomhedService.wsdl deleted file mode 100644 index 924d8319f0..0000000000 --- a/Infrastructure.Soap/Virksomhed/wsdl/token/VirksomhedService.wsdl +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Infrastructure.Soap/Virksomhed/wsdl/token/policies.wsdl b/Infrastructure.Soap/Virksomhed/wsdl/token/policies.wsdl deleted file mode 100644 index 635b7af405..0000000000 --- a/Infrastructure.Soap/Virksomhed/wsdl/token/policies.wsdl +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Infrastructure.Soap/app.config b/Infrastructure.Soap/app.config index d82eeff9c0..82e3265e41 100644 --- a/Infrastructure.Soap/app.config +++ b/Infrastructure.Soap/app.config @@ -37,15 +37,9 @@ - - \ No newline at end of file diff --git a/Presentation.Web/Controllers/SSO/SSOController.cs b/Presentation.Web/Controllers/SSO/SSOController.cs index 08955db384..e535a79da9 100644 --- a/Presentation.Web/Controllers/SSO/SSOController.cs +++ b/Presentation.Web/Controllers/SSO/SSOController.cs @@ -5,6 +5,7 @@ using Core.ApplicationServices.SSO.Model; using Core.ApplicationServices.SSO.State; using Presentation.Web.Infrastructure.Attributes; +using Serilog; namespace Presentation.Web.Controllers.SSO { @@ -12,10 +13,12 @@ namespace Presentation.Web.Controllers.SSO public class SSOController : ApiController { private readonly ISsoFlowApplicationService _ssoFlowApplicationService; + private readonly ILogger _logger; - public SSOController(ISsoFlowApplicationService ssoFlowApplicationService) + public SSOController(ISsoFlowApplicationService ssoFlowApplicationService, ILogger logger) { _ssoFlowApplicationService = ssoFlowApplicationService; + _logger = logger; } [InternalApi] @@ -23,19 +26,24 @@ public SSOController(ISsoFlowApplicationService ssoFlowApplicationService) [Route("")] public IHttpActionResult SSO() { - var result = "User not authenticated"; - var finalState = _ssoFlowApplicationService.StartSsoLoginFlow(); - switch (finalState) + try { - case ErrorState errorState: - return SsoError(errorState.ErrorCode); + var finalState = _ssoFlowApplicationService.StartSsoLoginFlow(); + switch (finalState) + { + case ErrorState errorState: + return SsoError(errorState.ErrorCode); - case UserLoggedInState _: - return LoggedIn(); - - default: - return SsoError(SsoErrorCode.Unknown); + case UserLoggedInState _: + return LoggedIn(); + } + } + catch (Exception e) + { + _logger.Error(e, "Unknown error in SSO flow"); } + // Shut down gracefully + return SsoError(SsoErrorCode.Unknown); } private IHttpActionResult LoggedIn() diff --git a/Presentation.Web/Infrastructure/Factories/Authentication/OwinAuthenticationContextFactory.cs b/Presentation.Web/Infrastructure/Factories/Authentication/OwinAuthenticationContextFactory.cs index eaf3a9c8fa..16deae901f 100644 --- a/Presentation.Web/Infrastructure/Factories/Authentication/OwinAuthenticationContextFactory.cs +++ b/Presentation.Web/Infrastructure/Factories/Authentication/OwinAuthenticationContextFactory.cs @@ -97,20 +97,20 @@ private User GetAuthenticatedUser(IPrincipal user) return null; } - private int? ParseInteger(string toParse) + private int? ParseUserIdInteger(string toParse) { if (int.TryParse(toParse, out var asInt)) { return asInt; } - _logger.Error("Could not parse to int: {toParse}", toParse); + _logger.Debug("Could not parse user id to int: {toParse}", toParse); return null; } private int? GetUserId(IPrincipal user) { var userId = user.Identity.Name; - var id = ParseInteger(userId); + var id = ParseUserIdInteger(userId); return id; } } diff --git a/Presentation.Web/Ninject/KernelBuilder.cs b/Presentation.Web/Ninject/KernelBuilder.cs index b70523651b..dbcaf0d025 100644 --- a/Presentation.Web/Ninject/KernelBuilder.cs +++ b/Presentation.Web/Ninject/KernelBuilder.cs @@ -182,8 +182,7 @@ private void RegisterSSO(IKernel kernel) kernel.Bind().ToMethod(_ => new StsOrganisationIntegrationConfiguration( Settings.Default.SsoCertificateThumbprint, - Settings.Default.StsOrganisationEndpointHost, - Settings.Default.StsOrganisationAuthorizedMunicipalityCvr)) + Settings.Default.StsOrganisationEndpointHost)) .InSingletonScope(); kernel.Bind().To().InCommandScope(Mode); diff --git a/Presentation.Web/Properties/Settings.Designer.cs b/Presentation.Web/Properties/Settings.Designer.cs index 047018d0c6..b8003e1ca6 100644 --- a/Presentation.Web/Properties/Settings.Designer.cs +++ b/Presentation.Web/Properties/Settings.Designer.cs @@ -104,15 +104,6 @@ public string StsOrganisationEndpointHost { } } - [global::System.Configuration.ApplicationScopedSettingAttribute()] - [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] - [global::System.Configuration.DefaultSettingValueAttribute("58271713")] - public string StsOrganisationAuthorizedMunicipalityCvr { - get { - return ((string)(this["StsOrganisationAuthorizedMunicipalityCvr"])); - } - } - [global::System.Configuration.ApplicationScopedSettingAttribute()] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Configuration.DefaultSettingValueAttribute("https://kitos-local.strongminds.dk")] diff --git a/Presentation.Web/Properties/Settings.settings b/Presentation.Web/Properties/Settings.settings index 91b46d45f2..d9fa5f5544 100644 --- a/Presentation.Web/Properties/Settings.settings +++ b/Presentation.Web/Properties/Settings.settings @@ -29,9 +29,6 @@ exttest.serviceplatformen.dk - - 58271713 - https://kitos-local.strongminds.dk diff --git a/Presentation.Web/Web.config b/Presentation.Web/Web.config index bcc202051a..283fb1cc82 100644 --- a/Presentation.Web/Web.config +++ b/Presentation.Web/Web.config @@ -282,9 +282,6 @@ exttest.serviceplatformen.dk - - 58271713 - 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 1d2cec2ecf..da88411b16 100644 --- a/Presentation.Web/app/components/home/home.view.html +++ b/Presentation.Web/app/components/home/home.view.html @@ -92,6 +92,11 @@

Single Sign-On (SSO)

+