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.
21 lines
621 B
21 lines
621 B
using System.Web.Http;
|
|
|
|
namespace WebApp
|
|
{
|
|
public static class WebApiConfig
|
|
{
|
|
public static void Register(HttpConfiguration config)
|
|
{
|
|
//config.Routes.MapHttpRoute(
|
|
// name: "DefaultApi",
|
|
// routeTemplate: "api/{controller}/{data}",
|
|
// defaults: new { data = RouteParameter.Optional }
|
|
//);
|
|
config.Routes.MapHttpRoute(
|
|
name: "DefaultApi",
|
|
routeTemplate: "api/{controller}/{action}/{id}",
|
|
defaults: new { id = RouteParameter.Optional }
|
|
);
|
|
}
|
|
}
|
|
}
|