Baustellen können nun angelegt und ausgewählt werden

This commit is contained in:
Husky
2020-03-11 19:21:10 +01:00
parent 7a4068439c
commit 47beb8b598
19 changed files with 405 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
using KanSan.Base.Interfaces.UI;
using System;
using System.Collections.Generic;
using System.Text;
namespace KanSan.SampleData
{
class BaustelleEditViewModelSampleData : IBaustelleEditViewModel
{
string baustelleNummer;
string ortTeil;
public string BaustelleNummer { get => baustelleNummer; set => baustelleNummer = value; }
public string OrtTeil { get => ortTeil; set => ortTeil = value; }
public BaustelleEditViewModelSampleData()
{
baustelleNummer = "20-850-005";
ortTeil = "Bramsche";
}
}
}