mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
27 lines
1,007 B
C#
27 lines
1,007 B
C#
using System;
|
|
using TINK.Repository;
|
|
|
|
namespace TINK.Model.Connector
|
|
{
|
|
public class ConnectorFactory
|
|
{
|
|
/// <summary>
|
|
/// Gets a connector object depending on whether beein onlin or offline.
|
|
/// </summary>
|
|
/// <param name="isConnected">True if online, false if offline. If offline cache connector is returned.</param>
|
|
/// <param name="appContextInfo">Provides app related info (app name and version, merchantid) to pass to COPRI.</param>
|
|
/// <returns></returns>
|
|
public static IConnector Create(
|
|
bool isConnected,
|
|
Uri activeUri,
|
|
AppContextInfo appContextInfo,
|
|
string sessionCookie,
|
|
string mail,
|
|
TimeSpan? expiresAfter = null)
|
|
{
|
|
return isConnected
|
|
? new Connector(activeUri, appContextInfo, sessionCookie, mail, expiresAfter: expiresAfter) as IConnector
|
|
: new ConnectorCache(sessionCookie, mail);
|
|
}
|
|
}
|
|
}
|