using Microsoft.AspNetCore.Http; namespace zero.Applications; public interface IApplicationResolverHandler : IHandler { bool TryResolve(HttpContext context, IEnumerable applications, out Application resolved); }