namespace Abp.Domain.Uow
{
///
/// Used to get connection string when a database connection is needed.
///
public interface IConnectionStringResolver
{
///
/// Gets a connection string name (in config file) or a valid connection string.
///
/// Arguments that can be used while resolving connection string.
string GetNameOrConnectionString(ConnectionStringResolveArgs args);
}
}