working on WhoIsResponsibleForService

This commit is contained in:
MiskolcziRichard
2024-05-04 20:33:50 +02:00
parent b0ba438336
commit 42b078a49a
7 changed files with 148 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
using System.Windows;
using WD7UVN_HFT_2023241.Models;
using WD7UVN_SzTGUI_2023242.Client.WPF.ViewModels;
namespace WD7UVN_SzTGUI_2023242.Client.WPF.Windows
{
public partial class GetResponsibleEmployee : Window
{
private readonly GetResponsibleEmployeeViewModel viewModel;
public GetResponsibleEmployee(Service s)
{
InitializeComponent();
viewModel = new GetResponsibleEmployeeViewModel(s);
this.DataContext = viewModel;
}
}
}