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
tContactGuid
GuidThe 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
, thennull
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
GuidThe unique ContactGuid of the FinContact for which to store the given Customer System ID.
sCustSysID
stringThe CustSysID to be stored. If this is
null
or empty, then a Customer System ID stored for thetContactGuid
shall be erased.
- See Also