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

24 lines
561 B
C#
Raw Normal View History

2024-03-26 13:00:50 +01:00
using System.Windows;
using WD7UVN_HFT_2023241.Models;
2024-04-28 18:00:25 +02:00
using WD7UVN_SzTGUI_2023242.Client.WPF.Windows;
2024-03-26 12:54:51 +01:00
namespace WD7UVN_SzTGUI_2023242.Client.WPF
{
/// <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
}
}