using Microsoft.Extensions.Logging;
using RouteGuideContracts.BindingModels;
using RouteGuideContracts.BusinessLogicsContracts;
using RouteGuideContracts.SearchModels;
using System;
using System.Collections.Generic;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace RouteGuideView
{
///
/// Форма для создания/редактирования водителей
///
public partial class FormDriver : Form
{
///
/// Логгер
///
private readonly ILogger _logger;
///
/// Бизнес-логика
///
private readonly IDriverLogic _driverLogic;
///
/// Идентификатор
///
private int? _id;
///
/// Идентификатор
///
public int Id { set { _id = value; } }
///
/// Конструктор
///
public FormDriver(ILogger logger, IDriverLogic driverLogic)
{
InitializeComponent();
_logger = logger;
_driverLogic = driverLogic;
}
///
/// Загрузка информации о сущности
///
///
///
private void FormDriver_Load(object sender, EventArgs e)
{
if (!_id.HasValue)
{
return;
}
try
{
_logger.LogInformation("Получение сущности 'Водитель'");
var view = _driverLogic.ReadElement(new DriverSearchModel
{
Id = _id.Value
});
if (view != null)
{
textBoxFullName.Text = view.FullName;
textBoxPhone.Text = view.Phone;
textBoxExperience.Text = view.Experience.ToString();
}
}
catch (Exception ex)
{
_logger.LogError(ex, "Ошибка получения сущности 'Водитель'");
MessageBox.Show(ex.Message, "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
///
/// Кнопка "Сохранить"
///
///
///
private void buttonSave_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(textBoxFullName.Text))
{
MessageBox.Show("Заполните ФИО", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
if (string.IsNullOrEmpty(textBoxPhone.Text))
{
MessageBox.Show("Заполните номер телефона", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
_logger.LogInformation("Сохранение сущности 'Водитель'");
try
{
var model = new DriverBindingModel
{
Id = _id ?? 0,
FullName = textBoxFullName.Text,
Phone = textBoxPhone.Text,
Experience = int.TryParse(textBoxExperience.Text, out int experience) ? experience : 0
};
var operationResult = _id.HasValue ? _driverLogic.Update(model) : _driverLogic.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);
}
}
///
/// Кнопка "Отмена"
///
///
///
private void buttonCancel_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.Cancel;
Close();
}
}
}