You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
393 B
16 lines
393 B
using System.Web.Http;
|
|
|
|
namespace WebSite
|
|
{
|
|
public static class WebApiConfig
|
|
{
|
|
public static void Register(HttpConfiguration config)
|
|
{
|
|
config.Routes.MapHttpRoute(
|
|
name: "DefaultApi",
|
|
routeTemplate: "api/{controller}/{data}",
|
|
defaults: new { data = RouteParameter.Optional }
|
|
);
|
|
}
|
|
}
|
|
}
|