19 lines
413 B
C#
19 lines
413 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
using System.Web.Mvc;
|
||
|
using System.Web.Routing;
|
||
|
|
||
|
namespace CRUD_OperationsInMVC
|
||
|
{
|
||
|
public class MvcApplication : System.Web.HttpApplication
|
||
|
{
|
||
|
protected void Application_Start()
|
||
|
{
|
||
|
AreaRegistration.RegisterAllAreas();
|
||
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
||
|
}
|
||
|
}
|
||
|
}
|