From d9eac56d511819e9a411797702bf465003acf507 Mon Sep 17 00:00:00 2001 From: K Date: Sun, 21 Apr 2024 18:58:26 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BD=D0=B0=D0=B4=D0=B5=D0=BB=D0=B0=D0=BB=20?= =?UTF-8?q?=D0=BF=D0=B0=D0=BF=D0=BE=D0=BA=20=D0=B8=20=D0=BF=D1=80=D0=BE?= =?UTF-8?q?=D0=B5=D0=BA=D1=82=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BeautySalonBusinessLogic.csproj | 26 ++++ .../BeautySalonContracts.csproj | 21 +++ .../BeautySalonDataModels.csproj | 14 ++ BeautySalonView/BeautySalonDataModels/IId.cs | 7 + .../BeautySalonDatabase.cs | 7 + .../BeautySalonDatabaseImplement.csproj | 29 +++++ BeautySalonView/BeautySalonView.sln | 49 +++++++ .../BeautySalonView/BeautySalonView.csproj | 39 ++++++ .../BeautySalonView/Form1.Designer.cs | 39 ++++++ BeautySalonView/BeautySalonView/Form1.cs | 10 ++ BeautySalonView/BeautySalonView/Form1.resx | 120 ++++++++++++++++++ BeautySalonView/BeautySalonView/Program.cs | 17 +++ BeautySalonView/BeautySalonView/nlog.config | 16 +++ 13 files changed, 394 insertions(+) create mode 100644 BeautySalonView/BeautySalonBusinessLogic/BeautySalonBusinessLogic.csproj create mode 100644 BeautySalonView/BeautySalonContracts/BeautySalonContracts.csproj create mode 100644 BeautySalonView/BeautySalonDataModels/BeautySalonDataModels.csproj create mode 100644 BeautySalonView/BeautySalonDataModels/IId.cs create mode 100644 BeautySalonView/BeautySalonDatabaseImplement/BeautySalonDatabase.cs create mode 100644 BeautySalonView/BeautySalonDatabaseImplement/BeautySalonDatabaseImplement.csproj create mode 100644 BeautySalonView/BeautySalonView.sln create mode 100644 BeautySalonView/BeautySalonView/BeautySalonView.csproj create mode 100644 BeautySalonView/BeautySalonView/Form1.Designer.cs create mode 100644 BeautySalonView/BeautySalonView/Form1.cs create mode 100644 BeautySalonView/BeautySalonView/Form1.resx create mode 100644 BeautySalonView/BeautySalonView/Program.cs create mode 100644 BeautySalonView/BeautySalonView/nlog.config diff --git a/BeautySalonView/BeautySalonBusinessLogic/BeautySalonBusinessLogic.csproj b/BeautySalonView/BeautySalonBusinessLogic/BeautySalonBusinessLogic.csproj new file mode 100644 index 0000000..4cc37a2 --- /dev/null +++ b/BeautySalonView/BeautySalonBusinessLogic/BeautySalonBusinessLogic.csproj @@ -0,0 +1,26 @@ + + + + net6.0 + enable + enable + + + + + + + + + + + + + + + + + + + + diff --git a/BeautySalonView/BeautySalonContracts/BeautySalonContracts.csproj b/BeautySalonView/BeautySalonContracts/BeautySalonContracts.csproj new file mode 100644 index 0000000..6d5d754 --- /dev/null +++ b/BeautySalonView/BeautySalonContracts/BeautySalonContracts.csproj @@ -0,0 +1,21 @@ + + + + net6.0 + enable + enable + + + + + + + + + + + + + + + diff --git a/BeautySalonView/BeautySalonDataModels/BeautySalonDataModels.csproj b/BeautySalonView/BeautySalonDataModels/BeautySalonDataModels.csproj new file mode 100644 index 0000000..7264f69 --- /dev/null +++ b/BeautySalonView/BeautySalonDataModels/BeautySalonDataModels.csproj @@ -0,0 +1,14 @@ + + + + net6.0 + enable + enable + + + + + + + + diff --git a/BeautySalonView/BeautySalonDataModels/IId.cs b/BeautySalonView/BeautySalonDataModels/IId.cs new file mode 100644 index 0000000..f057750 --- /dev/null +++ b/BeautySalonView/BeautySalonDataModels/IId.cs @@ -0,0 +1,7 @@ +namespace BeautySalonDataModels +{ + public interface IId + { + int Id { get; } + } +} diff --git a/BeautySalonView/BeautySalonDatabaseImplement/BeautySalonDatabase.cs b/BeautySalonView/BeautySalonDatabaseImplement/BeautySalonDatabase.cs new file mode 100644 index 0000000..0a8287b --- /dev/null +++ b/BeautySalonView/BeautySalonDatabaseImplement/BeautySalonDatabase.cs @@ -0,0 +1,7 @@ +namespace BeautySalonDatabaseImplement +{ + public class BeautySalonDatabase + { + + } +} diff --git a/BeautySalonView/BeautySalonDatabaseImplement/BeautySalonDatabaseImplement.csproj b/BeautySalonView/BeautySalonDatabaseImplement/BeautySalonDatabaseImplement.csproj new file mode 100644 index 0000000..30953fc --- /dev/null +++ b/BeautySalonView/BeautySalonDatabaseImplement/BeautySalonDatabaseImplement.csproj @@ -0,0 +1,29 @@ + + + + net6.0 + enable + enable + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + + + + + + + diff --git a/BeautySalonView/BeautySalonView.sln b/BeautySalonView/BeautySalonView.sln new file mode 100644 index 0000000..2e45cd1 --- /dev/null +++ b/BeautySalonView/BeautySalonView.sln @@ -0,0 +1,49 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34525.116 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BeautySalonView", "BeautySalonView\BeautySalonView.csproj", "{C26FD884-0C19-4F02-BBB6-8354D699CFE3}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BeautySalonDataModels", "BeautySalonDataModels\BeautySalonDataModels.csproj", "{1CC71216-BD57-4FED-B832-7E9CE489441C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BeautySalonContracts", "BeautySalonContracts\BeautySalonContracts.csproj", "{A35AB656-0E91-49DC-A863-8448FCB56134}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BeautySalonDatabaseImplement", "BeautySalonDatabaseImplement\BeautySalonDatabaseImplement.csproj", "{419F530F-C58A-4059-8728-B4F6EC6FC174}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BeautySalonBusinessLogic", "BeautySalonBusinessLogic\BeautySalonBusinessLogic.csproj", "{36052005-AE3A-4700-B1CF-C95609D045C5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C26FD884-0C19-4F02-BBB6-8354D699CFE3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C26FD884-0C19-4F02-BBB6-8354D699CFE3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C26FD884-0C19-4F02-BBB6-8354D699CFE3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C26FD884-0C19-4F02-BBB6-8354D699CFE3}.Release|Any CPU.Build.0 = Release|Any CPU + {1CC71216-BD57-4FED-B832-7E9CE489441C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1CC71216-BD57-4FED-B832-7E9CE489441C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1CC71216-BD57-4FED-B832-7E9CE489441C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1CC71216-BD57-4FED-B832-7E9CE489441C}.Release|Any CPU.Build.0 = Release|Any CPU + {A35AB656-0E91-49DC-A863-8448FCB56134}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A35AB656-0E91-49DC-A863-8448FCB56134}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A35AB656-0E91-49DC-A863-8448FCB56134}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A35AB656-0E91-49DC-A863-8448FCB56134}.Release|Any CPU.Build.0 = Release|Any CPU + {419F530F-C58A-4059-8728-B4F6EC6FC174}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {419F530F-C58A-4059-8728-B4F6EC6FC174}.Debug|Any CPU.Build.0 = Debug|Any CPU + {419F530F-C58A-4059-8728-B4F6EC6FC174}.Release|Any CPU.ActiveCfg = Release|Any CPU + {419F530F-C58A-4059-8728-B4F6EC6FC174}.Release|Any CPU.Build.0 = Release|Any CPU + {36052005-AE3A-4700-B1CF-C95609D045C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {36052005-AE3A-4700-B1CF-C95609D045C5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {36052005-AE3A-4700-B1CF-C95609D045C5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {36052005-AE3A-4700-B1CF-C95609D045C5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {484FF083-83E7-4DB5-A742-2008938AB060} + EndGlobalSection +EndGlobal diff --git a/BeautySalonView/BeautySalonView/BeautySalonView.csproj b/BeautySalonView/BeautySalonView/BeautySalonView.csproj new file mode 100644 index 0000000..558b4ad --- /dev/null +++ b/BeautySalonView/BeautySalonView/BeautySalonView.csproj @@ -0,0 +1,39 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + + + + + + + Always + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/BeautySalonView/BeautySalonView/Form1.Designer.cs b/BeautySalonView/BeautySalonView/Form1.Designer.cs new file mode 100644 index 0000000..ec3ffe0 --- /dev/null +++ b/BeautySalonView/BeautySalonView/Form1.Designer.cs @@ -0,0 +1,39 @@ +namespace BeautySalonView +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Text = "Form1"; + } + + #endregion + } +} diff --git a/BeautySalonView/BeautySalonView/Form1.cs b/BeautySalonView/BeautySalonView/Form1.cs new file mode 100644 index 0000000..278e15e --- /dev/null +++ b/BeautySalonView/BeautySalonView/Form1.cs @@ -0,0 +1,10 @@ +namespace BeautySalonView +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} diff --git a/BeautySalonView/BeautySalonView/Form1.resx b/BeautySalonView/BeautySalonView/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/BeautySalonView/BeautySalonView/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/BeautySalonView/BeautySalonView/Program.cs b/BeautySalonView/BeautySalonView/Program.cs new file mode 100644 index 0000000..6868859 --- /dev/null +++ b/BeautySalonView/BeautySalonView/Program.cs @@ -0,0 +1,17 @@ +namespace BeautySalonView +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file diff --git a/BeautySalonView/BeautySalonView/nlog.config b/BeautySalonView/BeautySalonView/nlog.config new file mode 100644 index 0000000..0dd0f91 --- /dev/null +++ b/BeautySalonView/BeautySalonView/nlog.config @@ -0,0 +1,16 @@ + + + + + + + + + + + + + \ No newline at end of file