Vereinsmeisterschaften  22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
Loading...
Searching...
No Matches
DocumentCreationConfig.cs
1using CommunityToolkit.Mvvm.ComponentModel;
3
5{
9 public partial class DocumentCreationConfig : ObservableObject
10 {
14 [ObservableProperty]
16
20 [ObservableProperty]
21 private IEnumerable<Enum> _availableItemOrderings;
22
26 [ObservableProperty]
28
32 [ObservableProperty]
33 private IEnumerable<Enum> _availableItemFilters;
34
38 [ObservableProperty]
39 private Enum _currentItemFilter;
40
44 [ObservableProperty]
46 }
47}
Class combining configuration infos used while document creation.
IEnumerable< Enum > _availableItemOrderings
Available item orderings.
IDocumentStrategy _documentStrategy
IDocumentStrategy used by the document creation
IEnumerable< Enum > _availableItemFilters
Available item filters.
object _currentItemFilterParameter
Current item filter parameter.
Interface for document strategies that define how to create and collect data for different types of d...