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

@ -44,6 +44,13 @@ namespace Elwig.Models {
public string ShortName => GivenName + " " + FamilyName;
public string AdministrativeName =>
FamilyName.ToUpper() + " " +
(Prefix != null ? Prefix + " " : "") +
GivenName +
(MiddleName != null ? " " + MiddleName: "") +
(Suffix != null ? " " + Suffix : "");
[Column("birthday")]
public string? Birthday { get; set; }