Files
Kansan/KanSan/SampleData/LeistungsverzeichnisPositionViewModelSampleData.cs
2020-04-13 18:17:07 +02:00

28 lines
977 B
C#

using KanSan.Base.Interfaces.UI;
using System;
using System.Collections.Generic;
using System.Text;
namespace KanSan.SampleData
{
class LeistungsverzeichnisPositionViewModelSampleData : ILeistungsverzeichnisPositionViewModel
{
string positionnummer;
string beschreibung;
string einheit;
string tag;
public string Positionsnummer { get => positionnummer; set => throw new NotImplementedException(); }
public string Beschreibung { get => beschreibung; set => throw new NotImplementedException(); }
public string Einheit { get => einheit; set => throw new NotImplementedException(); }
public string Tag { get => tag; set => throw new NotImplementedException(); }
public LeistungsverzeichnisPositionViewModelSampleData()
{
positionnummer = "1.2.4";
beschreibung = "TV Inspektion DN200";
einheit = "M";
tag = "JMStandard";
}
}
}