From 42794b628451a981d8c5558e23c9e8369348a952 Mon Sep 17 00:00:00 2001 From: Matthew Burke Date: Mon, 17 Jul 2023 20:41:20 -0400 Subject: [PATCH] Add project files. --- PWAPPv2.sln | 25 +++++ PWAPPv2/App.config | 6 ++ PWAPPv2/App.xaml | 9 ++ PWAPPv2/App.xaml.cs | 17 ++++ PWAPPv2/Config/Config.xml | 7 ++ PWAPPv2/MainWindow.xaml | 88 +++++++++++++++++ PWAPPv2/MainWindow.xaml.cs | 64 +++++++++++++ PWAPPv2/PWAPPv2.csproj | 107 +++++++++++++++++++++ PWAPPv2/Properties/AssemblyInfo.cs | 55 +++++++++++ PWAPPv2/Properties/Resources.Designer.cs | 70 ++++++++++++++ PWAPPv2/Properties/Resources.resx | 117 +++++++++++++++++++++++ PWAPPv2/Properties/Settings.Designer.cs | 29 ++++++ PWAPPv2/Properties/Settings.settings | 7 ++ PWAPPv2/Source/APIConfig.cs | 46 +++++++++ PWAPPv2/Source/Patient.cs | 20 ++++ PWAPPv2/Source/PatientGUIAdapter.cs | 26 +++++ 16 files changed, 693 insertions(+) create mode 100644 PWAPPv2.sln create mode 100644 PWAPPv2/App.config create mode 100644 PWAPPv2/App.xaml create mode 100644 PWAPPv2/App.xaml.cs create mode 100644 PWAPPv2/Config/Config.xml create mode 100644 PWAPPv2/MainWindow.xaml create mode 100644 PWAPPv2/MainWindow.xaml.cs create mode 100644 PWAPPv2/PWAPPv2.csproj create mode 100644 PWAPPv2/Properties/AssemblyInfo.cs create mode 100644 PWAPPv2/Properties/Resources.Designer.cs create mode 100644 PWAPPv2/Properties/Resources.resx create mode 100644 PWAPPv2/Properties/Settings.Designer.cs create mode 100644 PWAPPv2/Properties/Settings.settings create mode 100644 PWAPPv2/Source/APIConfig.cs create mode 100644 PWAPPv2/Source/Patient.cs create mode 100644 PWAPPv2/Source/PatientGUIAdapter.cs diff --git a/PWAPPv2.sln b/PWAPPv2.sln new file mode 100644 index 0000000..9ee99ea --- /dev/null +++ b/PWAPPv2.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.33529.622 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PWAPPv2", "PWAPPv2\PWAPPv2.csproj", "{45E26AF8-41D7-4308-A2C8-D55A0350DB47}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {45E26AF8-41D7-4308-A2C8-D55A0350DB47}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {45E26AF8-41D7-4308-A2C8-D55A0350DB47}.Debug|Any CPU.Build.0 = Debug|Any CPU + {45E26AF8-41D7-4308-A2C8-D55A0350DB47}.Release|Any CPU.ActiveCfg = Release|Any CPU + {45E26AF8-41D7-4308-A2C8-D55A0350DB47}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F569BE64-7680-4547-A256-8D3044750DC5} + EndGlobalSection +EndGlobal diff --git a/PWAPPv2/App.config b/PWAPPv2/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/PWAPPv2/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/PWAPPv2/App.xaml b/PWAPPv2/App.xaml new file mode 100644 index 0000000..f1eab26 --- /dev/null +++ b/PWAPPv2/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/PWAPPv2/App.xaml.cs b/PWAPPv2/App.xaml.cs new file mode 100644 index 0000000..1147aa4 --- /dev/null +++ b/PWAPPv2/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace PWAPPv2 +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/PWAPPv2/Config/Config.xml b/PWAPPv2/Config/Config.xml new file mode 100644 index 0000000..8cae57d --- /dev/null +++ b/PWAPPv2/Config/Config.xml @@ -0,0 +1,7 @@ + + + testdoctor + testdoctor + 210 + 12345678 + \ No newline at end of file diff --git a/PWAPPv2/MainWindow.xaml b/PWAPPv2/MainWindow.xaml new file mode 100644 index 0000000..b0d8128 --- /dev/null +++ b/PWAPPv2/MainWindow.xaml @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +