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

110 lines
3.8 KiB
C#
Raw Normal View History

2024-04-07 17:40:43 +04:00
using Microsoft.Extensions.Logging;
2024-06-17 19:27:42 +04:00
using SoftwareInstallation;
2024-05-19 10:10:11 +04:00
using SoftwareInstallation.Forms;
2024-04-07 17:40:43 +04:00
using SoftwareInstallationContracts.BindingModels;
2024-04-07 16:54:02 +04:00
using SoftwareInstallationContracts.BusinessLogicsContracts;
2024-06-17 19:27:42 +04:00
using SoftwareInstallationContracts.DI
2024-04-07 17:05:30 +04:00
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;
2024-04-07 16:54:02 +04:00
2024-04-07 17:40:43 +04:00
namespace SoftwareInstallationView
2024-04-07 16:54:02 +04:00
{
public partial class FormComponents : Form
{
private readonly ILogger _logger;
private readonly IComponentLogic _logic;
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
{
2024-06-17 19:27:42 +04:00
dataGridView.FillandConfigGrid(_logic.ReadList(null));
2024-04-07 17:05:30 +04:00
_logger.LogInformation("Загрузка компонентов");
2024-04-07 16:54:02 +04:00
}
catch (Exception ex)
{
2024-04-07 17:05:30 +04:00
_logger.LogError(ex, "Ошибка загрузки компонентов");
2024-04-07 17:40:43 +04:00
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK,
MessageBoxIcon.Error);
2024-04-07 16:54:02 +04:00
}
}
2024-04-07 17:40:43 +04:00
private void ButtonAdd_Click(object sender, EventArgs e)
2024-04-07 16:54:02 +04:00
{
2024-06-17 19:27:42 +04:00
var service = DependencyManager.Instance.Resolve<FormComponent>();
2024-04-07 16:54:02 +04:00
if (service is FormComponent form)
{
if (form.ShowDialog() == DialogResult.OK)
{
LoadData();
}
}
}
2024-04-07 17:40:43 +04:00
private void ButtonUpd_Click(object sender, EventArgs e)
2024-04-07 16:54:02 +04:00
{
if (dataGridView.SelectedRows.Count == 1)
{
2024-06-17 19:27:42 +04:00
var service = DependencyManager.Instance.Resolve<FormComponent>();
2024-04-07 16:54:02 +04:00
if (service is FormComponent form)
{
2024-06-17 19:27:42 +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-04-07 17:40:43 +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:40:43 +04:00
if (MessageBox.Show("Удалить запись?", "Вопрос",
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
2024-04-07 16:54:02 +04:00
{
int id =
2024-04-07 17:40:43 +04:00
Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
2024-04-07 17:05:30 +04:00
_logger.LogInformation("Удаление компонента");
2024-04-07 16:54:02 +04:00
try
{
if (!_logic.Delete(new ComponentBindingModel
{
Id = id
}))
{
throw new Exception("Ошибка при удалении. Дополнительная информация в логах.");
}
LoadData();
}
catch (Exception ex)
{
2024-04-07 17:05:30 +04:00
_logger.LogError(ex, "Ошибка удаления компонента");
2024-04-07 17:40:43 +04:00
MessageBox.Show(ex.Message, "Ошибка",
MessageBoxButtons.OK, MessageBoxIcon.Error);
2024-04-07 16:54:02 +04:00
}
}
}
}
2024-04-07 17:40:43 +04:00
private void ButtonRef_Click(object sender, EventArgs e)
2024-04-07 16:54:02 +04:00
{
LoadData();
}
}
}