Files
Prog4_Beadando/WD7UVN_SzTGUI_2023242.Client.WPF/Windows/Create/CreateNewCustomer.xaml.cs

17 lines
441 B
C#

using System;
using System.Windows;
using WD7UVN_SzTGUI_2023242.Client.WPF.ViewModels;
namespace WD7UVN_SzTGUI_2023242.Client.WPF.Windows
{
public partial class CreateNewCustomer : Window
{
public CreateNewCustomer(CreateNewCustomerViewModel viewModel)
{
InitializeComponent();
DataContext = viewModel;
viewModel.CloseAction = new Action(() => this.Close());
}
}
}