Interface INamedPerson
Represents a named individual, i.e., a (usually living) person. This interface is provided for all the situations where a contact person is required, but is also the base entity for employees.
public interface INamedPerson
Properties
FirstName
Gets the individual's first (also known as "given" or "Christian") name.
string? FirstName { get; }
Property Value
HasMiddleName
Gets a value indicating whether the individual has supplied a middle name.
bool HasMiddleName { get; }
Property Value
Initials
Gets a list of the individual's initials as an array. Note that this property is only used if the individual's first name is not known, and its use is mutually exclusive with FirstName and MiddleNames.
char[]? Initials { get; }
Property Value
- char[]
InitialsAsString
Gets any initials provided as a space separated string. Will be null if a FirstName has been provided.
string? InitialsAsString { get; }
Property Value
KnownAsName
Gets the name that an individual would like to be known as. This might be an abbreviated form of their first name (e.g., Geoff rather than Geoffrey) or just a nickname that they are commonly known by. Optional.
string? KnownAsName { get; }
Property Value
LastName
Gets the individual's last (also known as "family") name.
string LastName { get; }
Property Value
MiddleNames
Gets the middle names of the individual, space separated. Note that this property is optional, as some people do not have middle names, or they choose not to disclose them.
string? MiddleNames { get; }
Property Value
Title
Gets the individual's title, e.g., Mr, Mrs, Miss, Dr., etc.
Title? Title { get; }