91 lines
3.3 KiB
C#
91 lines
3.3 KiB
C#
using SushiBarContracts.BindingModels;
|
|
using SushiBarContracts.BusinessLogicContracts;
|
|
using SushiBarContracts.SearchModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SushiBarView
|
|
{
|
|
public partial class FormCook : Form
|
|
{
|
|
private ICookLogic _logic;
|
|
private int? _id;
|
|
public int Id { set { _id = value; } }
|
|
|
|
public FormCook(ICookLogic logic)
|
|
{
|
|
InitializeComponent();
|
|
_logic = logic;
|
|
}
|
|
|
|
private void FormCook_Load(object sender, EventArgs e)
|
|
{
|
|
if (_id.HasValue)
|
|
{
|
|
try
|
|
{
|
|
var view = _logic.ReadElement(new CookSearchModel { Id = _id.Value });
|
|
if (view != null)
|
|
{
|
|
textBoxName.Text = view.CookName;
|
|
textBoxSurname.Text = view.CookSurname;
|
|
textBoxExperience.Text = view.Experience.ToString();
|
|
textBoxPhoneNumber.Text = view.PhoneNumber;
|
|
textBoxPassport.Text = view.Passport;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void buttonSave_Click(object sender, EventArgs e)
|
|
{
|
|
if (string.IsNullOrEmpty(textBoxName.Text) || string.IsNullOrEmpty(textBoxSurname.Text) || string.IsNullOrEmpty(textBoxPassport.Text) || string.IsNullOrEmpty(textBoxExperience.Text) || string.IsNullOrEmpty(textBoxPhoneNumber.Text))
|
|
{
|
|
MessageBox.Show("Заполните название", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
try
|
|
{
|
|
var model = new CookBindingModel
|
|
{
|
|
Id = _id ?? 0,
|
|
CookName = textBoxName.Text,
|
|
CookSurname = textBoxSurname.Text,
|
|
Experience = Convert.ToInt32(textBoxExperience.Text),
|
|
PhoneNumber = textBoxPhoneNumber.Text,
|
|
Passport = textBoxPassport.Text
|
|
};
|
|
var operationResult = _id.HasValue ? _logic.Update(model) : _logic.Create(model);
|
|
if (!operationResult)
|
|
{
|
|
throw new Exception("Ошибка при сохранении. Доп информация в логах.");
|
|
}
|
|
MessageBox.Show("Сохранение прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
|
|
private void buttonCancel_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.Cancel;
|
|
Close();
|
|
}
|
|
}
|
|
}
|