ProjectLib/ProjectLibrary/Forms/FBook_library.cs

46 lines
1.3 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_library : Form
{
private Book_Library _bookLibrary;
public FBook_library(Book_Library bookLibrary)
{
InitializeComponent();
_bookLibrary = bookLibrary;
LoadLibraryData();
}
private void LoadLibraryData()
{
txtBookID.Text = _bookLibrary.BookID.ToString();
txtLibraryID.Text = _bookLibrary.LibraryID.ToString();
txtCount.Text = _bookLibrary.Count.ToString();
}
private void btnSave_Click(object sender, EventArgs e)
{
// Создание новой сущности с измененными данными
var updatedBookLibrary = Book_Library.CreateEntity(
int.Parse(txtBookID.Text),
int.Parse(txtLibraryID.Text),
int.Parse(txtCount.Text)
);
// Обновление внутренней переменной
_bookLibrary = updatedBookLibrary;
MessageBox.Show("Данные успешно сохранены!");
}
private void buttonCancel_Click_Click(object sender, EventArgs e)
{
}
}
}