ProjectLib/ProjectLibrary/Forms/FBook_Orders.cs

44 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Windows.Forms;
using ProjectLibrary.Entites;
namespace ProjectLibrary.Forms
{
public partial class FBook_Orders : Form
{
private Book_Orders _bookOrders;
public FBook_Orders(Book_Orders bookOrders)
{
InitializeComponent();
_bookOrders = bookOrders;
LoadOrderData();
}
private void LoadOrderData()
{
txtBookID.Text = _bookOrders.BookID.ToString();
txtOrderID.Text = _bookOrders.OrderID.ToString();
}
private void btnSave_Click(object sender, EventArgs e)
{
// Создание новой сущности с обновленными данными
var updatedBookOrders = Book_Orders.CreateEntity(
int.Parse(txtBookID.Text),
int.Parse(txtOrderID.Text)
);
// Обновление внутренней переменной
_bookOrders = updatedBookOrders;
MessageBox.Show("Данные успешно сохранены!");
}
private void buttonCancel_Click_Click(object sender, EventArgs e)
{
}
}
}