Class DuplicateEntry
Describes a duplicate entry
Inherited Members
Namespace: SuperOffice.CRM.Data.Util.Duplicates
Assembly: SoDataBase.dll
Syntax
public class DuplicateEntry
Constructors
DuplicateEntry()
Default constructor
Declaration
public DuplicateEntry()
DuplicateEntry(String, String, Int32, String, String)
Constructor with arguments
Declaration
public DuplicateEntry(string ruleName, string ruleDisplayName, int soPrimaryId, string entryName, string identifier)
Parameters
Type | Name | Description |
---|---|---|
String | ruleName | What rule this duplicate originated from |
String | ruleDisplayName | Display name of rule this duplicate originated from |
Int32 | soPrimaryId | Primary identity of superoffice database entry. 0 for external matches |
String | entryName | Name of entry |
String | identifier | Identifier for entry. typically used to identify entry in external systems |
Properties
EntryName
Name of entry
Declaration
public string EntryName { get; set; }
Property Value
Type | Description |
---|---|
String |
Identifier
Identifier for entry. typically used to identify entry in external systems
Declaration
public string Identifier { get; set; }
Property Value
Type | Description |
---|---|
String |
RuleDisplayName
Display name of the rule this duplicate originated from
Declaration
public string RuleDisplayName { get; set; }
Property Value
Type | Description |
---|---|
String |
RuleName
What rule this duplicate originated from
Declaration
public string RuleName { get; set; }
Property Value
Type | Description |
---|---|
String |
SoPrimaryKey
Primary identity of superoffice database entry. 0 for external matches
Declaration
public int SoPrimaryKey { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Extension Methods
EnumUtil.MapEnums<From, To>(From)