using Microsoft.Extensions.Logging; using GarmentFactoryContracts.BindingModels; using GarmentFactoryContracts.BusinessLogicsContracts; 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; using Microsoft.VisualBasic.Logging; using GarmentFactory; namespace GarmentFactoryView { public partial class FormTextiles : Form { private readonly ILogger _logger; private readonly ITextileLogic _logic; public FormTextiles(ILogger logger, ITextileLogic logic) { InitializeComponent(); _logger = logger; _logic = logic; } // Получение всех изделий при добавлении/обновлении/удалении private void LoadData() { try { var list = _logic.ReadList(null); if (list != null) { dataGridView.DataSource = list; dataGridView.Columns["Id"].Visible = false; dataGridView.Columns["TextileName"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill; dataGridView.Columns["TextileComponents"].Visible = false; } _logger.LogInformation("Загрузка текстилей"); } catch (Exception ex) { _logger.LogError(ex, "Ошибка загрузки текстилей"); MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); } } private void FormTextiles_Load(object sender, EventArgs e) { LoadData(); } private void ButtonAdd_Click(object sender, EventArgs e) { var service = Program.ServiceProvider?.GetService(typeof(FormTextile)); if (service is FormTextile form) { if (form.ShowDialog() == DialogResult.OK) { LoadData(); } } } private void ButtonUpdate_Click(object sender, EventArgs e) { if (dataGridView.SelectedRows.Count == 1) { var service = Program.ServiceProvider?.GetService(typeof(FormTextile)); if (service is FormTextile form) { 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 TextileBindingModel { 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(); } } }