2024-02-27 19:44:44 +04:00
|
|
|
|
using AbstractLawFirmContracts.BindingModels.BindingModels;
|
|
|
|
|
using AbstractLawFirmContracts.BusinessLogicsContracts;
|
2024-02-11 18:24:54 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2024-02-27 19:44:44 +04:00
|
|
|
|
using Microsoft.VisualBasic.Logging;
|
|
|
|
|
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-02-11 18:24:54 +04:00
|
|
|
|
|
2024-02-14 00:11:21 +04:00
|
|
|
|
namespace LawFirmView
|
2024-02-11 18:24:54 +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();
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
}
|
2024-02-11 18:24:54 +04:00
|
|
|
|
private void LoadData()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var list = _logic.ReadList(null);
|
|
|
|
|
if (list != null)
|
|
|
|
|
{
|
|
|
|
|
dataGridView.DataSource = list;
|
|
|
|
|
dataGridView.Columns["Id"].Visible = false;
|
2024-02-27 19:44:44 +04:00
|
|
|
|
dataGridView.Columns["ComponentName"].AutoSizeMode =
|
|
|
|
|
DataGridViewAutoSizeColumnMode.Fill;
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("Загрузка компонентов");
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка загрузки компонентов");
|
2024-02-27 19:44:44 +04:00
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK,
|
|
|
|
|
MessageBoxIcon.Error);
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
private void buttonAdd_Click(object sender, EventArgs e)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormComponent));
|
|
|
|
|
if (service is FormComponent form)
|
|
|
|
|
{
|
|
|
|
|
if (form.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
private void buttonUpd_Click(object sender, EventArgs e)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
if (dataGridView.SelectedRows.Count == 1)
|
|
|
|
|
{
|
2024-02-27 19:44:44 +04:00
|
|
|
|
var service =
|
|
|
|
|
Program.ServiceProvider?.GetService(typeof(FormComponent));
|
2024-02-11 18:24:54 +04:00
|
|
|
|
if (service is FormComponent form)
|
|
|
|
|
{
|
2024-02-27 19:44:44 +04:00
|
|
|
|
form.Id =
|
|
|
|
|
Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
2024-02-11 18:24:54 +04:00
|
|
|
|
if (form.ShowDialog() == DialogResult.OK)
|
|
|
|
|
{
|
2024-02-27 19:44:44 +04:00
|
|
|
|
LoadData();
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-27 19:44:44 +04:00
|
|
|
|
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
private void buttonDel_Click(object sender, EventArgs e)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
if (dataGridView.SelectedRows.Count == 1)
|
|
|
|
|
{
|
2024-02-27 19:44:44 +04:00
|
|
|
|
if (MessageBox.Show("Удалить запись?", "Вопрос",
|
|
|
|
|
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
2024-02-27 19:44:44 +04:00
|
|
|
|
int id =
|
|
|
|
|
Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value);
|
2024-02-11 18:24:54 +04:00
|
|
|
|
_logger.LogInformation("Удаление компонента");
|
|
|
|
|
try
|
|
|
|
|
{
|
2024-02-27 19:44:44 +04:00
|
|
|
|
if (!_logic.Delete(new ComponentBindingModel
|
|
|
|
|
{
|
|
|
|
|
Id = id
|
|
|
|
|
}))
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
throw new Exception("Ошибка при удалении. Дополнительная информация в логах.");
|
|
|
|
|
}
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка удаления компонента");
|
2024-02-27 19:44:44 +04:00
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка",
|
|
|
|
|
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-27 19:44:44 +04:00
|
|
|
|
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
|
|
|
|
|
2024-02-27 19:44:44 +04:00
|
|
|
|
private void buttonRef_Click(object sender, EventArgs e)
|
2024-02-11 18:24:54 +04:00
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
2024-02-27 19:44:44 +04:00
|
|
|
|
|
|
|
|
|
|
2024-02-11 18:24:54 +04:00
|
|
|
|
}
|
2024-02-27 19:44:44 +04:00
|
|
|
|
}
|