99 lines
3.7 KiB
C#
99 lines
3.7 KiB
C#
using Microsoft.Extensions.Logging;
|
|
using SecuritySystemContracts.BindingModels;
|
|
using SecuritySystemContracts.BusinessLogicsContracts;
|
|
|
|
namespace SecuritySystemView
|
|
{
|
|
public partial class FormSecures : Form
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly ISecureLogic _logic;
|
|
public FormSecures(ILogger<FormSecures> logger, ISecureLogic logic)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_logic = logic;
|
|
}
|
|
private void FormSecures_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;
|
|
dataGridView.Columns["SecureName"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
dataGridView.Columns["SecureComponents"].Visible = false;
|
|
}
|
|
_logger.LogInformation("Загрузка изделий");
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка загрузки изделий");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK,
|
|
MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
private void ButtonAddSecure_Click(object sender, EventArgs e)
|
|
{
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormSecure));
|
|
if (service is FormSecure form)
|
|
{
|
|
if (form.ShowDialog() == DialogResult.OK)
|
|
{
|
|
LoadData();
|
|
}
|
|
}
|
|
}
|
|
private void ButtonEditSecure_Click(object sender, EventArgs e)
|
|
{
|
|
if (dataGridView.SelectedRows.Count == 1)
|
|
{
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormSecure));
|
|
if (service is FormSecure form)
|
|
{
|
|
form.Id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
|
if (form.ShowDialog() == DialogResult.OK)
|
|
{
|
|
LoadData();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
private void ButtonDeleteSecure_Click(object sender, EventArgs e)
|
|
{
|
|
if (dataGridView.SelectedRows.Count == 1)
|
|
{
|
|
if (MessageBox.Show("Удалить запись?", "Вопрос", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
|
{
|
|
int id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
|
_logger.LogInformation("Удаление изделия");
|
|
try
|
|
{
|
|
if (!_logic.Delete(new SecureBindingModel { Id = id }))
|
|
{
|
|
throw new Exception("Ошибка при удалении. Дополнительная информация в логах.");
|
|
}
|
|
LoadData();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка удаления изделия");
|
|
MessageBox.Show(ex.Message, "Ошибка",
|
|
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
private void ButtonRefreshSecures_Click(object sender, EventArgs e)
|
|
{
|
|
LoadData();
|
|
}
|
|
}
|
|
}
|