using Microsoft.AspNetCore.Http; namespace AMREZ.EOP.Abstractions.Applications.Tenancy; public interface ITenantResolver { ITenantContext? Resolve(HttpContext http, object? hint = null); }