2020-11-05 00:27:02 +01:00
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using zero.Core.Entities;
|
|
|
|
|
|
|
|
|
|
namespace zero.Core.Handlers
|
|
|
|
|
{
|
|
|
|
|
public interface IApplicationResolverHandler : IHandler
|
|
|
|
|
{
|
2021-05-26 15:45:20 +02:00
|
|
|
Application Resolve(HttpRequest request, IEnumerable<Application> applications);
|
2020-11-05 00:27:02 +01:00
|
|
|
}
|
|
|
|
|
}
|