From 746353e54e397dd3d878ce3f72c11641f97cc4b3 Mon Sep 17 00:00:00 2001 From: Husky Date: Fri, 26 Feb 2021 18:31:57 +0100 Subject: [PATCH] =?UTF-8?q?WPF=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ConsoleApplication/ConsoleApplication.csproj | 2 + ConsoleApplication/Program.cs | 31 ++- DataStoring.Contract/IRepository.cs | 21 ++ DataStoring.EfCore/DPContext.cs | 30 +++ DataStoring.EfCore/DataStoring.EfCore.csproj | 22 ++ .../20210226140235_Initialcommit.Designer.cs | 49 ++++ .../20210226140235_Initialcommit.cs | 33 +++ .../20210226145817_TabellenAdded.Designer.cs | 209 ++++++++++++++++++ .../20210226145817_TabellenAdded.cs | 136 ++++++++++++ .../Migrations/DPContextModelSnapshot.cs | 207 +++++++++++++++++ DataStoring.EfCore/Repository.cs | 55 +++++ .../DichtheitManagement.Contract.csproj | 11 + .../IAuftraggeberManager.cs | 12 + .../IBaustelleManager.cs | 14 ++ DichtheitManagement/AuftraggeberManager.cs | 25 +++ DichtheitManagement/BaustelleManager.cs | 27 +++ .../DichtheitManagement.csproj | 12 + Dichtheitsprüfung.sln | 82 +++++++ GuiWPF/App.xaml | 9 + GuiWPF/App.xaml.cs | 17 ++ GuiWPF/AssemblyInfo.cs | 10 + GuiWPF/GuiWPF.csproj | 9 + GuiWPF/MainWindow.xaml | 12 + GuiWPF/MainWindow.xaml.cs | 28 +++ Mappings/KernelInitializer.cs | 20 ++ Mappings/Mappings.csproj | 19 ++ Models/Auftraggeber.cs | 2 +- Models/Bauvorhaben.cs | 12 +- Models/Inspektionsobjekt.cs | 29 +-- Models/MeasureData.cs | 1 + Models/PressureTest.cs | 8 +- ProtokollWriter/SBTextFileWriter.cs | 15 +- SW01_SW02.txt | 128 +++++++++++ nuget.config | 1 - 34 files changed, 1261 insertions(+), 37 deletions(-) create mode 100644 DataStoring.Contract/IRepository.cs create mode 100644 DataStoring.EfCore/DPContext.cs create mode 100644 DataStoring.EfCore/DataStoring.EfCore.csproj create mode 100644 DataStoring.EfCore/Migrations/20210226140235_Initialcommit.Designer.cs create mode 100644 DataStoring.EfCore/Migrations/20210226140235_Initialcommit.cs create mode 100644 DataStoring.EfCore/Migrations/20210226145817_TabellenAdded.Designer.cs create mode 100644 DataStoring.EfCore/Migrations/20210226145817_TabellenAdded.cs create mode 100644 DataStoring.EfCore/Migrations/DPContextModelSnapshot.cs create mode 100644 DataStoring.EfCore/Repository.cs create mode 100644 DichtheitManagement.Contract/DichtheitManagement.Contract.csproj create mode 100644 DichtheitManagement.Contract/IAuftraggeberManager.cs create mode 100644 DichtheitManagement.Contract/IBaustelleManager.cs create mode 100644 DichtheitManagement/AuftraggeberManager.cs create mode 100644 DichtheitManagement/BaustelleManager.cs create mode 100644 DichtheitManagement/DichtheitManagement.csproj create mode 100644 GuiWPF/App.xaml create mode 100644 GuiWPF/App.xaml.cs create mode 100644 GuiWPF/AssemblyInfo.cs create mode 100644 GuiWPF/GuiWPF.csproj create mode 100644 GuiWPF/MainWindow.xaml create mode 100644 GuiWPF/MainWindow.xaml.cs create mode 100644 Mappings/KernelInitializer.cs create mode 100644 Mappings/Mappings.csproj create mode 100644 SW01_SW02.txt diff --git a/ConsoleApplication/ConsoleApplication.csproj b/ConsoleApplication/ConsoleApplication.csproj index 9df6079..78886ba 100644 --- a/ConsoleApplication/ConsoleApplication.csproj +++ b/ConsoleApplication/ConsoleApplication.csproj @@ -3,6 +3,7 @@ + @@ -10,6 +11,7 @@ + -