Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Web/CustomModelMetadataProvider/ResolverThroughResource.cs @ 302:11dddcc9a862 tip
Historico de Eventos, no muestra bien la Url del Patrocinador.
author | juanjose.montesdeocaarbos |
---|---|
date | Tue, 14 Aug 2012 21:54:30 -0300 |
parents | ee4e699e4551 |
children |
line wrap: on
line source
using System; namespace AltNetHispano.Agendas.Web.CustomModelMetadataProvider { public class ResolverThroughResource<T> : IResolverByConvention { public string GetDisplayName(string propertyName) { return SearchResource(propertyName); } public string GetDescription(string propertyName) { return SearchResource(propertyName + "Description"); } public Type ResourceType { get { return typeof(T); } } private static string SearchResource(string resourceName) { string displayName = null; var resourceType = typeof(T); var prop = resourceType.GetProperty(resourceName); if (prop != null) { var value = prop.GetValue(resourceType, null); displayName = value != null ? value.ToString() : resourceName; } return displayName; } } }