14 lines
290 B
C#
14 lines
290 B
C#
using System;
|
|
using APT.Infrastructure.Api;
|
|
namespace APT.Infrastructure.EF
|
|
{
|
|
public interface IConnectionGenerator
|
|
{
|
|
string TenantKey { get;}
|
|
|
|
bool MatchTenantKey(string tenantKey);
|
|
|
|
string GetConnection(TenantOption option, TenantInfo tenantInfo);
|
|
}
|
|
}
|