From 7fcfd41654db1a93dcdea12044f57568171c2e86 Mon Sep 17 00:00:00 2001 From: Rene Evertz Date: Thu, 5 Jun 2025 14:48:51 +0200 Subject: [PATCH] NameSpace Fix --- Host/Host.csproj.user | 4 +-- .../CompactCustomerDC_Customer.cs | 2 +- .../CompactCustomerDC_CustomerCompact.cs | 2 +- .../CompactCustomerTeamDC_CustomerTeam.cs | 2 +- .../CompactEmployeeDC_Employee.cs | 2 +- .../CompactGroupOfPeopleDC_GroupOfPeople.cs | 2 +- .../CompactInvoiceBaseDC_InvoiceBase.cs | 2 +- .../CompactOrganisationDC_Organisation.cs | 2 +- .../{Compact => }/CompactPersonDC_Person.cs | 2 +- .../CompactSupportConceptDC_SupportConcept.cs | 2 +- .../{Compact => }/CompactTeamDC_Team.cs | 2 +- .../{Compact => }/CompactTokenDC_Token.cs | 2 +- .../CompactUserDC_ApplicationUser.cs | 2 +- ...ctVertreterEmployeeDC_VertreterEmployee.cs | 2 +- .../CompactWohnheimDC_Wohnheim.cs | 2 +- ...GkvAbrechnungLightDC_GkvAbrechnungLight.cs | 2 +- ...tokollLightDC_GkvTransferprotokollLight.cs | 2 +- .../InvoiceBaseLightDC_InvoiceBaseLight.cs | 2 +- .../OrganisationLightDC_OrganisationLight.cs | 2 +- Service/DCEntityMapper/MapperFactory.cs | 2 +- Service/Service.csproj | 28 +++++++++---------- 21 files changed, 35 insertions(+), 35 deletions(-) rename Service/DCEntityMapper/{Compact => }/CompactCustomerDC_Customer.cs (98%) rename Service/DCEntityMapper/{Compact => }/CompactCustomerDC_CustomerCompact.cs (97%) rename Service/DCEntityMapper/{Compact => }/CompactCustomerTeamDC_CustomerTeam.cs (95%) rename Service/DCEntityMapper/{Compact => }/CompactEmployeeDC_Employee.cs (97%) rename Service/DCEntityMapper/{Compact => }/CompactGroupOfPeopleDC_GroupOfPeople.cs (95%) rename Service/DCEntityMapper/{Compact => }/CompactInvoiceBaseDC_InvoiceBase.cs (98%) rename Service/DCEntityMapper/{Compact => }/CompactOrganisationDC_Organisation.cs (98%) rename Service/DCEntityMapper/{Compact => }/CompactPersonDC_Person.cs (98%) rename Service/DCEntityMapper/{Compact => }/CompactSupportConceptDC_SupportConcept.cs (98%) rename Service/DCEntityMapper/{Compact => }/CompactTeamDC_Team.cs (95%) rename Service/DCEntityMapper/{Compact => }/CompactTokenDC_Token.cs (96%) rename Service/DCEntityMapper/{Compact => }/CompactUserDC_ApplicationUser.cs (96%) rename Service/DCEntityMapper/{Compact => }/CompactVertreterEmployeeDC_VertreterEmployee.cs (98%) rename Service/DCEntityMapper/{Compact => }/CompactWohnheimDC_Wohnheim.cs (97%) diff --git a/Host/Host.csproj.user b/Host/Host.csproj.user index f8b116048..991b1f2ce 100644 --- a/Host/Host.csproj.user +++ b/Host/Host.csproj.user @@ -1,9 +1,9 @@ - + BeWo2.0 true - Debug|Any CPU + Release|Any CPU false diff --git a/Service/DCEntityMapper/Compact/CompactCustomerDC_Customer.cs b/Service/DCEntityMapper/CompactCustomerDC_Customer.cs similarity index 98% rename from Service/DCEntityMapper/Compact/CompactCustomerDC_Customer.cs rename to Service/DCEntityMapper/CompactCustomerDC_Customer.cs index 80460d7ff..6d5fb0552 100644 --- a/Service/DCEntityMapper/Compact/CompactCustomerDC_Customer.cs +++ b/Service/DCEntityMapper/CompactCustomerDC_Customer.cs @@ -7,7 +7,7 @@ using BeWo.Data.Entities; using BS.Shared.DataContracts.Compact; using BS.Shared.Extensions; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactCustomerDC_Customer : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactCustomerDC_CustomerCompact.cs b/Service/DCEntityMapper/CompactCustomerDC_CustomerCompact.cs similarity index 97% rename from Service/DCEntityMapper/Compact/CompactCustomerDC_CustomerCompact.cs rename to Service/DCEntityMapper/CompactCustomerDC_CustomerCompact.cs index e8bc36432..e6ff654df 100644 --- a/Service/DCEntityMapper/Compact/CompactCustomerDC_CustomerCompact.cs +++ b/Service/DCEntityMapper/CompactCustomerDC_CustomerCompact.cs @@ -5,7 +5,7 @@ using BeWo.Data.Entities; using BS.Shared.DataContracts.Compact; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactCustomerDC_CustomerCompact : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactCustomerTeamDC_CustomerTeam.cs b/Service/DCEntityMapper/CompactCustomerTeamDC_CustomerTeam.cs similarity index 95% rename from Service/DCEntityMapper/Compact/CompactCustomerTeamDC_CustomerTeam.cs rename to Service/DCEntityMapper/CompactCustomerTeamDC_CustomerTeam.cs index 72050fc64..f6a94d266 100644 --- a/Service/DCEntityMapper/Compact/CompactCustomerTeamDC_CustomerTeam.cs +++ b/Service/DCEntityMapper/CompactCustomerTeamDC_CustomerTeam.cs @@ -4,7 +4,7 @@ using BeWo.Data.Entities; using BS.Shared.DataContracts.Compact; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactCustomerTeamDC_CustomerTeam : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactEmployeeDC_Employee.cs b/Service/DCEntityMapper/CompactEmployeeDC_Employee.cs similarity index 97% rename from Service/DCEntityMapper/Compact/CompactEmployeeDC_Employee.cs rename to Service/DCEntityMapper/CompactEmployeeDC_Employee.cs index e7835523a..577c9ecec 100644 --- a/Service/DCEntityMapper/Compact/CompactEmployeeDC_Employee.cs +++ b/Service/DCEntityMapper/CompactEmployeeDC_Employee.cs @@ -4,7 +4,7 @@ using System.Linq; using BS.Shared.DataContracts.Compact; using System.Collections.Generic; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactEmployeeDC_Employee : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactGroupOfPeopleDC_GroupOfPeople.cs b/Service/DCEntityMapper/CompactGroupOfPeopleDC_GroupOfPeople.cs similarity index 95% rename from Service/DCEntityMapper/Compact/CompactGroupOfPeopleDC_GroupOfPeople.cs rename to Service/DCEntityMapper/CompactGroupOfPeopleDC_GroupOfPeople.cs index 284fb9406..2a358d1b3 100644 --- a/Service/DCEntityMapper/Compact/CompactGroupOfPeopleDC_GroupOfPeople.cs +++ b/Service/DCEntityMapper/CompactGroupOfPeopleDC_GroupOfPeople.cs @@ -4,7 +4,7 @@ using BeWo.Data.Entities; using BS.Shared.DataContracts.Compact; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactGroupOfPeopleDC_GroupOfPeople : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactInvoiceBaseDC_InvoiceBase.cs b/Service/DCEntityMapper/CompactInvoiceBaseDC_InvoiceBase.cs similarity index 98% rename from Service/DCEntityMapper/Compact/CompactInvoiceBaseDC_InvoiceBase.cs rename to Service/DCEntityMapper/CompactInvoiceBaseDC_InvoiceBase.cs index effedfda9..e24f8960e 100644 --- a/Service/DCEntityMapper/Compact/CompactInvoiceBaseDC_InvoiceBase.cs +++ b/Service/DCEntityMapper/CompactInvoiceBaseDC_InvoiceBase.cs @@ -10,7 +10,7 @@ using BS.Shared.DataContracts; using BS.Shared.DataContracts.Light; using DevExpress.CodeParser; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactInvoiceBaseDC_InvoiceBase : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactOrganisationDC_Organisation.cs b/Service/DCEntityMapper/CompactOrganisationDC_Organisation.cs similarity index 98% rename from Service/DCEntityMapper/Compact/CompactOrganisationDC_Organisation.cs rename to Service/DCEntityMapper/CompactOrganisationDC_Organisation.cs index fda8cf5c0..15e6c6afb 100644 --- a/Service/DCEntityMapper/Compact/CompactOrganisationDC_Organisation.cs +++ b/Service/DCEntityMapper/CompactOrganisationDC_Organisation.cs @@ -8,7 +8,7 @@ using BS.Shared; using BS.Shared.DataContracts.Compact; using BS.Shared.Extensions; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactOrganisationDC_Organisation : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactPersonDC_Person.cs b/Service/DCEntityMapper/CompactPersonDC_Person.cs similarity index 98% rename from Service/DCEntityMapper/Compact/CompactPersonDC_Person.cs rename to Service/DCEntityMapper/CompactPersonDC_Person.cs index f7507ab93..dfa7ba617 100644 --- a/Service/DCEntityMapper/Compact/CompactPersonDC_Person.cs +++ b/Service/DCEntityMapper/CompactPersonDC_Person.cs @@ -3,7 +3,7 @@ using BS.Shared.DataContracts.Compact; using System.Collections.Generic; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactPersonDC_Person : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactSupportConceptDC_SupportConcept.cs b/Service/DCEntityMapper/CompactSupportConceptDC_SupportConcept.cs similarity index 98% rename from Service/DCEntityMapper/Compact/CompactSupportConceptDC_SupportConcept.cs rename to Service/DCEntityMapper/CompactSupportConceptDC_SupportConcept.cs index 0bc9566a2..3e5afb8c0 100644 --- a/Service/DCEntityMapper/Compact/CompactSupportConceptDC_SupportConcept.cs +++ b/Service/DCEntityMapper/CompactSupportConceptDC_SupportConcept.cs @@ -4,7 +4,7 @@ using BeWo.Data.Entities; using BS.Shared.DataContracts.Compact; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactSupportConceptDC_SupportConcept : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactTeamDC_Team.cs b/Service/DCEntityMapper/CompactTeamDC_Team.cs similarity index 95% rename from Service/DCEntityMapper/Compact/CompactTeamDC_Team.cs rename to Service/DCEntityMapper/CompactTeamDC_Team.cs index 0d4fb77ae..a55f1857f 100644 --- a/Service/DCEntityMapper/Compact/CompactTeamDC_Team.cs +++ b/Service/DCEntityMapper/CompactTeamDC_Team.cs @@ -4,7 +4,7 @@ using BeWo.Data.Entities; using BS.Shared.DataContracts.Compact; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactTeamDC_Team : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactTokenDC_Token.cs b/Service/DCEntityMapper/CompactTokenDC_Token.cs similarity index 96% rename from Service/DCEntityMapper/Compact/CompactTokenDC_Token.cs rename to Service/DCEntityMapper/CompactTokenDC_Token.cs index c647f2b50..a77a8f690 100644 --- a/Service/DCEntityMapper/Compact/CompactTokenDC_Token.cs +++ b/Service/DCEntityMapper/CompactTokenDC_Token.cs @@ -3,7 +3,7 @@ using BeWo.Data.Entities; using System.Linq; using BS.Shared.DataContracts.Compact; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactTokenDC_Token : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactUserDC_ApplicationUser.cs b/Service/DCEntityMapper/CompactUserDC_ApplicationUser.cs similarity index 96% rename from Service/DCEntityMapper/Compact/CompactUserDC_ApplicationUser.cs rename to Service/DCEntityMapper/CompactUserDC_ApplicationUser.cs index 209e71598..9d41c8d63 100644 --- a/Service/DCEntityMapper/Compact/CompactUserDC_ApplicationUser.cs +++ b/Service/DCEntityMapper/CompactUserDC_ApplicationUser.cs @@ -4,7 +4,7 @@ using BeWo.Data.Entities; using BS.Shared.DataContracts.Compact; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactUserDC_ApplicationUser : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactVertreterEmployeeDC_VertreterEmployee.cs b/Service/DCEntityMapper/CompactVertreterEmployeeDC_VertreterEmployee.cs similarity index 98% rename from Service/DCEntityMapper/Compact/CompactVertreterEmployeeDC_VertreterEmployee.cs rename to Service/DCEntityMapper/CompactVertreterEmployeeDC_VertreterEmployee.cs index 521bc3da8..552e19e7c 100644 --- a/Service/DCEntityMapper/Compact/CompactVertreterEmployeeDC_VertreterEmployee.cs +++ b/Service/DCEntityMapper/CompactVertreterEmployeeDC_VertreterEmployee.cs @@ -5,7 +5,7 @@ using System.Linq; using BS.Shared.DataContracts; using BS.Shared.DataContracts.Compact; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactVertreterEmployeeDC_VertreterEmployee : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Compact/CompactWohnheimDC_Wohnheim.cs b/Service/DCEntityMapper/CompactWohnheimDC_Wohnheim.cs similarity index 97% rename from Service/DCEntityMapper/Compact/CompactWohnheimDC_Wohnheim.cs rename to Service/DCEntityMapper/CompactWohnheimDC_Wohnheim.cs index 6644c29f9..f8fefe244 100644 --- a/Service/DCEntityMapper/Compact/CompactWohnheimDC_Wohnheim.cs +++ b/Service/DCEntityMapper/CompactWohnheimDC_Wohnheim.cs @@ -3,7 +3,7 @@ using BeWo.Data.Entities; using System.Linq; using BS.Shared.DataContracts.Compact; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper { public class CompactWohnheimDC_Wohnheim : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Light/GkvAbrechnungLightDC_GkvAbrechnungLight.cs b/Service/DCEntityMapper/Light/GkvAbrechnungLightDC_GkvAbrechnungLight.cs index 2dbb202fe..b5fb0d734 100644 --- a/Service/DCEntityMapper/Light/GkvAbrechnungLightDC_GkvAbrechnungLight.cs +++ b/Service/DCEntityMapper/Light/GkvAbrechnungLightDC_GkvAbrechnungLight.cs @@ -12,7 +12,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper.Light { public class GkvAbrechnungLightDC_GkvAbrechnungLight : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Light/GkvTransferProtokollLightDC_GkvTransferprotokollLight.cs b/Service/DCEntityMapper/Light/GkvTransferProtokollLightDC_GkvTransferprotokollLight.cs index 86fc9b50f..80599ad95 100644 --- a/Service/DCEntityMapper/Light/GkvTransferProtokollLightDC_GkvTransferprotokollLight.cs +++ b/Service/DCEntityMapper/Light/GkvTransferProtokollLightDC_GkvTransferprotokollLight.cs @@ -10,7 +10,7 @@ using System; using System.Collections.Generic; using System.Linq; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper.Light { public class GkvTransferProtokollLightDC_GkvTransferprotokollLight : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Light/InvoiceBaseLightDC_InvoiceBaseLight.cs b/Service/DCEntityMapper/Light/InvoiceBaseLightDC_InvoiceBaseLight.cs index ece488dbc..72cb7d6f0 100644 --- a/Service/DCEntityMapper/Light/InvoiceBaseLightDC_InvoiceBaseLight.cs +++ b/Service/DCEntityMapper/Light/InvoiceBaseLightDC_InvoiceBaseLight.cs @@ -10,7 +10,7 @@ using BS.Shared.Extensions; using BS.Shared.DataContracts.Light; using BeWo.Data.Entities.Light; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper.Light { public class InvoiceBaseLightDC_InvoiceBaseLight : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/Light/OrganisationLightDC_OrganisationLight.cs b/Service/DCEntityMapper/Light/OrganisationLightDC_OrganisationLight.cs index 71c6c8310..0895b67a2 100644 --- a/Service/DCEntityMapper/Light/OrganisationLightDC_OrganisationLight.cs +++ b/Service/DCEntityMapper/Light/OrganisationLightDC_OrganisationLight.cs @@ -10,7 +10,7 @@ using BS.Shared.Extensions; using BS.Shared.DataContracts.Light; using BeWo.Data.Entities.Light; -namespace BeWo.Service.DCEntityMapper.Compact +namespace BeWo.Service.DCEntityMapper.Light { public class OrganisationLightDC_OrganisationLight : AbstractIDCEntityMapper { diff --git a/Service/DCEntityMapper/MapperFactory.cs b/Service/DCEntityMapper/MapperFactory.cs index 31bc041cd..83ecaab71 100644 --- a/Service/DCEntityMapper/MapperFactory.cs +++ b/Service/DCEntityMapper/MapperFactory.cs @@ -1,4 +1,4 @@ -using BeWo.Service.DCEntityMapper.Compact; +using BeWo.Service.DCEntityMapper.Light; namespace BeWo.Service.DCEntityMapper { diff --git a/Service/Service.csproj b/Service/Service.csproj index 4f75c0466..d56395ef6 100644 --- a/Service/Service.csproj +++ b/Service/Service.csproj @@ -244,7 +244,7 @@ - + @@ -286,7 +286,7 @@ - + @@ -301,13 +301,13 @@ - - - - - - - + + + + + + + @@ -327,20 +327,20 @@ - + - - + + - + - +