protected void Application_Start()
 {
     AreaRegistration.RegisterAllAreas();
     FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
     RouteConfig.RegisterRoutes(RouteTable.Routes);
     //  BundleConfig.RegisterBundles(BundleTable.Bundles);
     DependencyFactory.Initialize();
 }
Exemplo n.º 2
0
        public static void Main(string[] args)
        {
            DependencyFactory.Initialize();

            var bootstrapper = new Bootstrapper();

            bootstrapper.Start(args);
        }