Güteschutzbericht angefangen
This commit is contained in:
22
KanSan/SampleData/HarzSanierungEditViewModelSampleData.cs
Normal file
22
KanSan/SampleData/HarzSanierungEditViewModelSampleData.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using KanSan.Base.Interfaces.UI;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace KanSan.SampleData
|
||||
{
|
||||
class HarzSanierungEditViewModelSampleData : IHarzSanierungViewModel
|
||||
{
|
||||
public string HarzMaterialHersteller { get => "Fluvius"; set => throw new NotImplementedException(); }
|
||||
public string HarzMaterialArt { get => "02"; set => throw new NotImplementedException(); }
|
||||
public string KompACharge { get => "2020202392"; set => throw new NotImplementedException(); }
|
||||
public string KompBCharge { get => "29Z-3030"; set => throw new NotImplementedException(); }
|
||||
public string TrägerHersteller { get => "Fluvius"; set => throw new NotImplementedException(); }
|
||||
public string TrägerCharge { get => "3929292"; set => throw new NotImplementedException(); }
|
||||
public bool Auffälligkeit { get => false; set => throw new NotImplementedException(); }
|
||||
public bool FixierungAufPacker { get => true; set => throw new NotImplementedException(); }
|
||||
public DateTime MischZeit { get => new DateTime(2020,05,09,15,09,00); set => throw new NotImplementedException(); }
|
||||
public DateTime AnpressenPacker { get => new DateTime(2020,05,09,15,17,00); set => throw new NotImplementedException(); }
|
||||
public DateTime EntlüftenPacker { get => new DateTime(2020,05,09,17,30,00); set => throw new NotImplementedException(); }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user