Class NSBusiness
Carrier object for Business.
Constructors
NSBusiness()
Initializes a new instance of the NSBusiness class.
Declaration
NSBusiness Methods
GetId()
Gets the primary key (ID) for the NSBusiness
Declaration
Integer GetId() Examples
NSBusiness thing;
Integer id = thing.GetId();
Returns
| Type | Description |
| Integer | NSBusiness Id. |
GetTooltip()
Gets the tooltip description for the NSBusiness list item.
Declaration
String GetTooltip() Examples
NSBusiness thing;
String descr = thing.GetTooltip();
Returns
| Type | Description |
| String | NSBusiness tooltip description. |
GetValue()
Gets the name of the NSBusiness.
Declaration
String GetValue() Examples
NSBusiness thing;
String name = thing.GetValue();
Returns
| Type | Description |
| String | NSBusiness name. |
SetId(Integer)
Sets the primary key (ID) for the NSBusiness
Declaration
Void SetId(Integer id) Examples
NSBusiness thing;
thing.SetId(123);
Parameters
| Type | Name | Description |
| Integer | id |
Returns
| Type | Description |
| Void |