Class DuplicateEntry
Describes a duplicate entry
Inherited Members
Namespace: SuperOffice.CRM.Data.Util.Duplicates
Assembly: SoDataBase.BusinessLogic.dll
Syntax
public class DuplicateEntry
Constructors
DuplicateEntry()
Default constructor
Declaration
public DuplicateEntry()
DuplicateEntry(string, string, int, 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 |
| int | 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 |
|---|---|
| int |