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,26 @@
using KanSan.Base.Interfaces.UI;
using KanSan.Base.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace KanSan.SampleData
{
class BaustelleListViewModelSampleData : IBaustelleListViewModel
{
List<Baustelle> baustellen = new List<Baustelle>();
public List<Baustelle> Baustellen => baustellen;
public BaustelleListViewModelSampleData()
{
for (int i = 0; i < 10; i++)
{
baustellen.Add(new Baustelle()
{
BaustelleNummer = "00" + i,
OrtTeil = "Huntlosen "+i
});
}
}
}
}