Interface IFinCustomerSystem

Namespace
Subsembly.FinTS
Assembly
Subsembly.FinTS.Core.dll

Provides an interface to customer system local storage.

public interface IFinCustomerSystem

Remarks

An implementation of this class can be provided to FinContact.CustSys.

Methods

RetrieveCustSysId(Guid)

Retrieve a previously stored Customer System ID.

string RetrieveCustSysId(Guid tContactGuid)

Parameters

tContactGuid Guid

The unique ContactGuid of the FinContact for which to retrieve a previously stored Customer System ID.

Returns

string

The a Customer System ID could be retrieved for the given tContactGuid, then it will be returned. If there is no stored Customer System ID for the tContactGuid, then null is returned.

See Also

StoreCustSysId(Guid, string)

Permanently store a Customer System ID on the local system.

void StoreCustSysId(Guid tContactGuid, string sCustSysID)

Parameters

tContactGuid Guid

The unique ContactGuid of the FinContact for which to store the given Customer System ID.

sCustSysID string

The CustSysID to be stored. If this is null or empty, then a Customer System ID stored for the tContactGuid shall be erased.

See Also