2024-03-26 12:54:51 +01:00
|
|
|
|
using System.Windows;
|
2024-04-29 22:57:48 +02:00
|
|
|
|
using WD7UVN_SzTGUI_2023242.Client.WPF.Windows;
|
2024-03-26 11:35:07 +01:00
|
|
|
|
|
|
|
|
|
|
namespace WD7UVN_SzTGUI_2023242.Client.WPF
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Interaction logic for MainWindow.xaml
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
|
{
|
|
|
|
|
|
public MainWindow()
|
|
|
|
|
|
{
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
2024-03-26 12:54:51 +01:00
|
|
|
|
|
|
|
|
|
|
private void ExpandAllServices(object sender, RoutedEventArgs e)
|
|
|
|
|
|
{
|
2024-04-03 12:24:12 +02:00
|
|
|
|
Window window = new GetAllServices();
|
|
|
|
|
|
window.Show();
|
2024-03-26 12:54:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void ExpandAllCustomers(object sender, RoutedEventArgs e)
|
|
|
|
|
|
{
|
2024-04-29 22:57:48 +02:00
|
|
|
|
Window window = new GetAllCustomers();
|
|
|
|
|
|
window.Show();
|
2024-03-26 12:54:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-04-28 18:01:14 +02:00
|
|
|
|
private void ExpandAllEmployees(object sender, RoutedEventArgs e)
|
2024-03-26 12:54:51 +01:00
|
|
|
|
{
|
2024-04-29 22:57:48 +02:00
|
|
|
|
Window window = new GetAllEmployees();
|
|
|
|
|
|
window.Show();
|
2024-03-26 12:54:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-04-28 18:01:14 +02:00
|
|
|
|
private void ExpandAllMaintainerTeams(object sender, RoutedEventArgs e)
|
2024-03-26 12:54:51 +01:00
|
|
|
|
{
|
2024-04-29 22:57:48 +02:00
|
|
|
|
Window window = new GetAllMaintainerTeams();
|
|
|
|
|
|
window.Show();
|
2024-03-26 12:54:51 +01:00
|
|
|
|
}
|
2024-03-26 11:35:07 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|