view Agendas/trunk/src/Agendas.Blog/Impl/PublicarReunionPostWriter.cs @ 65:ebce59b45b50

Agregado de version inicial del publicador para el blog
author ROWIES@ardejorxp.inworx.corp
date Tue, 17 May 2011 18:04:56 -0300
parents
children c7264bfc4b71
line wrap: on
line source

using System;
using System.Globalization;
using Agendas.Blog.Properties;
using AltNetHispano.Agendas.Domain;

namespace Agendas.Blog.Impl
{
  public class PublicarReunionPostWriter : PostWriter
  {
    protected override string GetTitle(Evento evento)
    {
      return string.Format(CultureInfo.InvariantCulture, Resources.VAN_Publicacion_Title,
                           string.Empty, //# de VAN en el historial TODO
                           evento.Ponente.Nombre //Nombre y apellido del ponente

        );
    }

    protected override string GetBody(Evento evento)
    {
      return string.Format(CultureInfo.InvariantCulture, Resources.VAN_Realizacion_Body,
                           getUrlPublicacionEnWiki(evento), //Url al video publicado en la wiki
                           GetNombreUsuario(evento) //Usuario que postea en el blog
        );
    }

    private string getUrlPublicacionEnWiki(Evento evento)
    {
      //TODO
      throw new NotImplementedException();
    }
  }
}