From 44474b06776a0448543c501d717ddc29cf7ac9b3 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 8 Apr 2023 17:16:58 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FactoryView/FactoryBusinessLogic/Class1.cs | 7 + .../FactoryBusinessLogic.csproj | 9 ++ FactoryView/FactoryContracts/Class1.cs | 7 + .../FactoryContracts/FactoryContracts.csproj | 9 ++ FactoryView/FactoryDataModels/Class1.cs | 7 + .../FactoryDataModels.csproj | 9 ++ .../FactoryDatabaseImplement/Class1.cs | 7 + .../FactoryDatabaseImplement.csproj | 9 ++ FactoryView/FactoryView.sln | 25 ++++ FactoryView/FactoryView/FactoryView.csproj | 11 ++ FactoryView/FactoryView/Form1.Designer.cs | 39 ++++++ FactoryView/FactoryView/Form1.cs | 10 ++ FactoryView/FactoryView/Form1.resx | 120 ++++++++++++++++++ FactoryView/FactoryView/Program.cs | 17 +++ 14 files changed, 286 insertions(+) create mode 100644 FactoryView/FactoryBusinessLogic/Class1.cs create mode 100644 FactoryView/FactoryBusinessLogic/FactoryBusinessLogic.csproj create mode 100644 FactoryView/FactoryContracts/Class1.cs create mode 100644 FactoryView/FactoryContracts/FactoryContracts.csproj create mode 100644 FactoryView/FactoryDataModels/Class1.cs create mode 100644 FactoryView/FactoryDataModels/FactoryDataModels.csproj create mode 100644 FactoryView/FactoryDatabaseImplement/Class1.cs create mode 100644 FactoryView/FactoryDatabaseImplement/FactoryDatabaseImplement.csproj create mode 100644 FactoryView/FactoryView.sln create mode 100644 FactoryView/FactoryView/FactoryView.csproj create mode 100644 FactoryView/FactoryView/Form1.Designer.cs create mode 100644 FactoryView/FactoryView/Form1.cs create mode 100644 FactoryView/FactoryView/Form1.resx create mode 100644 FactoryView/FactoryView/Program.cs diff --git a/FactoryView/FactoryBusinessLogic/Class1.cs b/FactoryView/FactoryBusinessLogic/Class1.cs new file mode 100644 index 0000000..c3e8018 --- /dev/null +++ b/FactoryView/FactoryBusinessLogic/Class1.cs @@ -0,0 +1,7 @@ +namespace FactoryBusinessLogic +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/FactoryView/FactoryBusinessLogic/FactoryBusinessLogic.csproj b/FactoryView/FactoryBusinessLogic/FactoryBusinessLogic.csproj new file mode 100644 index 0000000..132c02c --- /dev/null +++ b/FactoryView/FactoryBusinessLogic/FactoryBusinessLogic.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/FactoryView/FactoryContracts/Class1.cs b/FactoryView/FactoryContracts/Class1.cs new file mode 100644 index 0000000..ff0bc9a --- /dev/null +++ b/FactoryView/FactoryContracts/Class1.cs @@ -0,0 +1,7 @@ +namespace FactoryContracts +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/FactoryView/FactoryContracts/FactoryContracts.csproj b/FactoryView/FactoryContracts/FactoryContracts.csproj new file mode 100644 index 0000000..132c02c --- /dev/null +++ b/FactoryView/FactoryContracts/FactoryContracts.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/FactoryView/FactoryDataModels/Class1.cs b/FactoryView/FactoryDataModels/Class1.cs new file mode 100644 index 0000000..399e2aa --- /dev/null +++ b/FactoryView/FactoryDataModels/Class1.cs @@ -0,0 +1,7 @@ +namespace FactoryDataModels +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/FactoryView/FactoryDataModels/FactoryDataModels.csproj b/FactoryView/FactoryDataModels/FactoryDataModels.csproj new file mode 100644 index 0000000..132c02c --- /dev/null +++ b/FactoryView/FactoryDataModels/FactoryDataModels.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/FactoryView/FactoryDatabaseImplement/Class1.cs b/FactoryView/FactoryDatabaseImplement/Class1.cs new file mode 100644 index 0000000..e63ef13 --- /dev/null +++ b/FactoryView/FactoryDatabaseImplement/Class1.cs @@ -0,0 +1,7 @@ +namespace FactoryDatabaseImplement +{ + public class Class1 + { + + } +} \ No newline at end of file diff --git a/FactoryView/FactoryDatabaseImplement/FactoryDatabaseImplement.csproj b/FactoryView/FactoryDatabaseImplement/FactoryDatabaseImplement.csproj new file mode 100644 index 0000000..132c02c --- /dev/null +++ b/FactoryView/FactoryDatabaseImplement/FactoryDatabaseImplement.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/FactoryView/FactoryView.sln b/FactoryView/FactoryView.sln new file mode 100644 index 0000000..0955359 --- /dev/null +++ b/FactoryView/FactoryView.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33103.184 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FactoryView", "FactoryView\FactoryView.csproj", "{99F4806A-38A6-42E1-BB54-179615FCC43D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {99F4806A-38A6-42E1-BB54-179615FCC43D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {99F4806A-38A6-42E1-BB54-179615FCC43D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {99F4806A-38A6-42E1-BB54-179615FCC43D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {99F4806A-38A6-42E1-BB54-179615FCC43D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {346AEC2E-D2DE-4FCC-BF07-D623BE018906} + EndGlobalSection +EndGlobal diff --git a/FactoryView/FactoryView/FactoryView.csproj b/FactoryView/FactoryView/FactoryView.csproj new file mode 100644 index 0000000..b57c89e --- /dev/null +++ b/FactoryView/FactoryView/FactoryView.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/FactoryView/FactoryView/Form1.Designer.cs b/FactoryView/FactoryView/Form1.Designer.cs new file mode 100644 index 0000000..fd5edba --- /dev/null +++ b/FactoryView/FactoryView/Form1.Designer.cs @@ -0,0 +1,39 @@ +namespace FactoryView +{ + 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 + } +} \ No newline at end of file diff --git a/FactoryView/FactoryView/Form1.cs b/FactoryView/FactoryView/Form1.cs new file mode 100644 index 0000000..12b89ab --- /dev/null +++ b/FactoryView/FactoryView/Form1.cs @@ -0,0 +1,10 @@ +namespace FactoryView +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/FactoryView/FactoryView/Form1.resx b/FactoryView/FactoryView/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/FactoryView/FactoryView/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/FactoryView/FactoryView/Program.cs b/FactoryView/FactoryView/Program.cs new file mode 100644 index 0000000..066005f --- /dev/null +++ b/FactoryView/FactoryView/Program.cs @@ -0,0 +1,17 @@ +namespace FactoryView +{ + 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