Class ErpSyncActorFieldCollection
Inheritance
ErpSyncActorFieldCollection
Assembly: SuperOffice.Services.Implementation.dll
Syntax
public class ErpSyncActorFieldCollection : List<ErpSyncActorField>, IList<ErpSyncActorField>, ICollection<ErpSyncActorField>, IList, ICollection, IReadOnlyList<ErpSyncActorField>, IReadOnlyCollection<ErpSyncActorField>, IEnumerable<ErpSyncActorField>, IEnumerable
Constructors
ErpSyncActorFieldCollection()
Declaration
public ErpSyncActorFieldCollection()
Properties
MappedFields
All mapped fields found in the list (ie. fields that have a CrmFieldKey set)
Declaration
public ErpSyncActorFieldCollection MappedFields { get; }
Property Value
ShowInGuiFields
All fields marked as ShowInGui found in the list
Declaration
public ErpSyncActorFieldCollection ShowInGuiFields { get; }
Property Value
ShowInSearchFields
All fields marked as ShowInSearch found in the list
Declaration
public ErpSyncActorFieldCollection ShowInSearchFields { get; }
Property Value
Methods
Add(ErpSyncActorField)
Declaration
public void Add(ErpSyncActorField item)
Parameters
GetByCrmFieldKey(string)
Retrieves a field based on its CrmFieldKey. If the field doesn't exists, the method returns null
Declaration
public ErpSyncActorField GetByCrmFieldKey(string crmFieldKey)
Parameters
Type |
Name |
Description |
string |
crmFieldKey |
|
Returns
GetByErpFieldId(int)
Retrieves a field based on its ErpFieldId. If the field doesn't exists, the method returns null
Declaration
public ErpSyncActorField GetByErpFieldId(int erpFieldId)
Parameters
Type |
Name |
Description |
int |
erpFieldId |
|
Returns
GetByErpFieldKey(string)
Retrieves a field based on its ErpFieldKey. If the field doesn't exists, the method returns null
Declaration
public ErpSyncActorField GetByErpFieldKey(string erpFieldKey)
Parameters
Type |
Name |
Description |
string |
erpFieldKey |
|
Returns
Implements