From 6306b2043035e1bbbfe57951fcef5cb3c702e805 Mon Sep 17 00:00:00 2001 From: dasha Date: Wed, 1 Feb 2023 12:16:22 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SushiBar/SushiBar/FormMain.Designer.cs | 16 ++++++++-------- .../SushiBarDataModels/Models/IOrderModel.cs | 1 - .../Implements/IngredientStorage.cs | 3 +-- 3 files changed, 9 insertions(+), 11 deletions(-) diff --git a/SushiBar/SushiBar/FormMain.Designer.cs b/SushiBar/SushiBar/FormMain.Designer.cs index ba3e4ae..cad392a 100644 --- a/SushiBar/SushiBar/FormMain.Designer.cs +++ b/SushiBar/SushiBar/FormMain.Designer.cs @@ -64,20 +64,20 @@ // ингредиентыToolStripMenuItem // this.ингредиентыToolStripMenuItem.Name = "ингредиентыToolStripMenuItem"; - this.ингредиентыToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.ингредиентыToolStripMenuItem.Size = new System.Drawing.Size(148, 22); this.ингредиентыToolStripMenuItem.Text = "Ингредиенты"; this.ингредиентыToolStripMenuItem.Click += new System.EventHandler(this.IngredientsToolStripMenuItem_Click); // // сушиToolStripMenuItem // this.сушиToolStripMenuItem.Name = "сушиToolStripMenuItem"; - this.сушиToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.сушиToolStripMenuItem.Size = new System.Drawing.Size(148, 22); this.сушиToolStripMenuItem.Text = "Суши"; this.сушиToolStripMenuItem.Click += new System.EventHandler(this.SushiToolStripMenuItem_Click); // // buttonUpdate // - this.buttonUpdate.Location = new System.Drawing.Point(793, 315); + this.buttonUpdate.Location = new System.Drawing.Point(780, 314); this.buttonUpdate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.buttonUpdate.Name = "buttonUpdate"; this.buttonUpdate.Size = new System.Drawing.Size(170, 58); @@ -88,7 +88,7 @@ // // buttonSetToFinish // - this.buttonSetToFinish.Location = new System.Drawing.Point(793, 253); + this.buttonSetToFinish.Location = new System.Drawing.Point(780, 252); this.buttonSetToFinish.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.buttonSetToFinish.Name = "buttonSetToFinish"; this.buttonSetToFinish.Size = new System.Drawing.Size(170, 58); @@ -99,7 +99,7 @@ // // buttonSetToDone // - this.buttonSetToDone.Location = new System.Drawing.Point(793, 191); + this.buttonSetToDone.Location = new System.Drawing.Point(780, 190); this.buttonSetToDone.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.buttonSetToDone.Name = "buttonSetToDone"; this.buttonSetToDone.Size = new System.Drawing.Size(170, 58); @@ -110,7 +110,7 @@ // // buttonSetToWork // - this.buttonSetToWork.Location = new System.Drawing.Point(793, 129); + this.buttonSetToWork.Location = new System.Drawing.Point(780, 128); this.buttonSetToWork.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.buttonSetToWork.Name = "buttonSetToWork"; this.buttonSetToWork.Size = new System.Drawing.Size(170, 58); @@ -121,7 +121,7 @@ // // buttonCreateOrder // - this.buttonCreateOrder.Location = new System.Drawing.Point(793, 67); + this.buttonCreateOrder.Location = new System.Drawing.Point(780, 66); this.buttonCreateOrder.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.buttonCreateOrder.Name = "buttonCreateOrder"; this.buttonCreateOrder.Size = new System.Drawing.Size(170, 58); @@ -139,7 +139,7 @@ this.dataGridView.Name = "dataGridView"; this.dataGridView.RowHeadersWidth = 51; this.dataGridView.RowTemplate.Height = 29; - this.dataGridView.Size = new System.Drawing.Size(787, 426); + this.dataGridView.Size = new System.Drawing.Size(755, 426); this.dataGridView.TabIndex = 7; // // FormMain diff --git a/SushiBar/SushiBarDataModels/Models/IOrderModel.cs b/SushiBar/SushiBarDataModels/Models/IOrderModel.cs index cb918ea..3770e12 100644 --- a/SushiBar/SushiBarDataModels/Models/IOrderModel.cs +++ b/SushiBar/SushiBarDataModels/Models/IOrderModel.cs @@ -5,7 +5,6 @@ namespace SushiBarDataModels.Models public interface IOrderModel : IId { int SushiId { get; } - string SushiName { get; } int Count { get; } double Sum { get; } OrderStatus Status { get; } diff --git a/SushiBar/SushiBarListImplement/Implements/IngredientStorage.cs b/SushiBar/SushiBarListImplement/Implements/IngredientStorage.cs index 83b0d16..15a0746 100644 --- a/SushiBar/SushiBarListImplement/Implements/IngredientStorage.cs +++ b/SushiBar/SushiBarListImplement/Implements/IngredientStorage.cs @@ -22,8 +22,7 @@ namespace SushiBarListImplement.Implements } return result; } - public List GetFilteredList(IngredientSearchModel - model) + public List GetFilteredList(IngredientSearchModel model) { var result = new List(); if (string.IsNullOrEmpty(model.IngredientName))