Mercurial > altnet-hispano
diff 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 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Blog/Impl/PublicarReunionPostWriter.cs Thu May 19 01:32:29 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Blog/Impl/PublicarReunionPostWriter.cs Fri May 20 12:21:07 2011 -0300 @@ -10,7 +10,7 @@ protected override string GetTitle(Evento evento) { return string.Format(CultureInfo.InvariantCulture, Resources.VAN_Publicacion_Title, - string.Empty, //# de VAN en el historial TODO + evento.NumeroOrden, //# de VAN en el historial evento.Ponente.Nombre //Nombre y apellido del ponente ); @@ -19,15 +19,9 @@ protected override string GetBody(Evento evento) { return string.Format(CultureInfo.InvariantCulture, Resources.VAN_Realizacion_Body, - getUrlPublicacionEnWiki(evento), //Url al video publicado en la wiki + evento.UrlWiki, //Url al video publicado en la wiki GetNombreUsuario(evento) //Usuario que postea en el blog ); } - - private string getUrlPublicacionEnWiki(Evento evento) - { - //TODO - throw new NotImplementedException(); - } } } \ No newline at end of file