Class AccountContactInfoProvider
- Namespace
- CMS.ContactManagement
- Assembly
- CMS.ContactManagement.dll
Class providing AccountContactInfo management.
[ProviderInterface(typeof(IAccountContactInfoProvider))]
[Obsolete("Use CMS.DataEngine.IInfoProvider<AccountContactInfo> instead. Use CMS.DataEngine.InfoProviderExtensions for additional methods for individual objects retrieval. To get an instance of the interface's implementation use dependency injection or access the instance directly via the CMS.DataEngine.Provider<AccountContactInfo>.Instance property. When faking metadata in CMS.Tests.UnitTests using Fake() use the obsolete provider class until fully removed.")]
[ObsoleteSince(30, 0)]
public class AccountContactInfoProvider : AbstractInfoProvider<AccountContactInfo, AccountContactInfoProvider>, IInfoProvider, ICustomizableProvider, IBulkOperationProvider, IWebFarmProvider, IInfoValidator<AccountContactInfo>, IInfoByGuidProvider<AccountContactInfo>, IInfoByNameProvider<AccountContactInfo>, IBulkInfoProvider<AccountContactInfo>, IAccountContactInfoProvider, IInfoProvider<AccountContactInfo>, IInfoByIdProvider<AccountContactInfo>
- Inheritance
-
objectAbstractInfoProvider<AccountContactInfo, AccountContactInfoProvider, ObjectQuery<AccountContactInfo>>AccountContactInfoProvider
- Implements
- Inherited Members
- Extension Methods
Methods
Add(int, int)
Creates AccountContactInfo binding.
[Obsolete("Create a new AccountContactInfo with specified AccountID and ContactID and use Set(AccountContactInfo) instead.")]
[ObsoleteSince(29, 0)]
public virtual void Add(int accountId, int contactId)
Parameters
accountId
intAccount ID.
contactId
intContact ID.
DeleteAllAccountContacts(string)
Deletes relationships between specified accounts and contacts defined in where condition.
[Obsolete("Method is no longer used by the system and will be removed.")]
[ObsoleteSince(29, 7)]
public static void DeleteAllAccountContacts(string where)
Parameters
where
stringWhere condition
DeleteAllAccountContactsInternal(string)
Deletes realtionships between specified accounts and contacts defined in where condition.
[Obsolete("Method is no longer used by the system and will be removed.")]
[ObsoleteSince(29, 7)]
protected virtual void DeleteAllAccountContactsInternal(string where)
Parameters
where
stringWhere condition
Get(int, int)
Gets an instance of the AccountContactInfo binding structure.
[Obsolete("Use Get() and parametrized ObjectQuery to get the AccountContactInfo with specified AccountID and ContactID.")]
[ObsoleteSince(29, 0)]
public virtual AccountContactInfo Get(int accountId, int contactId)
Parameters
accountId
intAccount ID.
contactId
intContact ID.
Returns
- AccountContactInfo
Returns an instance of AccountContactInfo corresponding to given identifiers or null.
GetAsync(int, int, CancellationToken?)
Asynchronously gets an instance of the AccountContactInfo binding structure.
[Obsolete("Use Get() and parametrized ObjectQuery to get the AccountContactInfo with specified AccountID and ContactID.")]
[ObsoleteSince(29, 0)]
public virtual Task<AccountContactInfo> GetAsync(int accountId, int contactId, CancellationToken? cancellationToken = null)
Parameters
accountId
intAccount ID.
contactId
intContact ID.
cancellationToken
CancellationToken?The cancellation instruction.
Returns
- Task<AccountContactInfo>
Returns a task returning either an instance of AccountContactInfo corresponding to given identifiers or null.
Remove(int, int)
Deletes AccountContactInfo binding.
[Obsolete("Get the AccountContactInfo with specified AccountID and ContactID using Get() and delete the binding using Delete(AccountContactInfo).")]
[ObsoleteSince(29, 0)]
public virtual void Remove(int accountId, int contactId)
Parameters
accountId
intAccount ID.
contactId
intContact ID.
ResetAccountMainContacts(int, int, string)
Resets main contact IDs of account(s) to NULL if any of the contacts, specified by where-condition, was set as primary or secondary contact.
[Obsolete("Method is no longer used by the system and will be removed.")]
[ObsoleteSince(29, 7)]
public static void ResetAccountMainContacts(int accountId, int contactId, string where)
Parameters
accountId
intAccount ID - required if called from specific account
contactId
intContact ID - required if called from specific contact
where
stringWhere condition
ResetAccountMainContactsInternal(int, int, string)
Resets main contact IDs of account(s) to NULL if any of the contacts, specified by where-condition, was set as primary or secondary contact.
[Obsolete("Method is no longer used by the system and will be removed.")]
[ObsoleteSince(30, 0)]
protected virtual void ResetAccountMainContactsInternal(int accountId, int contactId, string where)
Parameters
accountId
intAccount ID - required if called from specific account
contactId
intContact ID - required if called from specific contact
where
stringWhere condition
SetAccountsIntoContact(int, string, int)
Sets relationship between specified account and contact.
[Obsolete("Method is no longer used by the system and will be removed.")]
[ObsoleteSince(29, 7)]
public static void SetAccountsIntoContact(int contactID, string where, int roleID)
Parameters
contactID
intContact to be set
where
stringWHERE condition specifying contacts to be set
roleID
intAccount-contact role to be set
SetAccountsIntoContactInternal(int, string, int)
Sets relationship between specified account and contact.
[Obsolete("Method is no longer used by the system and will be removed.")]
[ObsoleteSince(29, 7)]
public void SetAccountsIntoContactInternal(int contactID, string where, int roleID)
Parameters
contactID
intContact to be set
where
stringWHERE condition specifying contacts to be set
roleID
intAccount-contact role to be set
SetContactsIntoAccount(int, string, int)
Sets relationship between specified account and contact.
[Obsolete("Method is no longer used by the system and will be removed.")]
[ObsoleteSince(29, 7)]
public static void SetContactsIntoAccount(int accountID, string where, int roleID)
Parameters
accountID
intAccount to be set
where
stringWHERE condition specifying contacts to be set
roleID
intAccount-contact role to be set
SetContactsIntoAccountInternal(int, string, int)
Sets relationship between specified account and contact.
[Obsolete("Method is no longer used by the system and will be removed.")]
[ObsoleteSince(29, 7)]
public void SetContactsIntoAccountInternal(int accountID, string where, int roleID)
Parameters
accountID
intAccount to be set
where
stringWHERE condition specifying contacts to be set
roleID
intAccount-contact role to be set