2024-03-26 13:00:50 +01:00
|
|
|
|
using System.Windows;
|
2024-03-26 12:54:51 +01:00
|
|
|
|
|
2024-04-29 22:57:48 +02:00
|
|
|
|
namespace WD7UVN_SzTGUI_2023242.Client.WPF.Windows
|
2024-03-26 12:54:51 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Interaction logic for GetAllServices.xaml
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public partial class GetAllServices : Window
|
|
|
|
|
|
{
|
|
|
|
|
|
public GetAllServices()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
2024-04-28 18:00:25 +02:00
|
|
|
|
|
|
|
|
|
|
private void CreateNewService(object sender, RoutedEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
Window window = new CreateNewService();
|
|
|
|
|
|
window.Show();
|
|
|
|
|
|
}
|
2024-03-26 12:54:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|