85 lines
2.8 KiB
C#
85 lines
2.8 KiB
C#
using Microsoft.Extensions.Logging;
|
|
using SushiBarContracts.BindingModels;
|
|
using SushiBarContracts.BusinessLogicsContracts;
|
|
using SushiBarContracts.SearchModels;
|
|
|
|
namespace SushiBar
|
|
{
|
|
public partial class FormComponent : Form
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly IComponentLogic _logic;
|
|
private int? _id;
|
|
public int Id { set { _id = value; } }
|
|
public FormComponent(ILogger<FormComponent> logger, IComponentLogic logic)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_logic = logic;
|
|
}
|
|
|
|
private void ButtonSave_Click(object sender, EventArgs e)
|
|
{
|
|
if (string.IsNullOrEmpty(textBoxName.Text))
|
|
{
|
|
MessageBox.Show("Fill name text box", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
_logger.LogInformation("Saving Component");
|
|
try
|
|
{
|
|
var model = new ComponentBindingModel
|
|
{
|
|
Id = _id ?? 0,
|
|
ComponentName = textBoxName.Text,
|
|
Cost = Convert.ToDouble(textBoxCost.Text)
|
|
};
|
|
var operationResult = _id.HasValue ? _logic.Update(model) :
|
|
_logic.Create(model);
|
|
if (!operationResult)
|
|
{
|
|
throw new Exception("Error on saving. Additional info below.");
|
|
}
|
|
MessageBox.Show("Saving is successful", "Info", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Error on saving");
|
|
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK,
|
|
MessageBoxIcon.Error);
|
|
}
|
|
|
|
}
|
|
|
|
private void FormComponent_Load(object sender, EventArgs e)
|
|
{
|
|
if (_id.HasValue)
|
|
{
|
|
try
|
|
{
|
|
_logger.LogInformation("Get component");
|
|
var view = _logic.ReadElement(new ComponentSearchModel{ Id = _id.Value });
|
|
if (view != null)
|
|
{
|
|
textBoxName.Text = view.ComponentName;
|
|
textBoxCost.Text = view.Cost.ToString();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Error in getting cpmponent");
|
|
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void ButtonCancel_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.Cancel;
|
|
Close();
|
|
}
|
|
}
|
|
}
|