123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web.Http;
- namespace esoft_API
- {
- public static class WebApiConfig
- {
- public static void Register(HttpConfiguration config)
- {
- // Конфигурация и службы Web API
- // Маршруты Web API
- config.MapHttpAttributeRoutes();
- config.Routes.MapHttpRoute(
- name: "DefaultApi",
- routeTemplate: "api/{controller}/{id}",
- defaults: new { id = RouteParameter.Optional }
- );
- }
- }
- }
|