view Agendas/trunk/src/Agendas.Web/IdentityHelper.cs @ 298:9bc60d166c8a

Se corrigieron los tests por el cambio de Patrocinador, para que no persista el logo en disco. Se comentó el código de PatrocinadorApiController, que no se utiliza.
author juanjose.montesdeocaarbos
date Sun, 19 Feb 2012 16:00:38 -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;
		}
	}
}