From 068025333b73e4c91816b26a90028e9ea3d9c847 Mon Sep 17 00:00:00 2001 From: tellsense Date: Thu, 29 Feb 2024 20:38:40 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B4=D0=B0=D0=BB=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BC=D1=83=D1=81=D0=BE=D1=80=D0=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SushiBar/SushiBar.sln | 8 +------- SushiBar/SushiBarView/FormCreateOrder.cs | 4 ++-- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/SushiBar/SushiBar.sln b/SushiBar/SushiBar.sln index 2bd0188..a3ebcd8 100644 --- a/SushiBar/SushiBar.sln +++ b/SushiBar/SushiBar.sln @@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.7.34202.233 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBar", "SushiBar\SushiBar.csproj", "{2E0A67FD-9C52-465A-9886-A786E22044BC}" -EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarDataModels", "SushiBarDataModels\SushiBarDataModels.csproj", "{CF80CDC9-4579-4A90-B1E0-3929F0DFB872}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarContracts", "SushiBarContracts\SushiBarContracts.csproj", "{EED78058-8732-4C80-8D47-6E190EB80952}" @@ -13,7 +11,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarBusinessLogic", "Su EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarListImplement", "SushiBarListImplement\SushiBarListImplement.csproj", "{74E379BD-F98D-4C3F-BB56-D0B2F65287A6}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SushiBarView", "SushiBarView\SushiBarView.csproj", "{149793FF-D4B1-4627-BBCB-ADFC6769C8FE}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarView", "SushiBarView\SushiBarView.csproj", "{149793FF-D4B1-4627-BBCB-ADFC6769C8FE}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -21,10 +19,6 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {2E0A67FD-9C52-465A-9886-A786E22044BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {2E0A67FD-9C52-465A-9886-A786E22044BC}.Debug|Any CPU.Build.0 = Debug|Any CPU - {2E0A67FD-9C52-465A-9886-A786E22044BC}.Release|Any CPU.ActiveCfg = Release|Any CPU - {2E0A67FD-9C52-465A-9886-A786E22044BC}.Release|Any CPU.Build.0 = Release|Any CPU {CF80CDC9-4579-4A90-B1E0-3929F0DFB872}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {CF80CDC9-4579-4A90-B1E0-3929F0DFB872}.Debug|Any CPU.Build.0 = Debug|Any CPU {CF80CDC9-4579-4A90-B1E0-3929F0DFB872}.Release|Any CPU.ActiveCfg = Release|Any CPU diff --git a/SushiBar/SushiBarView/FormCreateOrder.cs b/SushiBar/SushiBarView/FormCreateOrder.cs index d830b24..0704e32 100644 --- a/SushiBar/SushiBarView/FormCreateOrder.cs +++ b/SushiBar/SushiBarView/FormCreateOrder.cs @@ -35,7 +35,7 @@ namespace SushiBarView } private void FormCreateOrder_Load(object sender, EventArgs e) { - _logger.LogInformation("Загрузка изделий для заказа"); + _logger.LogInformation("Загрузка суши для заказа"); _list = _logicP.ReadList(null); if (_list != null) { @@ -56,7 +56,7 @@ namespace SushiBarView } if (comboBoxSushi.SelectedValue == null) { - MessageBox.Show("Выберите изделие", "Ошибка", + MessageBox.Show("Выберите суши", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); return; }