Files
Prog4_Beadando/WD7UVN_SzTGUI_2023242.Client.WPF/Windows/NonCRUD/GetUsers.xaml.cs

18 lines
456 B
C#
Raw Normal View History

2024-05-05 17:20:27 +02:00
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 GetUsers : Window
{
private readonly GetUsersViewModel viewModel;
public GetUsers(Service s)
{
InitializeComponent();
viewModel = new GetUsersViewModel(s);
this.DataContext = viewModel;
}
}
}