WhoMaintainsService done

This commit is contained in:
2024-05-05 17:11:35 +02:00
parent 9cf8ce697e
commit 0f93e5fd25
7 changed files with 137 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
using System.Windows;
using WD7UVN_HFT_2023241.Models;
using WD7UVN_SzTGUI_2023242.Client.WPF.ViewModels;
namespace WD7UVN_SzTGUI_2023242.Client.WPF.Windows
{
/// <summary>
/// Interaction logic for GetAllEmployees.xaml
/// </summary>
public partial class GetMaintainers : Window
{
private readonly GetMaintainersViewModel viewModel;
public GetMaintainers(Service e)
{
InitializeComponent();
viewModel = new GetMaintainersViewModel(e);
this.DataContext = viewModel;
}
}
}