2020-10-11 12:22:31 +02:00
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2020-10-12 00:20:56 +02:00
|
|
|
using System.Linq;
|
2020-10-11 12:22:31 +02:00
|
|
|
using System.Text;
|
2020-10-22 00:32:44 +02:00
|
|
|
using System.Threading.Tasks;
|
2020-10-12 00:20:56 +02:00
|
|
|
using zero.Core.Api;
|
|
|
|
|
using zero.Core.Entities;
|
2020-10-11 12:22:31 +02:00
|
|
|
|
|
|
|
|
namespace zero.Core.Routing
|
|
|
|
|
{
|
2020-10-27 11:50:20 +01:00
|
|
|
public interface IPageEndpointResolver
|
2020-10-11 12:22:31 +02:00
|
|
|
{
|
2020-10-22 00:32:44 +02:00
|
|
|
/// <summary>
|
2020-10-27 11:50:20 +01:00
|
|
|
/// Get MVC endpoint for the page route
|
2020-10-22 00:32:44 +02:00
|
|
|
/// </summary>
|
2020-10-27 11:50:20 +01:00
|
|
|
RouteProviderEndpoint GetEndpoint(PageRoute route);
|
2020-10-11 12:22:31 +02:00
|
|
|
}
|
|
|
|
|
}
|