Class MDOListTableCache.MDOCacheElement
Container for cached result set representing a row in a MDO Table
Inherited Members
Namespace: SuperOffice.CRM.Cache
Assembly: SoDataBase.dll
Syntax
public sealed class MDOCacheElement
Constructors
MDOCacheElement(Int32, String, String, Int32, Boolean)
Default constructor.
Declaration
public MDOCacheElement(int id, string name, string tooltip, int rank, bool isDeleted)
Parameters
Type | Name | Description |
---|---|---|
Int32 | id | Primary key of the row. |
String | name | Name of the item. |
String | tooltip | Tooltip for the item. |
Int32 | rank | Rank of the item |
Boolean | isDeleted | Is the item deleted. |
Properties
Id
Primary key of the row.
Declaration
public int Id { get; }
Property Value
Type | Description |
---|---|
Int32 |
IsDeleted
Is the item deleted?
Declaration
public bool IsDeleted { get; }
Property Value
Type | Description |
---|---|
Boolean |
Name
Name of the item.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
String |
Rank
Rank of the item.
Declaration
public int Rank { get; }
Property Value
Type | Description |
---|---|
Int32 |
Tooltip
Tooltip for the item.
Declaration
public string Tooltip { get; }
Property Value
Type | Description |
---|---|
String |
Extension Methods
EnumUtil.MapEnums<From, To>(From)