Leistungsverzeichnis hinzugefügt
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user