mh_frame_sps/APT.Infrastructure.EF/Infrastructure/IConnectionGenerator.cs

14 lines
290 B
C#
Raw Normal View History

2026-04-07 13:47:52 +08:00
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);
}
}