123 lines
3.5 KiB
C#
123 lines
3.5 KiB
C#
using AircraftPlantContracts.BusinessLogicsContracts;
|
|
using AircraftPlantContracts.ViewModels;
|
|
using AircraftPlantDataModels.Models;
|
|
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 AircraftPlantView
|
|
{
|
|
/// <summary>
|
|
/// Форма для добавление компонента в изделие
|
|
/// </summary>
|
|
public partial class FormPlaneComponent : Form
|
|
{
|
|
/// <summary>
|
|
/// Список компонентов
|
|
/// </summary>
|
|
private readonly List<ComponentViewModel>? _list;
|
|
|
|
/// <summary>
|
|
/// Идентификатор
|
|
/// </summary>
|
|
public int Id
|
|
{
|
|
get
|
|
{
|
|
return Convert.ToInt32(comboBoxComponent.SelectedValue);
|
|
}
|
|
set
|
|
{
|
|
comboBoxComponent.SelectedValue = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Модель компонента
|
|
/// </summary>
|
|
public IComponentModel? ComponentModel
|
|
{
|
|
get
|
|
{
|
|
if (_list == null)
|
|
{
|
|
return null;
|
|
}
|
|
foreach (var elem in _list)
|
|
{
|
|
if (elem.Id == Id)
|
|
{
|
|
return elem;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Количество
|
|
/// </summary>
|
|
public int Count
|
|
{
|
|
get { return Convert.ToInt32(textBoxCount.Text); }
|
|
set { textBoxCount.Text = value.ToString(); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Конструктор
|
|
/// </summary>
|
|
/// <param name="logic"></param>
|
|
public FormPlaneComponent(IComponentLogic logic)
|
|
{
|
|
InitializeComponent();
|
|
|
|
_list = logic.ReadList(null);
|
|
if (_list != null)
|
|
{
|
|
comboBoxComponent.DisplayMember = "ComponentName";
|
|
comboBoxComponent.ValueMember = "Id";
|
|
comboBoxComponent.DataSource = _list;
|
|
comboBoxComponent.SelectedItem = null;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Кнопка "Сохранить"
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void buttonSave_Click(object sender, EventArgs e)
|
|
{
|
|
if (string.IsNullOrEmpty(textBoxCount.Text))
|
|
{
|
|
MessageBox.Show("Заполните поле Количество", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
if (comboBoxComponent.SelectedValue == null)
|
|
{
|
|
MessageBox.Show("Выберите компонент", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
return;
|
|
}
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Кнопка "Отмена"
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
private void buttonCancel_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.Cancel;
|
|
Close();
|
|
}
|
|
}
|
|
}
|