Mercurial > altnet-hispano
annotate Agendas/trunk/src/Agendas.Web/HttpContextIdentityProvider.cs @ 43:a5632b23ca43
prueba
author | cpeix |
---|---|
date | Sat, 19 Mar 2011 15:37:54 -0300 |
parents | 475be11edf56 |
children | 3ebe89c88caa |
rev | line source |
---|---|
19 | 1 using System.Security.Principal; |
2 using System.Web; | |
3 using AltNetHispano.Agendas.Domain; | |
4 | |
34
475be11edf56
Ajuste en los nombre de los assemblies y namespaces
nelo@MTEySS.neluz.int
parents:
33
diff
changeset
|
5 namespace AltNetHispano.Agendas.Web |
19 | 6 { |
7 public class HttpContextIdentityProvider : ISeguridad | |
8 { | |
9 public IPrincipal GetPrincipal() | |
10 { | |
11 return HttpContext.Current.User; | |
12 } | |
13 } | |
14 } |