122 lines
4.0 KiB
C#
122 lines
4.0 KiB
C#
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.Extensions.Logging;
|
|
using PrecastConcretePlant;
|
|
using PrecastConcretePlantContracts.BindingModels;
|
|
using PrecastConcretePlantContracts.BusinessLogicsContracts;
|
|
|
|
namespace PrecastConcretePlantView
|
|
{
|
|
public partial class FormReinforceds : Form
|
|
{
|
|
private readonly ILogger _logger;
|
|
private readonly IReinforcedLogic _logic;
|
|
|
|
public FormReinforceds(ILogger<FormReinforceds> logger, IReinforcedLogic logic)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_logic = logic;
|
|
}
|
|
|
|
private void FormComponents_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["ReinforcedName"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
|
DataGridView.Columns["ReinforcedComponents"].Visible = false;
|
|
}
|
|
|
|
_logger.LogInformation("Загрузка ЖБИ");
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка загрузки ЖБИ");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
|
|
private void AddButton_Click(object sender, EventArgs e)
|
|
{
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormReinforced));
|
|
|
|
if (service is FormReinforced form)
|
|
{
|
|
if (form.ShowDialog() == DialogResult.OK)
|
|
{
|
|
LoadData();
|
|
}
|
|
}
|
|
}
|
|
private void ChangeButton_Click(object sender, EventArgs e)
|
|
{
|
|
if (DataGridView.SelectedRows.Count == 1)
|
|
{
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormReinforced));
|
|
|
|
if (service is FormReinforced form)
|
|
{
|
|
form.Id = Convert.ToInt32(DataGridView.SelectedRows[0].Cells["Id"].Value);
|
|
|
|
if (form.ShowDialog() == DialogResult.OK)
|
|
{
|
|
LoadData();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
private void DeleteButton_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 ReinforcedBindingModel
|
|
{
|
|
Id = id
|
|
}))
|
|
{
|
|
throw new Exception("Ошибка при удалении. Дополнительная информация в логах.");
|
|
}
|
|
|
|
LoadData();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка удаления ЖБИ");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
private void UpdateButton_Click(object sender, EventArgs e)
|
|
{
|
|
LoadData();
|
|
}
|
|
}
|
|
}
|