[#14] Windows: Add DeliveryScheduleAdminWindow
All checks were successful
Test / Run tests (push) Successful in 2m58s

This commit is contained in:
2024-08-08 23:33:22 +02:00
parent 170cfda37e
commit 804a17911c
9 changed files with 927 additions and 2 deletions

View File

@ -292,6 +292,10 @@ namespace Elwig {
return w;
}
public static DeliveryScheduleAdminWindow FocusDeliverySchedule() {
return FocusWindow<DeliveryScheduleAdminWindow>(() => new());
}
public static PaymentVariantsWindow FocusPaymentVariants(int year) {
return FocusWindow<PaymentVariantsWindow>(() => new(year), w => w.Year == year);
}