diff --git a/BeWo.sln b/BeWo.sln index add78c651..bb2aa1d12 100644 --- a/BeWo.sln +++ b/BeWo.sln @@ -561,6 +561,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ForumEV", "ReportImp\ForumE EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BzhEssenGGmbH", "ReportImp\BzhEssenGGmbH\BzhEssenGGmbH.csproj", "{284983D5-2982-4A96-87B9-AEE265393D75}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChristianWilke", "ReportImp\ChristianWilke\ChristianWilke.csproj", "{0814AFF5-295C-457A-9741-2BE309E9D437}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|.NET = Debug|.NET @@ -4436,6 +4438,22 @@ Global {284983D5-2982-4A96-87B9-AEE265393D75}.Release|Mixed Platforms.Build.0 = Release|Any CPU {284983D5-2982-4A96-87B9-AEE265393D75}.Release|x86.ActiveCfg = Release|Any CPU {284983D5-2982-4A96-87B9-AEE265393D75}.Release|x86.Build.0 = Release|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Debug|.NET.ActiveCfg = Debug|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Debug|.NET.Build.0 = Debug|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Debug|x86.ActiveCfg = Debug|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Debug|x86.Build.0 = Debug|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Release|.NET.ActiveCfg = Release|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Release|.NET.Build.0 = Release|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Release|Any CPU.Build.0 = Release|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Release|x86.ActiveCfg = Release|Any CPU + {0814AFF5-295C-457A-9741-2BE309E9D437}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -4712,6 +4730,7 @@ Global {F38B83C7-A8EF-48EA-8B5B-9395174AA8AF} = {D8A691C5-146D-4613-86CC-438F02FE9106} {FB62ADF8-6CE8-44B5-9828-D9E31E7A5D2B} = {D8A691C5-146D-4613-86CC-438F02FE9106} {284983D5-2982-4A96-87B9-AEE265393D75} = {D8A691C5-146D-4613-86CC-438F02FE9106} + {0814AFF5-295C-457A-9741-2BE309E9D437} = {D8A691C5-146D-4613-86CC-438F02FE9106} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {FBE985BB-9F0F-4DBB-8F94-ABC37A803FF9} diff --git a/ReportImp/ChristianWilke/ChristianWilke.csproj b/ReportImp/ChristianWilke/ChristianWilke.csproj index 3cc3237ef..200e3479c 100644 --- a/ReportImp/ChristianWilke/ChristianWilke.csproj +++ b/ReportImp/ChristianWilke/ChristianWilke.csproj @@ -48,6 +48,8 @@ + + Component @@ -92,6 +94,10 @@ {40D8B312-EA64-49E3-A31A-5E57ED4D5654} Report + + {094331c3-ecee-4c89-bbfd-4c9ded89f0ef} + Service + {2F50B83D-A3F0-4EC4-979A-3F9B7E3D8ED4} Shared diff --git a/ReportImp/LebenUndWohnenChristianWilke/Export/CustomDataExporter.cs b/ReportImp/ChristianWilke/Export/CustomDataExporter.cs similarity index 89% rename from ReportImp/LebenUndWohnenChristianWilke/Export/CustomDataExporter.cs rename to ReportImp/ChristianWilke/Export/CustomDataExporter.cs index 21ec6a144..d906c5fc1 100644 --- a/ReportImp/LebenUndWohnenChristianWilke/Export/CustomDataExporter.cs +++ b/ReportImp/ChristianWilke/Export/CustomDataExporter.cs @@ -6,7 +6,7 @@ using BS.Shared.Core; using BS.Shared.DataContracts; using Utils = BS.Shared.Core.Utils; -namespace LebenUndWohnenChristianWilke.Export +namespace ChristianWilke.Export { public class CustomDataExporter : DataExporter { diff --git a/ReportImp/LebenUndWohnenChristianWilke/Export/DatevExporter.cs b/ReportImp/ChristianWilke/Export/DatevExporter.cs similarity index 99% rename from ReportImp/LebenUndWohnenChristianWilke/Export/DatevExporter.cs rename to ReportImp/ChristianWilke/Export/DatevExporter.cs index 8e63a2592..612b1aa27 100644 --- a/ReportImp/LebenUndWohnenChristianWilke/Export/DatevExporter.cs +++ b/ReportImp/ChristianWilke/Export/DatevExporter.cs @@ -10,7 +10,7 @@ using BS.Shared; using BS.Shared.DataContracts; using BS.Shared.Extensions; -namespace LebenUndWohnenChristianWilke.Export +namespace ChristianWilke.Export { public class DatevExporter { diff --git a/ReportImp/LebenUndWohnenChristianWilke/LebenUndWohnenChristianWilke.csproj b/ReportImp/LebenUndWohnenChristianWilke/LebenUndWohnenChristianWilke.csproj index 52a4462ec..f6b3bee3e 100644 --- a/ReportImp/LebenUndWohnenChristianWilke/LebenUndWohnenChristianWilke.csproj +++ b/ReportImp/LebenUndWohnenChristianWilke/LebenUndWohnenChristianWilke.csproj @@ -48,8 +48,6 @@ - -