Daten um Vermesser und Aufnahmedatum erweitert

This commit is contained in:
2023-04-24 14:27:50 +02:00
parent 8bfe685072
commit d511c74509
8 changed files with 55 additions and 19 deletions

View File

@@ -89,7 +89,6 @@ namespace StammGenerator.ViewModel
}
}
}
public decimal SohlHoehe
{
get => _model.SohlHoehe;
@@ -102,6 +101,30 @@ namespace StammGenerator.ViewModel
}
}
}
public string Vermesser
{
get => _model.Vermesser;
set
{
if(_model.Vermesser != value)
{
_model.Vermesser = value;
OnPropertyChanged();
}
}
}
public string AufnahmeDatum
{
get => _model.AufnahmeDatum;
set
{
if(_model.AufnahmeDatum != value)
{
_model.AufnahmeDatum = value;
OnPropertyChanged();
}
}
}
public EEntwaeserung Entwaeserung
{
get => _model.Entwaesserung;