2023-04-19 23:48:32 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using PrecastConcretePlantContracts.BindingModels;
|
|
|
|
|
using PrecastConcretePlantContracts.BusinessLogicsContracts;
|
|
|
|
|
using PrecastConcretePlantContracts.SearchModels;
|
|
|
|
|
|
|
|
|
|
namespace PrecastConcretePlantView
|
|
|
|
|
{
|
2023-06-13 23:47:25 +04:00
|
|
|
|
public partial class FormImplementer : Form
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IImplementerLogic _logic;
|
|
|
|
|
private int? _id;
|
|
|
|
|
public int Id { set { _id = value; } }
|
2023-04-19 23:48:32 +04:00
|
|
|
|
|
2023-06-13 23:47:25 +04:00
|
|
|
|
public FormImplementer(ILogger<FormImplementer> logger, IImplementerLogic logic)
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_logic = logic;
|
|
|
|
|
}
|
2023-04-19 23:48:32 +04:00
|
|
|
|
|
2023-06-13 23:47:25 +04:00
|
|
|
|
private void FormImplementer_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (_id.HasValue)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("Получение исполнителя");
|
|
|
|
|
var view = _logic.ReadElement(new ImplementerSearchModel
|
|
|
|
|
{
|
|
|
|
|
Id = _id.Value
|
|
|
|
|
});
|
|
|
|
|
if (view != null)
|
|
|
|
|
{
|
|
|
|
|
textBoxFio.Text = view.ImplementerFIO;
|
|
|
|
|
textBoxPassword.Text = view.Password;
|
|
|
|
|
numericUpDownQualification.Value = view.Qualification;
|
|
|
|
|
numericUpDownWorkExperience.Value = view.WorkExperience;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка получения исполнителя");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK,
|
|
|
|
|
MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-04-19 23:48:32 +04:00
|
|
|
|
|
2023-06-13 23:47:25 +04:00
|
|
|
|
private void ButtonSave_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrEmpty(textBoxPassword.Text))
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Заполните пароль", "Ошибка",
|
|
|
|
|
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (string.IsNullOrEmpty(textBoxFio.Text))
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show("Заполните фио", "Ошибка",
|
|
|
|
|
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Сохранение исполнителя");
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var model = new ImplementerBindingModel
|
|
|
|
|
{
|
|
|
|
|
Id = _id ?? 0,
|
|
|
|
|
ImplementerFIO = textBoxFio.Text,
|
|
|
|
|
Password = textBoxPassword.Text,
|
|
|
|
|
Qualification = (int)numericUpDownQualification.Value,
|
|
|
|
|
WorkExperience = (int)numericUpDownWorkExperience.Value,
|
|
|
|
|
};
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка сохранения исполнителя");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK,
|
|
|
|
|
MessageBoxIcon.Error);
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-04-19 23:48:32 +04:00
|
|
|
|
|
2023-06-13 23:47:25 +04:00
|
|
|
|
private void ButtonCancel_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
DialogResult = DialogResult.Cancel;
|
|
|
|
|
Close();
|
|
|
|
|
}
|
2023-04-19 23:48:32 +04:00
|
|
|
|
|
2023-06-13 23:47:25 +04:00
|
|
|
|
}
|
2023-04-19 23:48:32 +04:00
|
|
|
|
}
|