Files
Prog4_Beadando/WD7UVN_SzTGUI_2023242.Client.WPF/Windows/GetAll/GetAllCustomers.xaml.cs

22 lines
493 B
C#
Raw Normal View History

2024-04-29 22:57:48 +02:00
using System.Windows;
2024-04-28 18:00:25 +02:00
namespace WD7UVN_SzTGUI_2023242.Client.WPF.Windows
{
/// <summary>
/// Interaction logic for GetAllCustomers.xaml
/// </summary>
public partial class GetAllCustomers : Window
{
public GetAllCustomers()
{
InitializeComponent();
}
2024-04-29 22:57:48 +02:00
private void CreateNewCustomer(object sender, RoutedEventArgs e)
{
Window window = new CreateNewCustomer();
window.Show();
}
2024-04-28 18:00:25 +02:00
}
}