using KanSan.Base.Interfaces.UI; using System; using System.Collections.Generic; using System.Text; namespace KanSan.SampleData { class ObjekteEditViewModelSampleData : IObjekteEditViewModel { string strasseName; string objektnummer; string punktOben; string punktUnten; int durchmesser; string material; bool rohrleitungInBetrieb; bool wasserHaltungdurchgefuehrt; bool haltungGespuelt; bool genehmigungErforderlich; bool baustellenAbsicherung; decimal haltungslaenge; public string StrasseName { get => strasseName; set => throw new NotImplementedException(); } public string Objektnummer { get => objektnummer; set => throw new NotImplementedException(); } public string PunktOben { get => punktOben; set => throw new NotImplementedException(); } public string PunktUnten { get => punktUnten; set => throw new NotImplementedException(); } public int Durchmesser { get => durchmesser; set => throw new NotImplementedException(); } public string Material { get => material; set => throw new NotImplementedException(); } public bool RohrleitungInBetrieb { get => rohrleitungInBetrieb; set => throw new NotImplementedException(); } public bool WasserHaltungDurchgefuehrt { get => wasserHaltungdurchgefuehrt; set => throw new NotImplementedException(); } public bool HaltungGespuelt { get => haltungGespuelt; set => throw new NotImplementedException(); } public bool GenehmigungErforderlich { get => genehmigungErforderlich; set => throw new NotImplementedException(); } public bool BaustellenAbsicherung { get => baustellenAbsicherung; set => throw new NotImplementedException(); } public decimal Haltungslaenge { get => haltungslaenge; set => throw new NotImplementedException(); } public ObjekteEditViewModelSampleData() { strasseName = "Grader Weg"; objektnummer = "SW01"; punktOben = objektnummer; punktUnten = "SW02"; durchmesser = 150; material = "Steinzeug"; haltungslaenge = 10.3m; rohrleitungInBetrieb = false; wasserHaltungdurchgefuehrt = true; haltungGespuelt = true; genehmigungErforderlich = false; baustellenAbsicherung = true; } } }