From 27ffd58a35a04c7c6c62dfaeb7c7bdaab2181de7 Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Tue, 3 Jan 2023 14:26:29 +0100 Subject: [PATCH] etwas mehr Struktur --- AIS/bsmd.AIS2Service/bsmd.AIS2Service.csproj | 30 +++++++++---------- .../{ => decoding}/AISDecoder.cs | 0 .../{ => decoding}/AIS_BaseStation.cs | 0 .../{ => decoding}/AIS_BaseStationReport.cs | 0 .../{ => decoding}/AIS_ClassB.cs | 0 .../{ => decoding}/AIS_ClassBExt.cs | 0 .../{ => decoding}/AIS_ClassBStatic.cs | 0 .../{ => decoding}/AIS_PosReport.cs | 0 .../{ => decoding}/AIS_StaticData.cs | 0 AIS/bsmd.AIS2Service/{ => decoding}/NMEA.cs | 0 .../{ => decoding}/NMEA_AIS_Sentence.cs | 0 .../{ => decoding}/NMEA_PNMLS_Sentence.cs | 0 .../{ => webservice}/AISController.cs | 0 .../{ => webservice}/SLRController.cs | 0 .../{ => webservice}/StartupWebAPI.cs | 0 .../{ => webservice}/ZonesController.cs | 0 16 files changed, 15 insertions(+), 15 deletions(-) rename AIS/bsmd.AIS2Service/{ => decoding}/AISDecoder.cs (100%) rename AIS/bsmd.AIS2Service/{ => decoding}/AIS_BaseStation.cs (100%) rename AIS/bsmd.AIS2Service/{ => decoding}/AIS_BaseStationReport.cs (100%) rename AIS/bsmd.AIS2Service/{ => decoding}/AIS_ClassB.cs (100%) rename AIS/bsmd.AIS2Service/{ => decoding}/AIS_ClassBExt.cs (100%) rename AIS/bsmd.AIS2Service/{ => decoding}/AIS_ClassBStatic.cs (100%) rename AIS/bsmd.AIS2Service/{ => decoding}/AIS_PosReport.cs (100%) rename AIS/bsmd.AIS2Service/{ => decoding}/AIS_StaticData.cs (100%) rename AIS/bsmd.AIS2Service/{ => decoding}/NMEA.cs (100%) rename AIS/bsmd.AIS2Service/{ => decoding}/NMEA_AIS_Sentence.cs (100%) rename AIS/bsmd.AIS2Service/{ => decoding}/NMEA_PNMLS_Sentence.cs (100%) rename AIS/bsmd.AIS2Service/{ => webservice}/AISController.cs (100%) rename AIS/bsmd.AIS2Service/{ => webservice}/SLRController.cs (100%) rename AIS/bsmd.AIS2Service/{ => webservice}/StartupWebAPI.cs (100%) rename AIS/bsmd.AIS2Service/{ => webservice}/ZonesController.cs (100%) diff --git a/AIS/bsmd.AIS2Service/bsmd.AIS2Service.csproj b/AIS/bsmd.AIS2Service/bsmd.AIS2Service.csproj index 2da0d300..c944cd1e 100644 --- a/AIS/bsmd.AIS2Service/bsmd.AIS2Service.csproj +++ b/AIS/bsmd.AIS2Service/bsmd.AIS2Service.csproj @@ -94,25 +94,25 @@ AIS2_Service.cs - - + + - - - - - - + + + + + + - + - - - + + + Component @@ -129,10 +129,10 @@ - - + + - + diff --git a/AIS/bsmd.AIS2Service/AISDecoder.cs b/AIS/bsmd.AIS2Service/decoding/AISDecoder.cs similarity index 100% rename from AIS/bsmd.AIS2Service/AISDecoder.cs rename to AIS/bsmd.AIS2Service/decoding/AISDecoder.cs diff --git a/AIS/bsmd.AIS2Service/AIS_BaseStation.cs b/AIS/bsmd.AIS2Service/decoding/AIS_BaseStation.cs similarity index 100% rename from AIS/bsmd.AIS2Service/AIS_BaseStation.cs rename to AIS/bsmd.AIS2Service/decoding/AIS_BaseStation.cs diff --git a/AIS/bsmd.AIS2Service/AIS_BaseStationReport.cs b/AIS/bsmd.AIS2Service/decoding/AIS_BaseStationReport.cs similarity index 100% rename from AIS/bsmd.AIS2Service/AIS_BaseStationReport.cs rename to AIS/bsmd.AIS2Service/decoding/AIS_BaseStationReport.cs diff --git a/AIS/bsmd.AIS2Service/AIS_ClassB.cs b/AIS/bsmd.AIS2Service/decoding/AIS_ClassB.cs similarity index 100% rename from AIS/bsmd.AIS2Service/AIS_ClassB.cs rename to AIS/bsmd.AIS2Service/decoding/AIS_ClassB.cs diff --git a/AIS/bsmd.AIS2Service/AIS_ClassBExt.cs b/AIS/bsmd.AIS2Service/decoding/AIS_ClassBExt.cs similarity index 100% rename from AIS/bsmd.AIS2Service/AIS_ClassBExt.cs rename to AIS/bsmd.AIS2Service/decoding/AIS_ClassBExt.cs diff --git a/AIS/bsmd.AIS2Service/AIS_ClassBStatic.cs b/AIS/bsmd.AIS2Service/decoding/AIS_ClassBStatic.cs similarity index 100% rename from AIS/bsmd.AIS2Service/AIS_ClassBStatic.cs rename to AIS/bsmd.AIS2Service/decoding/AIS_ClassBStatic.cs diff --git a/AIS/bsmd.AIS2Service/AIS_PosReport.cs b/AIS/bsmd.AIS2Service/decoding/AIS_PosReport.cs similarity index 100% rename from AIS/bsmd.AIS2Service/AIS_PosReport.cs rename to AIS/bsmd.AIS2Service/decoding/AIS_PosReport.cs diff --git a/AIS/bsmd.AIS2Service/AIS_StaticData.cs b/AIS/bsmd.AIS2Service/decoding/AIS_StaticData.cs similarity index 100% rename from AIS/bsmd.AIS2Service/AIS_StaticData.cs rename to AIS/bsmd.AIS2Service/decoding/AIS_StaticData.cs diff --git a/AIS/bsmd.AIS2Service/NMEA.cs b/AIS/bsmd.AIS2Service/decoding/NMEA.cs similarity index 100% rename from AIS/bsmd.AIS2Service/NMEA.cs rename to AIS/bsmd.AIS2Service/decoding/NMEA.cs diff --git a/AIS/bsmd.AIS2Service/NMEA_AIS_Sentence.cs b/AIS/bsmd.AIS2Service/decoding/NMEA_AIS_Sentence.cs similarity index 100% rename from AIS/bsmd.AIS2Service/NMEA_AIS_Sentence.cs rename to AIS/bsmd.AIS2Service/decoding/NMEA_AIS_Sentence.cs diff --git a/AIS/bsmd.AIS2Service/NMEA_PNMLS_Sentence.cs b/AIS/bsmd.AIS2Service/decoding/NMEA_PNMLS_Sentence.cs similarity index 100% rename from AIS/bsmd.AIS2Service/NMEA_PNMLS_Sentence.cs rename to AIS/bsmd.AIS2Service/decoding/NMEA_PNMLS_Sentence.cs diff --git a/AIS/bsmd.AIS2Service/AISController.cs b/AIS/bsmd.AIS2Service/webservice/AISController.cs similarity index 100% rename from AIS/bsmd.AIS2Service/AISController.cs rename to AIS/bsmd.AIS2Service/webservice/AISController.cs diff --git a/AIS/bsmd.AIS2Service/SLRController.cs b/AIS/bsmd.AIS2Service/webservice/SLRController.cs similarity index 100% rename from AIS/bsmd.AIS2Service/SLRController.cs rename to AIS/bsmd.AIS2Service/webservice/SLRController.cs diff --git a/AIS/bsmd.AIS2Service/StartupWebAPI.cs b/AIS/bsmd.AIS2Service/webservice/StartupWebAPI.cs similarity index 100% rename from AIS/bsmd.AIS2Service/StartupWebAPI.cs rename to AIS/bsmd.AIS2Service/webservice/StartupWebAPI.cs diff --git a/AIS/bsmd.AIS2Service/ZonesController.cs b/AIS/bsmd.AIS2Service/webservice/ZonesController.cs similarity index 100% rename from AIS/bsmd.AIS2Service/ZonesController.cs rename to AIS/bsmd.AIS2Service/webservice/ZonesController.cs