2024-04-28 18:00:25 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Windows;
|
2024-05-06 19:13:17 +02:00
|
|
|
|
using WD7UVN_SzTGUI_2023242.Client.WPF.ViewModels;
|
2024-04-28 18:00:25 +02:00
|
|
|
|
|
|
|
|
|
|
namespace WD7UVN_SzTGUI_2023242.Client.WPF.Windows
|
|
|
|
|
|
{
|
|
|
|
|
|
public partial class CreateNewService : Window
|
|
|
|
|
|
{
|
2024-05-06 19:13:17 +02:00
|
|
|
|
public CreateNewService(CreateNewServiceViewModel viewModel)
|
2024-04-28 18:00:25 +02:00
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
2024-05-06 19:13:17 +02:00
|
|
|
|
DataContext = viewModel;
|
|
|
|
|
|
viewModel.CloseAction = new Action(() => this.Close());
|
2024-04-28 18:00:25 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|