Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/IdentityHelper.cs @ 158:734d3f0853bf
Manejando configuración de los publicadores con una sección propia en los .config
Agregando la opción de habilitar / deshabilitar un publicador
author | nelopauselli |
---|---|
date | Fri, 05 Aug 2011 16:55:18 -0300 |
parents | 1eb5a0e531bf |
children |
line wrap: on
line source
using System.Web; using System.Web.Mvc; using AltNetHispano.Agendas.Domain; namespace AltNetHispano.Agendas.Web { public static class IdentityHelper { public static string DisplayName(this HtmlHelper<dynamic> helper) { var personaRepository = Factories.AgendaFactory.GetPersonaRepository(); var identification = new Identification(HttpContext.Current.User.Identity.Name); var c = personaRepository.GetCuenta(identification.IdentityProvider, identification.LogonName); return c == null ? identification.LogonName : c.Persona != null ? c.Persona.Nombre : c.LogonName; } } }