Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Blog/Impl/PublicarReunionPostWriter.cs @ 70:c7264bfc4b71
agregado de properties en clase Evento (UrlInvitacion, UrlWiki, NumeroOrden)
modificaciones en proyecto Agendas.Blog
modificacion de viewmodel EventoModel - agregado de UrlInvitacion (no requerido)
author | jorge.rowies |
---|---|
date | Fri, 20 May 2011 12:21:07 -0300 |
parents | ebce59b45b50 |
children | db4b1e2cae49 3027c64344bd |
comparison
equal
deleted
inserted
replaced
69:8becac0977d7 | 70:c7264bfc4b71 |
---|---|
8 public class PublicarReunionPostWriter : PostWriter | 8 public class PublicarReunionPostWriter : PostWriter |
9 { | 9 { |
10 protected override string GetTitle(Evento evento) | 10 protected override string GetTitle(Evento evento) |
11 { | 11 { |
12 return string.Format(CultureInfo.InvariantCulture, Resources.VAN_Publicacion_Title, | 12 return string.Format(CultureInfo.InvariantCulture, Resources.VAN_Publicacion_Title, |
13 string.Empty, //# de VAN en el historial TODO | 13 evento.NumeroOrden, //# de VAN en el historial |
14 evento.Ponente.Nombre //Nombre y apellido del ponente | 14 evento.Ponente.Nombre //Nombre y apellido del ponente |
15 | 15 |
16 ); | 16 ); |
17 } | 17 } |
18 | 18 |
19 protected override string GetBody(Evento evento) | 19 protected override string GetBody(Evento evento) |
20 { | 20 { |
21 return string.Format(CultureInfo.InvariantCulture, Resources.VAN_Realizacion_Body, | 21 return string.Format(CultureInfo.InvariantCulture, Resources.VAN_Realizacion_Body, |
22 getUrlPublicacionEnWiki(evento), //Url al video publicado en la wiki | 22 evento.UrlWiki, //Url al video publicado en la wiki |
23 GetNombreUsuario(evento) //Usuario que postea en el blog | 23 GetNombreUsuario(evento) //Usuario que postea en el blog |
24 ); | 24 ); |
25 } | 25 } |
26 | |
27 private string getUrlPublicacionEnWiki(Evento evento) | |
28 { | |
29 //TODO | |
30 throw new NotImplementedException(); | |
31 } | |
32 } | 26 } |
33 } | 27 } |