using System.Windows; using WD7UVN_HFT_2023241.Models; using WD7UVN_SzTGUI_2023242.Client.WPF.ViewModels; namespace WD7UVN_SzTGUI_2023242.Client.WPF.Windows { /// /// Interaction logic for GetAllEmployees.xaml /// public partial class GetMaintainers : Window { private readonly GetMaintainersViewModel viewModel; public GetMaintainers(Service e) { InitializeComponent(); viewModel = new GetMaintainersViewModel(e); this.DataContext = viewModel; } } }