Add ClientParameters

This commit is contained in:
2023-04-28 11:56:54 +02:00
parent a65345c0d9
commit 351a0b8d57
7 changed files with 74 additions and 13 deletions

View File

@ -11,8 +11,8 @@ namespace Elwig.Documents {
public Document(string title) {
DataPath = App.DataPath;
Title = title;
Header = "<h1>Winzergenossenschaft Matzen</h1>";
Footer = "Winzergenossenschaft für Matzen und Umgebung reg. Gen.m.b.H.";
Header = $"<h1>{App.Client.Name}</h1>";
Footer = App.Client.NameFull;
Date = DateTime.Today;
}