2023-02-06 17:46:35 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using System;
|
2023-02-05 21:19:21 +04:00
|
|
|
|
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;
|
2023-02-06 17:46:35 +04:00
|
|
|
|
using JewelryStore;
|
|
|
|
|
using JewelryStoreContracts.BindingModels;
|
|
|
|
|
using JewelryStoreContracts.BusinessLogicsContracts;
|
2023-02-05 21:19:21 +04:00
|
|
|
|
namespace JewelryStore
|
|
|
|
|
{
|
2023-02-05 21:33:15 +04:00
|
|
|
|
public partial class FormJewels : Form //TODO
|
2023-02-05 21:19:21 +04:00
|
|
|
|
{
|
2023-02-06 17:46:35 +04:00
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IJewelLogic _logic;
|
|
|
|
|
|
|
|
|
|
public FormJewels(ILogger<FormJewels> logger, IJewelLogic logic)
|
2023-02-05 21:19:21 +04:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
2023-02-06 17:46:35 +04:00
|
|
|
|
_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["JewelName"].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
|
2023-02-07 13:21:07 +04:00
|
|
|
|
DataGridView.Columns["JewelComponents"].Visible = false;
|
|
|
|
|
|
2023-02-06 17:46:35 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_logger.LogInformation("Загрузка компонентов");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка загрузки компонентов");
|
|
|
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
|
|
|
}
|
2023-02-05 21:19:21 +04:00
|
|
|
|
}
|
2023-02-06 17:46:35 +04:00
|
|
|
|
|
|
|
|
|
private void AddButton_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormJewel));
|
|
|
|
|
|
|
|
|
|
if (service is FormJewel 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(FormJewel));
|
|
|
|
|
|
|
|
|
|
if (service is FormJewel 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 JewelBindingModel
|
|
|
|
|
{
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void FormJewels_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LoadData();
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-05 21:19:21 +04:00
|
|
|
|
}
|
|
|
|
|
}
|