using AircraftPlantContracts.BindingModels; using AircraftPlantContracts.BusinessLogicsContracts; using AircraftPlantContracts.DependencyInjections; using Microsoft.Extensions.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; namespace AircraftPlantView { /// /// Форма для вывода всех исполнителей /// public partial class FormImplementers : Form { /// /// Логгер /// private readonly ILogger _logger; /// /// Бизнес-логика для исполнителей /// private readonly IImplementerLogic _logic; /// /// Конструктор /// /// /// public FormImplementers(ILogger logger, IImplementerLogic logic) { InitializeComponent(); _logger = logger; _logic = logic; } /// /// Загрузка списка исполнителей /// /// /// private void FormImplementers_Load(object sender, EventArgs e) { LoadData(); } /// /// Кнопка "Добавить" /// /// /// private void buttonAdd_Click(object sender, EventArgs e) { var form = DependencyManager.Instance.Resolve(); if (form.ShowDialog() == DialogResult.OK) { LoadData(); } } /// /// Кнопка "Изменить" /// /// /// private void buttonUpdate_Click(object sender, EventArgs e) { if (dataGridView.SelectedRows.Count == 1) { var form = DependencyManager.Instance.Resolve(); form.Id = Convert.ToInt32(dataGridView.SelectedRows[0].Cells["Id"].Value); if (form.ShowDialog() == DialogResult.OK) { LoadData(); } } } /// /// Кнопка "Удалить" /// /// /// private void buttonDelete_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 ImplementerBindingModel { Id = id })) { throw new Exception("Ошибка при удалении. Дополнительная информация в логах."); } LoadData(); } catch (Exception ex) { _logger.LogError(ex, "Ошибка удаления исполнителя"); MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } } /// /// Кнопка "Обновить" /// /// /// private void buttonRefresh_Click(object sender, EventArgs e) { LoadData(); } /// /// Метод загрузки списка исполнителей /// private void LoadData() { try { dataGridView.FillAndConfigGrid(_logic.ReadList(null)); _logger.LogInformation("Загрузка списка исполнителей"); } catch (Exception ex) { _logger.LogError(ex, "Ошибка загрузки списка исполнителей"); MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } }