Adding Customers now works.

This commit is contained in:
2024-05-05 18:14:31 +02:00
parent 39fb1aaffa
commit 04f7e998cb
12 changed files with 279 additions and 25 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 GetColleagues : Window
{
private readonly GetColleaguesViewModel viewModel;
public GetColleagues(MaintainerTeam m)
{
InitializeComponent();
viewModel = new GetColleaguesViewModel(m);
this.DataContext = viewModel;
}
}
}