Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Twitter/Writers/ConfirmarTwitterWriter.cs @ 217:c4c60e034103 deploy 2011-09-06
sugerencia de recordatorios
author | nelopauselli |
---|---|
date | Tue, 06 Sep 2011 18:09:43 -0300 |
parents | 2d02adb79322 |
children | 9f61e8555114 |
line wrap: on
line source
using AltNetHispano.Agendas.Domain; namespace AltNetHispano.Agendas.Twitter.Writers { public class ConfirmarTwitterWriter : ITwitterWriter { public string Write(Track track) { { if (track.Evento.FechaInicio.HasValue) return "Se confirma para el " + track.Evento.FechaInicio.Value.ToShortDateString() + " el evento " + track.Evento.Titulo + " con " + TwitterHelper.GetPonente(track.Evento.Ponente); return string.Empty; } } } }