Revisionschächte werden nun mit abgelegt.

This commit is contained in:
2023-07-24 19:51:45 +02:00
parent cea3fc448b
commit a0067655b4
5 changed files with 31 additions and 3 deletions

View File

@@ -138,6 +138,19 @@ namespace StammGenerator.ViewModel
}
}
public ESchachtType SchachtType
{
get => _model.SchachtType;
set
{
if(_model.SchachtType != value)
{
_model.SchachtType = value;
OnPropertyChanged();
}
}
}
public ManholeEditViewModel(ISchachtDataService schachtDataService,IActualState actualState, IRenavigator renavigator)
{
_schachtDataService = schachtDataService;