Удаление мусора.

This commit is contained in:
Андрей Байгулов 2024-02-29 20:38:40 +04:00
parent f910c279a7
commit 068025333b
2 changed files with 3 additions and 9 deletions

View File

@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17 # Visual Studio Version 17
VisualStudioVersion = 17.7.34202.233 VisualStudioVersion = 17.7.34202.233
MinimumVisualStudioVersion = 10.0.40219.1 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}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarDataModels", "SushiBarDataModels\SushiBarDataModels.csproj", "{CF80CDC9-4579-4A90-B1E0-3929F0DFB872}"
EndProject EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarContracts", "SushiBarContracts\SushiBarContracts.csproj", "{EED78058-8732-4C80-8D47-6E190EB80952}" 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 EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarListImplement", "SushiBarListImplement\SushiBarListImplement.csproj", "{74E379BD-F98D-4C3F-BB56-D0B2F65287A6}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SushiBarListImplement", "SushiBarListImplement\SushiBarListImplement.csproj", "{74E379BD-F98D-4C3F-BB56-D0B2F65287A6}"
EndProject 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 EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -21,10 +19,6 @@ Global
Release|Any CPU = Release|Any CPU Release|Any CPU = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution 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.ActiveCfg = Debug|Any CPU
{CF80CDC9-4579-4A90-B1E0-3929F0DFB872}.Debug|Any CPU.Build.0 = 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 {CF80CDC9-4579-4A90-B1E0-3929F0DFB872}.Release|Any CPU.ActiveCfg = Release|Any CPU

View File

@ -35,7 +35,7 @@ namespace SushiBarView
} }
private void FormCreateOrder_Load(object sender, EventArgs e) private void FormCreateOrder_Load(object sender, EventArgs e)
{ {
_logger.LogInformation("Загрузка изделий для заказа"); _logger.LogInformation("Загрузка суши для заказа");
_list = _logicP.ReadList(null); _list = _logicP.ReadList(null);
if (_list != null) if (_list != null)
{ {
@ -56,7 +56,7 @@ namespace SushiBarView
} }
if (comboBoxSushi.SelectedValue == null) if (comboBoxSushi.SelectedValue == null)
{ {
MessageBox.Show("Выберите изделие", "Ошибка", MessageBox.Show("Выберите суши", "Ошибка",
MessageBoxButtons.OK, MessageBoxIcon.Error); MessageBoxButtons.OK, MessageBoxIcon.Error);
return; return;
} }