Add ClientParameters
This commit is contained in:
@ -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; }
|
||||
|
||||
|
Reference in New Issue
Block a user