Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/HttpContextIdentityProvider.cs @ 57:3d9e6d56d903
Refactoring del track de cambios de un evento
author | nelopauselli |
---|---|
date | Mon, 16 May 2011 20:23:31 -0300 |
parents | 3ebe89c88caa |
children |
line wrap: on
line source
using System.Web; using AltNetHispano.Agendas.Domain; namespace AltNetHispano.Agendas.Web { public class HttpContextIdentityProvider : ISeguridad { public string GetUserName() { return HttpContext.Current.User.Identity.Name; } } }