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); } }