Show / Hide Table of Contents

Class Contact

Companies and Organisations.

This table features a special record containing information about the contact that owns the database.

Entity Object for table 'contact'. Entity objects represent full entities with both the base table object and all related objects, such as udef, and things like owner associate and whatever else is logically related to the base object.
Inheritance
Object
NestedPersist
EntityBase
Contact
Implements
INestedPersist
ISoItem
ITableRowLoadHandler
IEntityUdefHelperContainer
Inherited Members
EntityBase._onGetRelatedObjects
EntityBase.GetAdditionalRelatedNestedPersistViaBaseClass(List<INestedPersist>, Boolean)
EntityBase.GetAdditionalRelatedNestedPersist(List<INestedPersist>, Boolean)
EntityBase.OnPrimaryKeyRequest(PKContainer)
EntityBase.OnPrimaryKeyUpdate(PKContainer)
EntityBase.OnSaved(Boolean)
EntityBase.SetMarkedForDeleteOnRelatedObjects(Boolean)
EntityBase.ITableRowLoadHandler.OnRowLoad(SoDataReader, TableRowBase)
EntityBase.ITableRowLoadHandler.OnRowLoaded()
EntityBase.OnPreIdUpdateImplementation()
EntityBase.OnIdUpdateImplementation()
EntityBase.UpdateSentryRelatedTableInfoInstance<MainTableInfoType>(SentryCollection, TableInfo)
EntityBase.IsDirty
EntityBase.OnGetRelatedObjects
NestedPersist._saveOwner
NestedPersist._isSaving
NestedPersist.SetSaveOwner(INestedPersist)
NestedPersist.Save()
NestedPersist.INestedPersist.OnPreIdUpdate()
NestedPersist.INestedPersist.OnPrimaryKeyRequest(PKContainer)
NestedPersist.INestedPersist.OnPrimaryKeyUpdate(PKContainer)
NestedPersist.INestedPersist.OnIdUpdate()
NestedPersist.INestedPersist.OnSave(BatchSave)
NestedPersist.INestedPersist.OnSaved(Boolean)
NestedPersist.IsSaving
NestedPersist.OnElementSaved
NestedPersist.OnElementIdUpdate
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: SuperOffice.CRM.Entities
Assembly: SoDataBase.dll
Syntax
public class Contact : EntityBase, INestedPersist, ISoItem, ITableRowLoadHandler, IEntityUdefHelperContainer
Remarks

Entity objects can be created in several ways.

  • Use the static CreateNew() method to create a new, empty object. After populating it with values, you call the method and corresponding row(s) in the database are created, and the objects' primary key field updated. This is the preferred way to insert new entities into the database.
  • You can create a (nested) Contact Contact.CustomSearch object to obtain a query pre-populated with the correct tableinfo and return fields. This query can be modified with restrictions, etc. Then, use the static GetFromCustomSearch(Contact.CustomSearch) method to apply the query to the database and obtain the result as an Entity object. This is how you select existing entities from the database when you have a query that does not correspond to any of the existing database indexes.
  • For each unique index defined for the table, there is a corresponding GetFromIdx method to make retrieving data via the indexes easy. Note that if you try to fetch a row that does not exist (for instance, by using the primary key index and specifying a primary key that does not exist in the database), you will get a Row object with the and properties set to true. Such an Entity object is called a 'ghost' and cannot be updated, saved or deleted. You can also get a ghost if the row does exist in the database, but the Sentry system denies Select rights to the row.
Non-unique indexes are handled through the ContactCollection collection, which has nested classes and GetFromIdx methods for each non-unique index. There are no 'GetFromReader' methods, since that would be rather complex (multiple TableInfo objects required).

Unique indexes on Contact are:

Index fieldsNested index class name
ContactIdContactId:

Primary key

Nested index class: Contact.IdxContactId

Static Get method: GetFromIdxContactId(Int32)

Non-unique indexes on table Contact are:
Index fieldsNested index class name
SoundExSoundEx:

What the name sounds like, for duplicate detection

Nested index class: ContactCollection.IdxSoundEx

Static Get method: GetFromIdxSoundEx(String)

KananameKananame:

JPN

Nested index class: ContactCollection.IdxKananame

Static Get method: GetFromIdxKananame(String)

MotherIdMotherId:

<not used>

Nested index class: ContactCollection.IdxMotherId

Static Get method: GetFromIdxMotherId(Int32)

BusinessIdxBusinessIdx:

List: business

Nested index class: ContactCollection.IdxBusinessIdx

Static Get method: GetFromIdxBusinessIdx(Int32)

NameName:

Name

Nested index class: ContactCollection.IdxName

Static Get method: GetFromIdxName(String)

UserdefIdUserdefId:

User-defined table record 1

Nested index class: ContactCollection.IdxUserdefId

Static Get method: GetFromIdxUserdefId(Int32)

OrgNrOrgNr:

VAT number or similar, takes dynamic lead text from Country table

Nested index class: ContactCollection.IdxOrgNr

Static Get method: GetFromIdxOrgNr(String)

Number1Number1:

Alphanumeric user field, contains auto-assigned number if numbering is in use.

Nested index class: ContactCollection.IdxNumber1

Static Get method: GetFromIdxNumber1(String)

Number2Number2:

Alphanumeric user field

Nested index class: ContactCollection.IdxNumber2

Static Get method: GetFromIdxNumber2(String)

Userdef2IdUserdef2Id:

User-defined table record 2

Nested index class: ContactCollection.IdxUserdef2Id

Static Get method: GetFromIdxUserdef2Id(Int32)

DepartmentDepartment:

Department

Nested index class: ContactCollection.IdxDepartment

Static Get method: GetFromIdxDepartment(String)

Name, DepartmentName:

Name

Department:

Department

Nested index class: ContactCollection.IdxNameDepartment

Static Get method: GetFromIdxNameDepartment(String, String)

CategoryIdxCategoryIdx:

List: category

Nested index class: ContactCollection.IdxCategoryIdx

Static Get method: GetFromIdxCategoryIdx(Int32)

SourceSource:

How did we get this contact? For future integration needs

Nested index class: ContactCollection.IdxSource

Static Get method: GetFromIdxSource(Int16)

Constructors

Contact(Contact.ContactIdxBase)

Constructor for class Contact.
This object represents a row in table 'contact'. Table contact: Companies and Organisations

Declaration
protected Contact(Contact.ContactIdxBase idx)
Parameters
Type Name Description
Contact.ContactIdxBase idx

ContactRowContactRow.ContactRowIdx object that the Contact encapsulates.

Contact(ContactRow, Contact.ContactIdxBase)

Declaration
protected Contact(ContactRow row, Contact.ContactIdxBase idx)
Parameters
Type Name Description
ContactRow row
Contact.ContactIdxBase idx

Fields

_appointments

Related HDB object(s).

Declaration
protected AppointmentCollection _appointments
Field Value
Type Description
AppointmentCollection

_associate

Related HDB object(s).

Declaration
protected AssociateRow _associate
Field Value
Type Description
AssociateRow

_business

Related HDB object(s).

Declaration
protected BusinessRow _business
Field Value
Type Description
BusinessRow

_category

Related HDB object(s).

Declaration
protected CategoryRow _category
Field Value
Type Description
CategoryRow

_country

Related HDB object(s).

Declaration
protected CountryRow _country
Field Value
Type Description
CountryRow

_createdAssociate

Related HDB object(s).

Declaration
protected AssociateRow _createdAssociate
Field Value
Type Description
AssociateRow

_emails

Related HDB object(s).

Declaration
protected EmailRows _emails
Field Value
Type Description
EmailRows

_faxes

Related HDB object(s).

Declaration
protected PhoneRows _faxes
Field Value
Type Description
PhoneRows

_group

Related HDB object(s).

Declaration
protected UserGroupRow _group
Field Value
Type Description
UserGroupRow

_info

Related HDB object(s).

Declaration
protected TextRow _info
Field Value
Type Description
TextRow

_interests

Related HDB object(s).

Declaration
protected ContactInterestRows _interests
Field Value
Type Description
ContactInterestRows

_ownerContactLinks

Related HDB object(s).

Declaration
protected OwnerContactLinkRows _ownerContactLinks
Field Value
Type Description
OwnerContactLinkRows

_persons

Related HDB object(s).

Declaration
protected PersonCollection _persons
Field Value
Type Description
PersonCollection

_phones

Related HDB object(s).

Declaration
protected PhoneRows _phones
Field Value
Type Description
PhoneRows

_postalAddress

Related HDB object(s).

Declaration
protected AddressRow _postalAddress
Field Value
Type Description
AddressRow

_projectMemberships

Related HDB object(s).

Declaration
protected ProjectMemberCollection _projectMemberships
Field Value
Type Description
ProjectMemberCollection

_row

HDB object this entity is a facade for.

Declaration
protected ContactRow _row
Field Value
Type Description
ContactRow

_rowIdx

Declaration
protected Contact.ContactIdxBase _rowIdx
Field Value
Type Description
Contact.ContactIdxBase

_saintCounterValue

Related HDB object(s).

Declaration
protected CounterValueRows _saintCounterValue
Field Value
Type Description
CounterValueRows

_saintStatusValue

Related HDB object(s).

Declaration
protected StatusValueRows _saintStatusValue
Field Value
Type Description
StatusValueRows

_saleHistory

Related HDB object(s).

Declaration
protected SaleHistRows _saleHistory
Field Value
Type Description
SaleHistRows

_sales

Related HDB object(s).

Declaration
protected SaleCollection _sales
Field Value
Type Description
SaleCollection

_satellites

Related HDB object(s).

Declaration
protected SatelliteRows _satellites
Field Value
Type Description
SatelliteRows

_selectionMemberships

Related HDB object(s).

Declaration
protected SelectionMemberRows _selectionMemberships
Field Value
Type Description
SelectionMemberRows

_streetAddress

Related HDB object(s).

Declaration
protected AddressRow _streetAddress
Field Value
Type Description
AddressRow

_udefLarge

Related HDB object(s).

Declaration
protected UDContactLargeRow _udefLarge
Field Value
Type Description
UDContactLargeRow

_udefSmall

Related HDB object(s).

Declaration
protected UDContactSmallRow _udefSmall
Field Value
Type Description
UDContactSmallRow

_updatedAssociate

Related HDB object(s).

Declaration
protected AssociateRow _updatedAssociate
Field Value
Type Description
AssociateRow

_urls

Related HDB object(s).

Declaration
protected URLRows _urls
Field Value
Type Description
URLRows

Properties

ActiveInterests

"Number of records in cintr table; select count(*) from cintr ci where ci.contact_id = this.contact_id == activeInterests is always true"

Declaration
public short ActiveInterests { get; set; }
Property Value
Type Description
Int16

Appointments

Related object AppointmentCollection: "Tasks, appointments, followups, phone calls; and documents"

Declaration
public AppointmentCollection Appointments { get; }
Property Value
Type Description
AppointmentCollection

Associate

Related object AssociateRow: Employees, resources and other users - except for External persons

Declaration
public AssociateRow Associate { get; set; }
Property Value
Type Description
AssociateRow

Business

Related object BusinessRow: Business list table

Declaration
public BusinessRow Business { get; set; }
Property Value
Type Description
BusinessRow

Category

Related object CategoryRow: Category list table

Declaration
public CategoryRow Category { get; set; }
Property Value
Type Description
CategoryRow

ContactId

Primary key

Declaration
public int ContactId { get; }
Property Value
Type Description
Int32

Country

Related object CountryRow: Country information

Declaration
public CountryRow Country { get; set; }
Property Value
Type Description
CountryRow

CreatedAssociate

Related object AssociateRow: Employees, resources and other users - except for External persons

Declaration
public AssociateRow CreatedAssociate { get; set; }
Property Value
Type Description
AssociateRow

CustomFields

Declaration
public EntityCustomFieldsHelper CustomFields { get; }
Property Value
Type Description
EntityCustomFieldsHelper

Department

Department

Declaration
public string Department { get; set; }
Property Value
Type Description
String

Emails

Related object EmailRows: Email addresses

Declaration
public EmailRows Emails { get; }
Property Value
Type Description
EmailRows

ExtraFields

Declaration
public EntityExtraFieldsHelper ExtraFields { get; }
Property Value
Type Description
EntityExtraFieldsHelper

Faxes

Related object PhoneRows: Contact and Person phonenumbers (+fax)

Declaration
public PhoneRows Faxes { get; }
Property Value
Type Description
PhoneRows

Group

Related object UserGroupRow: Secondary user groups

Declaration
public UserGroupRow Group { get; set; }
Property Value
Type Description
UserGroupRow

Info

Related object TextRow: Long text fields from all over the system

Declaration
public TextRow Info { get; set; }
Property Value
Type Description
TextRow

InterestHelper

Interest helper. The helpers provide functionality that combines MDO list and 'what is actually selected', i.e., they combine entity subcollections with mdo lists. See the base class InterestHelper for more information!

Declaration
public ContactInterestHelper InterestHelper { get; }
Property Value
Type Description
ContactInterestHelper

Interests

Related object ContactInterestRows: Link table between contact and contact interest

Declaration
public ContactInterestRows Interests { get; }
Property Value
Type Description
ContactInterestRows

IsDeleted

Is the row deleted?

Declaration
public override bool IsDeleted { get; }
Property Value
Type Description
Boolean
Overrides
NestedPersist.IsDeleted

IsMarkedForDelete

Gets or sets a value indicating whether this instance is marked for delete.

Declaration
public override bool IsMarkedForDelete { get; set; }
Property Value
Type Description
Boolean

true if this instance is marked for delete; otherwise, false.

Overrides
NestedPersist.IsMarkedForDelete

IsNew

Is the row new, e.g. not been inserted to the database?

Declaration
public override bool IsNew { get; }
Property Value
Type Description
Boolean
Overrides
EntityBase.IsNew

Kananame

Contact kana name, used in Japanese versions only

Declaration
public string Kananame { get; set; }
Property Value
Type Description
String

MainRow

Return the main row for the Entity.

Declaration
protected override TableRowBase MainRow { get; }
Property Value
Type Description
TableRowBase
Overrides
EntityBase.MainRow

MotherId

Reserved

Declaration
public int MotherId { get; set; }
Property Value
Type Description
Int32

Name

Contact name

Declaration
public string Name { get; set; }
Property Value
Type Description
String

Nomailing

No mailings flags

Declaration
public short Nomailing { get; set; }
Property Value
Type Description
Int16

Number1

Alphanumeric user field

Declaration
public string Number1 { get; set; }
Property Value
Type Description
String

Number2

Alphanumeric user field

Declaration
public string Number2 { get; set; }
Property Value
Type Description
String

OrgNr

VAT number or similar

Declaration
public string OrgNr { get; set; }
Property Value
Type Description
String

OwnerContactLinks

Related object OwnerContactLinkRows: Table that specifies which contacts can own associates

Declaration
public OwnerContactLinkRows OwnerContactLinks { get; }
Property Value
Type Description
OwnerContactLinkRows

Persons

Related object PersonCollection: Persons in a company or an organisation

Declaration
public PersonCollection Persons { get; }
Property Value
Type Description
PersonCollection

Phones

Related object PhoneRows: Contact and Person phonenumbers (+fax)

Declaration
public PhoneRows Phones { get; }
Property Value
Type Description
PhoneRows

PostalAddress

Related object AddressRow: Contact and Person addresses

Declaration
public AddressRow PostalAddress { get; set; }
Property Value
Type Description
AddressRow

ProjectMemberships

Related object ProjectMemberCollection: Project members

Declaration
public ProjectMemberCollection ProjectMemberships { get; }
Property Value
Type Description
ProjectMemberCollection

Registered

Date registered

Declaration
public DateTime Registered { get; set; }
Property Value
Type Description
DateTime

Row

The encapsulated object ContactRow.

Declaration
public ContactRow Row { get; }
Property Value
Type Description
ContactRow

SaintCounterValue

Related object CounterValueRows: Visible for rights

Declaration
public CounterValueRows SaintCounterValue { get; }
Property Value
Type Description
CounterValueRows

SaintStatusValue

Related object StatusValueRows: Values for statuses

Declaration
public StatusValueRows SaintStatusValue { get; }
Property Value
Type Description
StatusValueRows

SaleHistory

Related object SaleHistRows: Mirror image of the Sale table, providing a full transaction history

Declaration
public SaleHistRows SaleHistory { get; }
Property Value
Type Description
SaleHistRows

Sales

Related object SaleCollection: Sales

Declaration
public SaleCollection Sales { get; }
Property Value
Type Description
SaleCollection

Satellites

Related object SatelliteRows: Definition of Satellites

Declaration
public SatelliteRows Satellites { get; }
Property Value
Type Description
SatelliteRows

SelectionMemberships

Related object SelectionMemberRows: Selection members

Declaration
public SelectionMemberRows SelectionMemberships { get; }
Property Value
Type Description
SelectionMemberRows

SoundEx

What the name sounds like, for duplicate detection

Declaration
public string SoundEx { get; set; }
Property Value
Type Description
String

Source

How did we get this contact? For future integration needs

Declaration
public short Source { get; set; }
Property Value
Type Description
Int16

StreetAddress

Related object AddressRow: Contact and Person addresses

Declaration
public AddressRow StreetAddress { get; set; }
Property Value
Type Description
AddressRow

TableInfo

Get a TableInfo object for the contact table.

Declaration
public ContactTableInfo TableInfo { get; }
Property Value
Type Description
ContactTableInfo

UdefHelper

Get the Udef class of EntityUdefHelper for working with udef fields

Declaration
public EntityUdefHelper UdefHelper { get; }
Property Value
Type Description
EntityUdefHelper

UdefLarge

Related object UDContactLargeRow: User-defined fields for contact (long strings)

Declaration
public UDContactLargeRow UdefLarge { get; set; }
Property Value
Type Description
UDContactLargeRow

UdefSmall

Related object UDContactSmallRow: User-defined fields for contact

Declaration
public UDContactSmallRow UdefSmall { get; set; }
Property Value
Type Description
UDContactSmallRow

Updated

Date last updated

Declaration
public DateTime Updated { get; set; }
Property Value
Type Description
DateTime

UpdatedAssociate

Related object AssociateRow: Employees, resources and other users - except for External persons

Declaration
public AssociateRow UpdatedAssociate { get; set; }
Property Value
Type Description
AssociateRow

UpdatedCount

Number of times updated

Declaration
public short UpdatedCount { get; set; }
Property Value
Type Description
Int16

Urls

Related object URLRows: Unified Resource Locators

Declaration
public URLRows Urls { get; }
Property Value
Type Description
URLRows

Xstop

STOP flag

Declaration
public short Xstop { get; set; }
Property Value
Type Description
Int16

Methods

CreateNew()

Create a new instance of the Contact entity.

Declaration
public static Contact CreateNew()
Returns
Type Description
Contact

A new instance of the Contact entity.

CreateNew(Contact.ContactIdxBase)

Create a new instance of the Contact entity, by reading from the database using the specified index (represented by a nested index class).

Declaration
public static Contact CreateNew(Contact.ContactIdxBase idx)
Parameters
Type Name Description
Contact.ContactIdxBase idx

Index search, represented by a subclass if the Contact.ContactIdxBase nested index class

Returns
Type Description
Contact

A new instance of the Contact entity.

Delete()

Delete the row.

Declaration
public override void Delete()
Overrides
EntityBase.Delete()

ForceEntityUpdate()

Force Updated and UpdatedAssociate to be updated with current time and Currently logged in associate. This will again be overridden in the Database update operation by a query processor.

Declaration
protected override void ForceEntityUpdate()
Overrides
EntityBase.ForceEntityUpdate()

FromContactRow(ContactRow)

Operator asigning a Contact from a ContactRow.

Declaration
public static Contact FromContactRow(ContactRow row)
Parameters
Type Name Description
ContactRow row

ContactRow object

Returns
Type Description
Contact

Contact Entity

FromContactRow(ContactRow, Contact.ContactIdxBase)

Declaration
public static Contact FromContactRow(ContactRow row, Contact.ContactIdxBase idx)
Parameters
Type Name Description
ContactRow row
Contact.ContactIdxBase idx
Returns
Type Description
Contact

GetFromCustomSearch(Contact.CustomSearch)

Create a new instance of the Contact object, and populate it with data from a custom search. If the search returns no results, an empty entity will be returned; if the result contains rows, one Contact object representing the first row will be returned. Any further rows in the result will be ignored.

Declaration
public static Contact GetFromCustomSearch(Contact.CustomSearch query)
Parameters
Type Name Description
Contact.CustomSearch query

The custom search to execute against the database

Returns
Type Description
Contact

A new instance of the Contact object, reflecting the result of the query.

GetFromIdxContactId(Int32)

Create a new instance of the Contact object, by querying the database table via the index 'IDXContId'. This method is intended to make it easy to use efficient queries that match a database index.

Declaration
public static Contact GetFromIdxContactId(int contactId)
Parameters
Type Name Description
Int32 contactId

Primary key

Returns
Type Description
Contact

Row object that represents the result of the search. IsNew will be true if the query did not match any row in the table

Remarks

This method represents one of the unique indexes on the Contact table. Non-unique indexes have corresponding inner classes and methods in the ContactCollection collection, since they may return more than one row.

GetRelatedNestedPersist(List<INestedPersist>, Boolean)

Append all the related objects to a list of INestedPersist.

Declaration
protected override void GetRelatedNestedPersist(List<INestedPersist> relatedObjects, bool lacyFetchIfNeeded)
Parameters
Type Name Description
List<INestedPersist> relatedObjects

List to append related objects to.

Boolean lacyFetchIfNeeded
Overrides
EntityBase.GetRelatedNestedPersist(List<INestedPersist>, Boolean)

IsNumberValid()

Validate number2 field - is it unique/blank according to numbering rules?

Declaration
public bool IsNumberValid()
Returns
Type Description
Boolean

true if Number2 is ok

OnIdUpdate()

Update related objects with correct id's to make sure that relations are consistent before saving to the database.

Declaration
protected override void OnIdUpdate()
Overrides
EntityBase.OnIdUpdate()

OnPostSaveMe()

Handle actions needed to be taken after this object has been saved, but before saving objects depending upon this one.

Declaration
protected virtual void OnPostSaveMe()

OnPreIdUpdate()

Allow for "fake id's" to be forced upon related objects.

Declaration
protected override void OnPreIdUpdate()
Overrides
EntityBase.OnPreIdUpdate()
Remarks

In order to figure out which objects taking part of the nested save operation that actually needs to be saved, this method allows for "fake id's" to be forced upon related objects. Upon receiving the "fake id", the objects receiving such an id can determine if they needs to be persisted (e.g. saved) to the database. However, the fake id's forced upon related objects must be set to correct id's in the OnIdUpdate method taking place later in the save operation.

OnPreSaveMe()

Handle actions needed to be taken after objects this object depends on have been saved, but before this object is saved.

Declaration
protected virtual void OnPreSaveMe()

OnRowLoad(SoDataReader, TableRowBase)

Event raised when the row is loaded from the database

Declaration
protected override void OnRowLoad(SoDataReader reader, TableRowBase row)
Parameters
Type Name Description
SoDataReader reader
TableRowBase row
Overrides
EntityBase.OnRowLoad(SoDataReader, TableRowBase)

OnRowLoaded()

Declaration
protected override void OnRowLoaded()
Overrides
EntityBase.OnRowLoaded()

OnSave(BatchSave)

Update the number of active interests so it reflects the current state

Declaration
protected override void OnSave(BatchSave batchSave)
Parameters
Type Name Description
BatchSave batchSave
Overrides
EntityBase.OnSave(BatchSave)

SetDefaults()

Set default values for the entity.

Declaration
public void SetDefaults()

SetDefaults(DefaulterStrategy)

Set default values for the entity.

Declaration
public void SetDefaults(DefaulterStrategy strategy)
Parameters
Type Name Description
DefaulterStrategy strategy

Strategy used when appliying default values.

Undelete()

Declaration
public void Undelete()

Validate()

Check the entity and related objects for consistency and required fields, and return fields and error messages.

Declaration
public override Dictionary<string, string> Validate()
Returns
Type Description
Dictionary<String, String>

Field names and error messages

Overrides
EntityBase.Validate()

Operators

Explicit(ContactRow to Contact)

Operator assigning a Contact from a ContactRow.

Declaration
public static explicit operator Contact(ContactRow row)
Parameters
Type Name Description
ContactRow row

ContactRow object

Returns
Type Description
Contact

Contact Entity

Explicit Interface Implementations

IEntityUdefHelperContainer.UDefLarge

Declaration
TableRowBase IEntityUdefHelperContainer.UDefLarge { get; }
Returns
Type Description
TableRowBase

IEntityUdefHelperContainer.UDefSmall

Declaration
TableRowBase IEntityUdefHelperContainer.UDefSmall { get; }
Returns
Type Description
TableRowBase

Implements

INestedPersist
ISoItem
ITableRowLoadHandler
IEntityUdefHelperContainer

Extension Methods

EnumUtil.MapEnums<From, To>(From)
ContactNameFormatter.GetFullName(Contact)
Converters.MapEnums<From, To>(From)
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top