PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBar/FormSushiIngredients.cs
2023-01-31 15:23:18 +04:00

80 lines
2.4 KiB
C#

using SushiBarContracts.BusinessLogicsContracts;
using SushiBarContracts.ViewModels;
using SushiBarDataModels.Models;
namespace SushiBarView
{
public partial class FormSushiIngredients : Form
{
private readonly List<IngredientViewModel>? _list;
public int Id
{
get
{
return Convert.ToInt32(comboBoxIngredient.SelectedValue);
}
set
{
comboBoxIngredient.SelectedValue = value;
}
}
public IIngredientModel? IngredientModel
{
get
{
if (_list == null)
{
return null;
}
foreach (var elem in _list)
{
if (elem.Id == Id)
{
return elem;
}
}
return null;
}
}
public int Count
{
get { return Convert.ToInt32(textBoxCount.Text); }
set { textBoxCount.Text = value.ToString(); }
}
public FormSushiIngredients(IIngredientLogic logic)
{
InitializeComponent();
_list = logic.ReadList(null);
if (_list != null)
{
comboBoxIngredient.DisplayMember = "IngredientName";
comboBoxIngredient.ValueMember = "Id";
comboBoxIngredient.DataSource = _list;
comboBoxIngredient.SelectedItem = null;
}
}
private void ButtonSave_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(textBoxCount.Text))
{
MessageBox.Show("Заполните поле 'Количество'", "Ошибка",
MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
if (comboBoxIngredient.SelectedValue == null)
{
MessageBox.Show("Выберите ингредиент", "Ошибка",
MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
DialogResult = DialogResult.OK;
Close();
}
private void ButtonCancel_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.Cancel;
Close();
}
}
}