using Abp.Domain.Uow;
namespace IwbZero.MultiTenancy
{
///
/// Extends to
/// get connection string for given tenant.
///
public interface IDbPerTenantConnectionStringResolver : IConnectionStringResolver
{
///
/// Gets the connection string for given args.
///
string GetNameOrConnectionString(DbPerTenantConnectionStringResolveArgs args);
}
}