[WIP] Entities: Add AreaComContract to group area commitments together
Some checks failed
Test / Run tests (push) Failing after 1m57s

This commit is contained in:
2026-03-30 19:35:53 +02:00
parent 1f4fe2129d
commit f600609356
22 changed files with 858 additions and 319 deletions

View File

@@ -20,7 +20,11 @@ namespace Elwig.ViewModels {
}
[ObservableProperty]
private bool _showOnlyActiveAreaComs;
private string? _filterSeasonString;
public int? FilterSeason {
get => int.TryParse(FilterSeasonString, out var year) ? year : null;
set => FilterSeasonString = $"{value}";
}
[ObservableProperty]
private string? _fbNrString;
@@ -46,6 +50,8 @@ namespace Elwig.ViewModels {
get => int.TryParse(YearToString, out var year) ? year : null;
set => YearToString = $"{value}";
}
[ObservableProperty]
private string? _period;
[ObservableProperty]
private AreaComType? _areaComType;