Class NSResolvedPerson

The Person Service. The service implements all services working with the Person object.

Constructors

NSResolvedPerson()

Initializes a new instance of the NSResolvedPerson class.

Declaration

NSResolvedPerson

Methods

GetPerson()

Declaration

NSPersonEntity GetPerson()

Examples

NSResolvedPerson thing;
NSPersonEntity person = thing.GetPerson();

Returns

Type Description
NSPersonEntity The resolved NSPersonEntity instance.

GetPersonCreated()

Declaration

Bool GetPersonCreated()

Examples

NSResolvedPerson thing;
Bool personCreated = thing.GetPersonCreated();

Returns

Type Description
Bool Indicates if the resolved person was created or not.

SetPerson(NSPersonEntity)

Declaration

Void SetPerson(NSPersonEntity person)

Examples

NSResolvedPerson thing;
NSPersonEntity person;
thing.SetPerson(person);

Parameters

Type Name Description
NSPersonEntity person The resolved NSPersonEntity instance.

Returns

Type Description
Void

SetPersonCreated(Bool)

Declaration

Void SetPersonCreated(Bool personCreated)

Examples

NSResolvedPerson thing;
Bool personCreated;
thing.SetPersonCreated(personCreated);

Parameters

Type Name Description
Bool personCreated Indicates if the resolved person was created or not.

Returns

Type Description
Void