comparison Agendas/trunk/src/Agendas.Twitter/Recordatorios.cs @ 231:e5959f3405e0

Eventos sin ponentes
author nelopauselli
date Wed, 28 Sep 2011 20:02:44 -0300
parents c4c60e034103
children
comparison
equal deleted inserted replaced
230:e38d53a1ead9 231:e5959f3405e0
17 Cabecera = "Recuerde agendar el evento en twuffer u otro servicio similar."; 17 Cabecera = "Recuerde agendar el evento en twuffer u otro servicio similar.";
18 CabeceraLink = "http://twuffer.com/"; 18 CabeceraLink = "http://twuffer.com/";
19 19
20 for (int hora = 3; hora > 0; hora--) 20 for (int hora = 3; hora > 0; hora--)
21 { 21 {
22 var mensaje = TwitterStringHelper.TipoEvento(evento.Tipo) + " sobre " + evento.Titulo + " con " + 22 var mensaje = TwitterStringHelper.TipoEvento(evento.Tipo) + " sobre " + evento.Titulo +
23 TwitterStringHelper.Ponente(evento.Ponente) + " inicia en [" + hora + "] hora" + 23 TwitterStringHelper.Ponentes(evento) + " inicia en [" + hora + "] hora" +
24 (hora > 1 ? "s" : string.Empty) + " " + 24 (hora > 1 ? "s" : string.Empty) + " " +
25 TwitterStringHelper.Hora(fechaInicio) + " http://snipr.com/virtualaltnet"; 25 TwitterStringHelper.Hora(fechaInicio) + " http://snipr.com/virtualaltnet";
26 26
27 var fechaRecordatorio = fechaInicio.AddHours(hora * -1); 27 var fechaRecordatorio = fechaInicio.AddHours(hora * -1);
28 Items.Add(new RecordatorioItem(fechaRecordatorio, mensaje)); 28 Items.Add(new RecordatorioItem(fechaRecordatorio, mensaje));
29 } 29 }
30 30
31 var mensaje15 = TwitterStringHelper.TipoEvento(evento.Tipo) + " sobre " + evento.Titulo + " con " + 31 var mensaje15 = TwitterStringHelper.TipoEvento(evento.Tipo) + " sobre " + evento.Titulo +
32 TwitterStringHelper.Ponente(evento.Ponente) + " inicia en [15] minutos " + 32 TwitterStringHelper.Ponentes(evento) + " inicia en [15] minutos " +
33 TwitterStringHelper.Hora(fechaInicio) + " http://snipr.com/virtualaltnet"; 33 TwitterStringHelper.Hora(fechaInicio) + " http://snipr.com/virtualaltnet";
34 34
35 var fechaRecordatorio15 = fechaInicio.AddMinutes(-15); 35 var fechaRecordatorio15 = fechaInicio.AddMinutes(-15);
36 Items.Add(new RecordatorioItem(fechaRecordatorio15, mensaje15)); 36 Items.Add(new RecordatorioItem(fechaRecordatorio15, mensaje15));
37 } 37 }