mh_frame_sps/APT.Infrastructure.EF/Infrastructure/IConnectionGenerator.cs
2026-04-07 13:47:52 +08:00

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