From 6a00072ae78a53967e92cd3d10023eca4a36e4f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?10=D0=93=20=D0=95=D0=B3=D0=BE=D1=80=20=D0=A0=D0=BE=D0=BC?= =?UTF-8?q?=D0=B0=D0=BD=D0=BE=D0=B2?= Date: Mon, 6 Mar 2023 17:26:18 +0400 Subject: [PATCH] final fixed --- SecuritySystem/SecuritySystem.sln | 14 ++++++++++---- .../SecuritySystemFileImplement.csproj | 9 +++++++++ SecuritySystemListImplement/Models/Order.cs | 6 ------ 3 files changed, 19 insertions(+), 10 deletions(-) create mode 100644 SecuritySystemFileImplement/SecuritySystemFileImplement.csproj diff --git a/SecuritySystem/SecuritySystem.sln b/SecuritySystem/SecuritySystem.sln index d169da1..8d902d5 100644 --- a/SecuritySystem/SecuritySystem.sln +++ b/SecuritySystem/SecuritySystem.sln @@ -5,13 +5,15 @@ VisualStudioVersion = 17.3.32922.545 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SecuritySystemView", "SecuritySystemView.csproj", "{39A7185D-F1F5-4892-BE6F-72B1A849CA84}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SystemSecurityBusinessLogic", "..\SystemSecurityBusinessLogic\SystemSecurityBusinessLogic.csproj", "{D8EF10A4-F934-461B-BE3C-BCCCF266B8D9}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SystemSecurityBusinessLogic", "..\SystemSecurityBusinessLogic\SystemSecurityBusinessLogic.csproj", "{D8EF10A4-F934-461B-BE3C-BCCCF266B8D9}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SecuritySystemContracts", "..\SecuritySystemContracts\SecuritySystemContracts.csproj", "{C1C491F5-4CB7-4B6B-92CE-41688769709A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SecuritySystemContracts", "..\SecuritySystemContracts\SecuritySystemContracts.csproj", "{C1C491F5-4CB7-4B6B-92CE-41688769709A}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SecuritySystemDataModels", "..\SecuritySystemDataModels\SecuritySystemDataModels.csproj", "{D12D1329-4362-472B-B6E6-D62B0FF00C63}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SecuritySystemDataModels", "..\SecuritySystemDataModels\SecuritySystemDataModels.csproj", "{D12D1329-4362-472B-B6E6-D62B0FF00C63}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SecuritySystemListImplement", "..\SecuritySystemListImplement\SecuritySystemListImplement.csproj", "{A5A3381B-3592-41B6-880F-333C2502DF02}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SecuritySystemListImplement", "..\SecuritySystemListImplement\SecuritySystemListImplement.csproj", "{A5A3381B-3592-41B6-880F-333C2502DF02}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SecuritySystemFileImplement", "..\SecuritySystemFileImplement\SecuritySystemFileImplement.csproj", "{7EAA8744-DD28-4007-B05B-FF2644A3D9BB}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -39,6 +41,10 @@ Global {A5A3381B-3592-41B6-880F-333C2502DF02}.Debug|Any CPU.Build.0 = Debug|Any CPU {A5A3381B-3592-41B6-880F-333C2502DF02}.Release|Any CPU.ActiveCfg = Release|Any CPU {A5A3381B-3592-41B6-880F-333C2502DF02}.Release|Any CPU.Build.0 = Release|Any CPU + {7EAA8744-DD28-4007-B05B-FF2644A3D9BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7EAA8744-DD28-4007-B05B-FF2644A3D9BB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7EAA8744-DD28-4007-B05B-FF2644A3D9BB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7EAA8744-DD28-4007-B05B-FF2644A3D9BB}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/SecuritySystemFileImplement/SecuritySystemFileImplement.csproj b/SecuritySystemFileImplement/SecuritySystemFileImplement.csproj new file mode 100644 index 0000000..132c02c --- /dev/null +++ b/SecuritySystemFileImplement/SecuritySystemFileImplement.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/SecuritySystemListImplement/Models/Order.cs b/SecuritySystemListImplement/Models/Order.cs index 88a2e68..caac226 100644 --- a/SecuritySystemListImplement/Models/Order.cs +++ b/SecuritySystemListImplement/Models/Order.cs @@ -36,13 +36,7 @@ namespace SecuritySystemListImplement.Models } return new Order() { - Id = model.Id, - ManufactureId = model.ManufactureId, - ManufactureName = model.ManufactureName, - Count = model.Count, - Sum = model.Sum, Status = model.Status, - DateCreate = model.DateCreate, DateImplement = model.DateImplement }; }