diff Agendas/trunk/src/Agendas.Web/Global.asax.cs @ 19:74eb4577d447

HttpContext identity provider Requerimiento de autenticación para registrar un nuevo evento o modificar uno existente
author nelo@MTEySS.neluz.int
date Mon, 14 Mar 2011 00:35:43 -0300
parents c62b77fc33f4
children 475be11edf56
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Web/Global.asax.cs	Mon Mar 14 00:26:44 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Web/Global.asax.cs	Mon Mar 14 00:35:43 2011 -0300
@@ -1,9 +1,9 @@
 using System;
 using System.Collections.Generic;
 using System.Linq;
-using System.Web;
 using System.Web.Mvc;
 using System.Web.Routing;
+using Agendas.Factories;
 
 namespace Agendas.Web
 {
@@ -35,6 +35,8 @@
 
             RegisterGlobalFilters(GlobalFilters.Filters);
             RegisterRoutes(RouteTable.Routes);
+
+        	AgendaFactory.SetIdentityProvider(new HttpContextIdentityProvider());
         }
     }
 }
\ No newline at end of file