File: D:/HostingSpaces/RMourik/bassol.nl/CMS/App_Start/RouteConfig.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
namespace CMS.Mvc
{
/// <summary>
/// Class providing manipulation with the application routes.
/// </summary>
public class RouteConfig
{
/// <summary>
/// Registers the application routes.
/// </summary>
/// <param name="routes">The routes collection</param>
public static void RegisterRoutes(RouteCollection routes)
{
/*
* Add your custom routes registration here
*/
}
}
}