11 lines
255 B
C#
11 lines
255 B
C#
using Microsoft.AspNetCore.Http;
|
|
using APT.Infrastructure.Api;
|
|
namespace APT.Infrastructure.EF
|
|
{
|
|
public interface ITenantInfoGenerator
|
|
{
|
|
TenantInfo GenerateTenant(object sender, Microsoft.AspNetCore.Http.HttpContext httpContext);
|
|
}
|
|
|
|
}
|