diff --git a/EmployeeManager.csproj b/EmployeeManager.csproj index 9ce43c8..c9e6206 100644 --- a/EmployeeManager.csproj +++ b/EmployeeManager.csproj @@ -55,7 +55,9 @@ MSBuild:Compile Designer - + + + MSBuild:Compile Designer @@ -63,12 +65,16 @@ App.xaml Code - + MainWindow.xaml Code + + + + Code @@ -94,5 +100,6 @@ + \ No newline at end of file diff --git a/Model/DataWorker.cs b/Model/DataWorker.cs new file mode 100644 index 0000000..a8c900e --- /dev/null +++ b/Model/DataWorker.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EmployeeManager.Model +{ + public static class DataWorker + { + } +} diff --git a/Model/Employees.cs b/Model/Employees.cs new file mode 100644 index 0000000..c6d85ea --- /dev/null +++ b/Model/Employees.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EmployeeManager.Model +{ + internal class Employees + { + } +} diff --git a/Model/PhysicalPerson.cs b/Model/PhysicalPerson.cs new file mode 100644 index 0000000..9a4d6a1 --- /dev/null +++ b/Model/PhysicalPerson.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EmployeeManager.Model +{ + internal class PhysicalPerson + { + } +} diff --git a/Model/Salary.cs b/Model/Salary.cs new file mode 100644 index 0000000..c8600ce --- /dev/null +++ b/Model/Salary.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EmployeeManager.Model +{ + internal class Salary + { + } +} diff --git a/Model/Vacation.cs b/Model/Vacation.cs new file mode 100644 index 0000000..3d2c3f6 --- /dev/null +++ b/Model/Vacation.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EmployeeManager.Model +{ + internal class Vacation + { + } +} diff --git a/MainWindow.xaml b/View/MainWindow.xaml similarity index 78% rename from MainWindow.xaml rename to View/MainWindow.xaml index 49b1fae..54e1392 100644 --- a/MainWindow.xaml +++ b/View/MainWindow.xaml @@ -1,9 +1,9 @@ - diff --git a/MainWindow.xaml.cs b/View/MainWindow.xaml.cs similarity index 95% rename from MainWindow.xaml.cs rename to View/MainWindow.xaml.cs index cf8b8d7..9308402 100644 --- a/MainWindow.xaml.cs +++ b/View/MainWindow.xaml.cs @@ -13,7 +13,7 @@ using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; -namespace EmployeeManager +namespace EmployeeManager.View { /// /// Логика взаимодействия для MainWindow.xaml diff --git a/ViewModel/DataManageViewModel.cs b/ViewModel/DataManageViewModel.cs new file mode 100644 index 0000000..9f8c716 --- /dev/null +++ b/ViewModel/DataManageViewModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace EmployeeManager.ViewModel +{ + internal class DataManageViewModel + { + } +}