From 33cfabdffa42aa92969dd7c59dc7592389209955 Mon Sep 17 00:00:00 2001 From: Sosees04ka <112947786+Sosees04ka@users.noreply.github.com> Date: Tue, 12 Nov 2024 12:21:29 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D1=8C=D1=82?= =?UTF-8?q?=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=BF=D1=80=D0=BE?= =?UTF-8?q?=D0=B5=D0=BA=D1=82=D0=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EmployeeManagmentApp.sln | 31 +++++++++++++++++++ EmployeeManagmentContracts/Class1.cs | 7 +++++ .../EmployeeManagmentContracts.csproj | 9 ++++++ EmployeeManagmentView/App.xaml | 9 ++++++ EmployeeManagmentView/App.xaml.cs | 14 +++++++++ EmployeeManagmentView/AssemblyInfo.cs | 10 ++++++ .../EmployeeManagmentView.csproj | 11 +++++++ EmployeeManagmentView/MainWindow.xaml | 12 +++++++ EmployeeManagmentView/MainWindow.xaml.cs | 24 ++++++++++++++ 9 files changed, 127 insertions(+) create mode 100644 EmployeeManagmentApp.sln create mode 100644 EmployeeManagmentContracts/Class1.cs create mode 100644 EmployeeManagmentContracts/EmployeeManagmentContracts.csproj create mode 100644 EmployeeManagmentView/App.xaml create mode 100644 EmployeeManagmentView/App.xaml.cs create mode 100644 EmployeeManagmentView/AssemblyInfo.cs create mode 100644 EmployeeManagmentView/EmployeeManagmentView.csproj create mode 100644 EmployeeManagmentView/MainWindow.xaml create mode 100644 EmployeeManagmentView/MainWindow.xaml.cs diff --git a/EmployeeManagmentApp.sln b/EmployeeManagmentApp.sln new file mode 100644 index 0000000..628ce7c --- /dev/null +++ b/EmployeeManagmentApp.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34622.214 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeManagmentView", "EmployeeManagmentView\EmployeeManagmentView.csproj", "{1A4AD060-3351-4B07-997E-59BAEDDAC493}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EmployeeManagmentContracts", "EmployeeManagmentContracts\EmployeeManagmentContracts.csproj", "{81DBCB6A-C1AD-4DC2-A016-C0ACB64AE2A7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1A4AD060-3351-4B07-997E-59BAEDDAC493}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1A4AD060-3351-4B07-997E-59BAEDDAC493}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1A4AD060-3351-4B07-997E-59BAEDDAC493}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1A4AD060-3351-4B07-997E-59BAEDDAC493}.Release|Any CPU.Build.0 = Release|Any CPU + {81DBCB6A-C1AD-4DC2-A016-C0ACB64AE2A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {81DBCB6A-C1AD-4DC2-A016-C0ACB64AE2A7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {81DBCB6A-C1AD-4DC2-A016-C0ACB64AE2A7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {81DBCB6A-C1AD-4DC2-A016-C0ACB64AE2A7}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {20DBA0FB-B8AD-4C17-A7A8-16069474A58A} + EndGlobalSection +EndGlobal diff --git a/EmployeeManagmentContracts/Class1.cs b/EmployeeManagmentContracts/Class1.cs new file mode 100644 index 0000000..4c47ca2 --- /dev/null +++ b/EmployeeManagmentContracts/Class1.cs @@ -0,0 +1,7 @@ +namespace EmployeeManagmentContracts +{ + public class Class1 + { + + } +} diff --git a/EmployeeManagmentContracts/EmployeeManagmentContracts.csproj b/EmployeeManagmentContracts/EmployeeManagmentContracts.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/EmployeeManagmentContracts/EmployeeManagmentContracts.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/EmployeeManagmentView/App.xaml b/EmployeeManagmentView/App.xaml new file mode 100644 index 0000000..e117ae8 --- /dev/null +++ b/EmployeeManagmentView/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/EmployeeManagmentView/App.xaml.cs b/EmployeeManagmentView/App.xaml.cs new file mode 100644 index 0000000..b444bc7 --- /dev/null +++ b/EmployeeManagmentView/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace EmployeeManagmentView +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/EmployeeManagmentView/AssemblyInfo.cs b/EmployeeManagmentView/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/EmployeeManagmentView/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/EmployeeManagmentView/EmployeeManagmentView.csproj b/EmployeeManagmentView/EmployeeManagmentView.csproj new file mode 100644 index 0000000..e3e33e3 --- /dev/null +++ b/EmployeeManagmentView/EmployeeManagmentView.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + enable + true + + + diff --git a/EmployeeManagmentView/MainWindow.xaml b/EmployeeManagmentView/MainWindow.xaml new file mode 100644 index 0000000..dd1825b --- /dev/null +++ b/EmployeeManagmentView/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/EmployeeManagmentView/MainWindow.xaml.cs b/EmployeeManagmentView/MainWindow.xaml.cs new file mode 100644 index 0000000..639f495 --- /dev/null +++ b/EmployeeManagmentView/MainWindow.xaml.cs @@ -0,0 +1,24 @@ +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace EmployeeManagmentView +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file