annotate 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 |
rev |
line source |
124
|
1 using AltNetHispano.Agendas.Domain;
|
|
2
|
|
3 namespace AltNetHispano.Agendas.Twitter.Writers
|
|
4 {
|
|
5 public static class TwitterHelper
|
|
6 {
|
|
7 public static string GetPonente(Persona ponente)
|
|
8 {
|
|
9 if (!string.IsNullOrWhiteSpace(ponente.Twitter))
|
|
10 return "@" + ponente.Twitter;
|
|
11 return ponente.Nombre;
|
|
12 }
|
|
13 }
|
|
14 } |