192 lines
7.1 KiB
C#
192 lines
7.1 KiB
C#
using Microsoft.Extensions.Logging;
|
|
using RouteGuideBusinessLogics.BusinessLogics;
|
|
using RouteGuideContracts.BindingModels;
|
|
using RouteGuideContracts.BusinessLogicsContracts;
|
|
using RouteGuideContracts.SearchModels;
|
|
using RouteGuideDataModels.Enums;
|
|
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 RouteGuideView
|
|
{
|
|
/// <summary>
|
|
/// Форма для создания/редактирования транспорта
|
|
/// </summary>
|
|
public partial class FormTransport : Form
|
|
{
|
|
/// <summary>
|
|
/// Логгер
|
|
/// </summary>
|
|
private readonly ILogger _logger;
|
|
|
|
/// <summary>
|
|
/// Бизнес-логика для транспорта
|
|
/// </summary>
|
|
private readonly ITransportLogic _transportLogic;
|
|
|
|
/// <summary>
|
|
/// Бизнес-логика для водителей
|
|
/// </summary>
|
|
private readonly IDriverLogic _driverLogic;
|
|
|
|
/// <summary>
|
|
/// Идентификатор
|
|
/// </summary>
|
|
private int? _id;
|
|
|
|
/// <summary>
|
|
/// Идентификатор
|
|
/// </summary>
|
|
public int Id { set { _id = value; } }
|
|
|
|
/// <summary>
|
|
/// Конструктор
|
|
/// </summary>
|
|
/// <param name="logger"></param>
|
|
/// <param name="transportLogic"></param>
|
|
/// <param name="driverLogic"></param>
|
|
public FormTransport(ILogger<FormTransport> logger, ITransportLogic transportLogic, IDriverLogic driverLogic)
|
|
{
|
|
InitializeComponent();
|
|
_logger = logger;
|
|
_transportLogic = transportLogic;
|
|
_driverLogic = driverLogic;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Загрузка данных
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void FormTransport_Load(object sender, EventArgs e)
|
|
{
|
|
// Загрузка типов транспорта для ComboBoxType
|
|
foreach (TransportType type in Enum.GetValues(typeof(TransportType)))
|
|
{
|
|
comboBoxType.Items.Add(type);
|
|
}
|
|
|
|
try
|
|
{
|
|
// Загрузка водителей для ComboBoxDriver
|
|
_logger.LogInformation("Загрузка списка водителей");
|
|
var list = _driverLogic.ReadList(null);
|
|
if (list != null)
|
|
{
|
|
comboBoxDriver.DisplayMember = "FullName";
|
|
comboBoxDriver.ValueMember = "Id";
|
|
comboBoxDriver.DataSource = list;
|
|
comboBoxDriver.SelectedItem = null;
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка загрузки списка водителей");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
|
|
if (!_id.HasValue)
|
|
{
|
|
return;
|
|
}
|
|
|
|
try
|
|
{
|
|
// Заполнение полей
|
|
_logger.LogInformation("Получение сущности 'Транспорт'");
|
|
var view = _transportLogic.ReadElement(new TransportSearchModel
|
|
{
|
|
Id = _id.Value
|
|
});
|
|
if (view != null)
|
|
{
|
|
textBoxLicense.Text = view.License;
|
|
textBoxCapacity.Text = view.Capacity.ToString();
|
|
comboBoxDriver.SelectedValue = view.DriverId;
|
|
comboBoxType.SelectedItem = view.Type;
|
|
}
|
|
}
|
|
catch (Exception ex1)
|
|
{
|
|
_logger.LogError(ex1, "Ошибка получения сущности 'Водитель'");
|
|
MessageBox.Show(ex1.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Кнопка "Сохранить"
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void buttonSave_Click(object sender, EventArgs e)
|
|
{
|
|
if (comboBoxType.SelectedIndex == -1)
|
|
{
|
|
MessageBox.Show("Выберите тип транспорта", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
if (comboBoxDriver.SelectedValue == null)
|
|
{
|
|
MessageBox.Show("Выберите водителя", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
if (string.IsNullOrEmpty(textBoxLicense.Text))
|
|
{
|
|
MessageBox.Show("Заполните номер транспорта", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
if (string.IsNullOrEmpty(textBoxCapacity.Text))
|
|
{
|
|
MessageBox.Show("Заполните вместимость", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
|
|
_logger.LogInformation("Сохранение сущности 'Транспорт'");
|
|
try
|
|
{
|
|
var model = new TransportBindingModel
|
|
{
|
|
Id = _id ?? 0,
|
|
License = textBoxLicense.Text,
|
|
Type = (TransportType)comboBoxType.SelectedItem,
|
|
Capacity = int.TryParse(textBoxCapacity.Text, out var capacity) ? capacity : 1,
|
|
DriverId = Convert.ToInt32(comboBoxDriver.SelectedValue)
|
|
};
|
|
|
|
var operationResult = _id.HasValue ? _transportLogic.Update(model) : _transportLogic.Create(model);
|
|
if (!operationResult)
|
|
{
|
|
throw new Exception("Ошибка при сохранении сущности 'Транспорт'. Дополнительная информация в логах.");
|
|
}
|
|
|
|
MessageBox.Show("Сохранение сущности 'Транспорт' прошло успешно", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Ошибка сохранения сущности 'Транспорт'");
|
|
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Кнопка "Отмена"
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void buttonCancel_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.Cancel;
|
|
Close();
|
|
}
|
|
}
|
|
}
|