comparison Agendas/trunk/src/Agendas.Twitter/Writers/AgendarTwitterWriter.cs @ 229:33976aea7546

Varios Ponentes en calendario
author nelopauselli
date Wed, 28 Sep 2011 19:14:49 -0300
parents 9f61e8555114
children e5959f3405e0
comparison
equal deleted inserted replaced
228:9f61e8555114 229:33976aea7546
7 public string[] Write(Track track) 7 public string[] Write(Track track)
8 { 8 {
9 return new[] 9 return new[]
10 { 10 {
11 "Se ha agendando el evento " + track.Evento.Titulo, 11 "Se ha agendando el evento " + track.Evento.Titulo,
12 " con " + TwitterHelper.GetPonentes(track.Evento.Ponentes), 12 " con " + TwitterHelper.GetPonentes(track.Evento),
13 track.Evento.FechaInicio.HasValue 13 track.Evento.FechaInicio.HasValue
14 ? " para el " + track.Evento.FechaInicio.Value.ToShortDateString() 14 ? " para el " + track.Evento.FechaInicio.Value.ToShortDateString()
15 : string.Empty, 15 : string.Empty,
16 " por http://snipr.com/virtualaltnet" 16 " por http://snipr.com/virtualaltnet"
17 }; 17 };