Table of Contents

Interface IAccountContactInfoProvider

Namespace
CMS.ContactManagement
Assembly
CMS.ContactManagement.dll

Declares members for AccountContactInfo management.

[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.")]
[ObsoleteSince(29, 0)]
public interface IAccountContactInfoProvider : IInfoProvider<AccountContactInfo>, IInfoByIdProvider<AccountContactInfo>
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)]
void Add(int accountId, int contactId)

Parameters

accountId int

Account ID.

contactId int

Contact ID.

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)]
AccountContactInfo Get(int accountId, int contactId)

Parameters

accountId int

Account ID.

contactId int

Contact 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)]
Task<AccountContactInfo> GetAsync(int accountId, int contactId, CancellationToken? cancellationToken = null)

Parameters

accountId int

Account ID.

contactId int

Contact 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)]
void Remove(int accountId, int contactId)

Parameters

accountId int

Account ID.

contactId int

Contact ID.