ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallation/FormComponents.cs

103 lines
3.6 KiB
C#
Raw Normal View History

2024-04-07 17:05:30 +04:00
using SoftwareInstallationContracts.BindingModels;
2024-04-07 16:54:02 +04:00
using SoftwareInstallationContracts.BusinessLogicsContracts;
2024-04-07 17:05:30 +04:00
using Microsoft.Extensions.Logging;
2024-04-07 16:54:02 +04:00
2024-05-12 14:38:32 +04:00
namespace SoftwareInstallationView
2024-04-07 16:54:02 +04:00
{
public partial class FormComponents : Form
{
private readonly ILogger _logger;
2024-05-12 14:38:32 +04:00
2024-04-07 16:54:02 +04:00
private readonly IComponentLogic _logic;
2024-05-12 14:38:32 +04:00
2024-04-07 16:54:02 +04:00
public FormComponents(ILogger<FormComponents> logger, IComponentLogic logic)
{
InitializeComponent();
_logger = logger;
_logic = logic;
}
private void FormComponents_Load(object sender, EventArgs e)
{
LoadData();
}
private void LoadData()
{
try
{
var list = _logic.ReadList(null);
if (list != null)
{
dataGridView.DataSource = list;
dataGridView.Columns["Id"].Visible = false;
2024-04-07 17:05:30 +04:00
dataGridView.Columns["ComponentName"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
2024-04-07 16:54:02 +04:00
}
2024-05-12 14:38:32 +04:00
_logger.LogInformation("Components loading");
2024-04-07 16:54:02 +04:00
}
catch (Exception ex)
{
2024-05-12 14:38:32 +04:00
_logger.LogError(ex, "Components loading error");
2024-04-07 17:05:30 +04:00
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
2024-04-07 16:54:02 +04:00
}
}
2024-05-12 14:38:32 +04:00
private void ButtonAdd_Click(object sender, EventArgs e)
2024-04-07 16:54:02 +04:00
{
var service = Program.ServiceProvider?.GetService(typeof(FormComponent));
if (service is FormComponent form)
{
if (form.ShowDialog() == DialogResult.OK)
{
LoadData();
}
}
}
2024-05-12 14:38:32 +04:00
private void ButtonEdit_Click(object sender, EventArgs e)
2024-04-07 16:54:02 +04:00
{
if (dataGridView.SelectedRows.Count == 1)
{
var service = Program.ServiceProvider?.GetService(typeof(FormComponent));
if (service is FormComponent form)
{
2024-04-07 17:05:30 +04:00
form.Id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
2024-04-07 16:54:02 +04:00
if (form.ShowDialog() == DialogResult.OK)
{
LoadData();
}
}
}
}
2024-05-12 14:38:32 +04:00
private void ButtonDel_Click(object sender, EventArgs e)
2024-04-07 16:54:02 +04:00
{
if (dataGridView.SelectedRows.Count == 1)
{
2024-04-07 17:05:30 +04:00
if (MessageBox.Show("Удалить запись?", "Вопрос", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
2024-04-07 16:54:02 +04:00
{
2024-05-12 14:38:32 +04:00
int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
_logger.LogInformation("Deletion of component");
2024-04-07 16:54:02 +04:00
try
{
2024-05-12 14:38:32 +04:00
if (!_logic.Delete(new ComponentBindingModel { Id = id }))
2024-04-07 16:54:02 +04:00
{
throw new Exception("Ошибка при удалении. Дополнительная информация в логах.");
}
LoadData();
}
catch (Exception ex)
{
2024-05-12 14:38:32 +04:00
_logger.LogError(ex, "Component deletion error");
2024-04-07 17:05:30 +04:00
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
2024-04-07 16:54:02 +04:00
}
}
}
}
2024-05-12 14:38:32 +04:00
private void ButtonUpd_Click(object sender, EventArgs e)
2024-04-07 16:54:02 +04:00
{
LoadData();
}
}
2024-05-12 14:38:32 +04:00
}