Schädenlist angefangen

This commit is contained in:
Husky
2020-03-28 14:51:28 +01:00
parent 38a22e3803
commit 58764bc307
13 changed files with 827 additions and 6 deletions

View File

@@ -0,0 +1,29 @@
using KanSan.Base.Models;
using KanSan.ViewModel;
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace KanSan.UI
{
/// <summary>
/// Interaktionslogik für UCSchaedenList.xaml
/// </summary>
public partial class UCSchaedenList : UserControl
{
public UCSchaedenList(Sewer actualSelectedSewer)
{
InitializeComponent();
this.DataContext = new SchaedenListViewModel(actualSelectedSewer);
}
}
}