Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Twitter/Writers/TwitterHelper.cs @ 182:beeb48ddb44a
Warning con los errores que se guarden en el log del track de un evento durante una notificación (twitter, calendar, blog)
author | nelopauselli |
---|---|
date | Mon, 08 Aug 2011 21:57:10 -0300 |
parents | 35498fb9b59b |
children | 9f61e8555114 |
line wrap: on
line source
using AltNetHispano.Agendas.Domain; namespace AltNetHispano.Agendas.Twitter.Writers { public static class TwitterHelper { public static string GetPonente(Persona ponente) { if (!string.IsNullOrWhiteSpace(ponente.Twitter)) return "@" + ponente.Twitter; return ponente.Nombre; } } }