10 lines
154 B
C#
10 lines
154 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace APT.Infrastructure.EF
|
||
|
|
{
|
||
|
|
public interface ITenantConnectionResolver<TDbContext>
|
||
|
|
{
|
||
|
|
string GetConnection();
|
||
|
|
}
|
||
|
|
}
|