Class NSTicketCategoryMembershipEntity
Syntax
Constructors
NSTicketCategoryMembershipEntity()
Initializes a new instance of the NSTicketCategoryMembershipEntity class.
Declaration
NSTicketCategoryMembershipEntity
Examples
NSTicketCategoryMembershipEntity thing;
NSAssociate associate;
associate.SetId(2);
thing.SetUser(associate);
thing.SetWeight(2);
Methods
GetUser()
Declaration
Returns
Type |
Description |
NSAssociate |
Gets referenced Associate.
|
Examples
NSTicketCategoryMembershipEntity thing;
NSAssociate associate = thing.GetUser();
GetWeight()
Declaration
Returns
Type |
Description |
Integer |
Gets value used for weighted delegation.
|
Examples
NSTicketCategoryMembershipEntity thing;
Integer weight = thing.GetWeight();
SetUser(NSAssociate)
Declaration
Void SetUser(NSAssociate associate)
Parameters
Type |
Name |
Description |
NSAssociate |
associate |
Sets referenced Associate.
|
Returns
Examples
NSTicketCategoryMembershipEntity thing;
NSAssociate associate;
thing.SetUser(associate);
SetWeight(Integer)
Declaration
Void SetWeight(Integer weight)
Parameters
Type |
Name |
Description |
Integer |
weight |
Value used for weighted delegation.
|
Returns
Examples
NSTicketCategoryMembershipEntity thing;
String externalName;
thing.SetExternalName(externalName);