Aktuelle Schäden können bearbeitet werden

This commit is contained in:
Husky
2020-03-29 17:18:58 +02:00
parent 0bf99f353d
commit 5bc8c58fa6
6 changed files with 43 additions and 4 deletions

View File

@@ -12,5 +12,12 @@ namespace KanSan.SampleData
public bool RissBruchScherbe { get => false; set => throw new NotImplementedException(); }
public bool EinragendeStutzen { get => true; set => throw new NotImplementedException(); }
public string Sanierungstyp { get => "REPERATUR"; set => throw new NotImplementedException(); }
public List<string> AvaibleSanTyps => new List<string>()
{
"Reperatur",
"Renovation",
"Erneuerung"
};
}
}