Interface IFinCustomerSystem
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
tContactGuidGuidThe 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 thetContactGuid, thennullis returned.
- See Also
StoreCustSysId(Guid, string)
Permanently store a Customer System ID on the local system.
void StoreCustSysId(Guid tContactGuid, string sCustSysID)
Parameters
tContactGuidGuidThe unique ContactGuid of the FinContact for which to store the given Customer System ID.
sCustSysIDstringThe CustSysID to be stored. If this is
nullor empty, then a Customer System ID stored for thetContactGuidshall be erased.
- See Also