Schriftgröse geändert

Projekte können nun ausgewählt werden
This commit is contained in:
Husky
2020-02-26 14:54:27 +01:00
parent 9457784293
commit 5ba62ac16f
16 changed files with 302 additions and 16 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 ProjektEditViewModelSampleData : IProjektEditViewModel
{
string projektnummer;
string ort;
public string Projektnummer { get => projektnummer; set => projektnummer = value; }
public string Ort { get => ort; set => ort = value; }
public ProjektEditViewModelSampleData()
{
ort = "Oldenburg";
projektnummer = "20-850-024";
}
}
}