Class SaleStakeholder
Carrier object for SaleStakeholder. Services for the SaleStakeholder Carrier is available from the Sale Agent.
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class SaleStakeholder : Carrier
Examples
Get SaleStakeholder 123 using the agent:
using SuperOffice;
using SuperOffice.CRM.Services;
using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
var agent = new SaleAgent();
var saleStakeholder = agent.GetSaleStakeholder( 123 );
}
Find all SaleStakeholder, get related items using archive agent.
var archive = new ArchiveAgent();
var rows = archive.GetArchiveListByColumns2("SaleStakeholder", "...", null, "getAllRows eq 1", null, 0, 100 );
Constructors
SaleStakeholder()
Default constructor
Declaration
public SaleStakeholder()
See Also
Properties
Comment
Optional comment text
Declaration
[DataMember]
public virtual string Comment { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
ContactId
Contact ID of person or contact who is the sale stakeholder
Declaration
[DataMember]
public virtual int ContactId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
ContactName
Contact name
Declaration
[DataMember]
public virtual string ContactName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
CountryId
Country id - primary key
Declaration
[DataMember]
public virtual int CountryId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
EmailAddress
E-mail address
Declaration
[DataMember]
public virtual string EmailAddress { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
EmailDescription
E-mail description
Declaration
[DataMember]
public virtual string EmailDescription { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
EmailId
E-mail address id - Primary key
Declaration
[DataMember]
public virtual int EmailId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
Firstname
First name
Declaration
[DataMember]
public virtual string Firstname { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Lastname
Last name
Declaration
[DataMember]
public virtual string Lastname { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
MiddleName
Middle name or 'van' etc.
Declaration
[DataMember]
public virtual string MiddleName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Mrmrs
e.g. Mrs, Mr, Ms, Dr.
Declaration
[DataMember]
public virtual string Mrmrs { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
PersonId
Person id - Primary key
Declaration
[DataMember]
public virtual int PersonId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
Phone
Phone number
Declaration
[DataMember]
public virtual string Phone { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
PhoneId
Primary key
Declaration
[DataMember]
public virtual int PhoneId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
Rank
Rank in list of stakeholders
Declaration
[DataMember]
public virtual short Rank { get; set; }
Property Value
Type | Description |
---|---|
short |
See Also
SaleId
Parent sale
Declaration
[DataMember]
public virtual int SaleId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
SaleStakeholderId
Primary key
Declaration
[DataMember]
public virtual int SaleStakeholderId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
StakeholderRoleId
Stakeholde role list id - Primary key
Declaration
[DataMember]
public virtual int StakeholderRoleId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
StakeholderRoleName
Stakeholder role name
Declaration
[DataMember]
public virtual string StakeholderRoleName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
See Also
ToString(string)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
string | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
string | The carrier contents. |