view Agendas/trunk/src/Agendas.Blog/Impl/NullObjectPostWriter.cs @ 288:a6037c6c88d8

Se soluciona bug #198 Bug: Summary incorrecto en Google Calendar. Se parametriza la hora en el mensaje.
author user@MECHUQUE
date Mon, 30 Jan 2012 01:52:47 -0300
parents 1d820f17fc75
children
line wrap: on
line source

using AltNetHispano.Agendas.Domain;

namespace Agendas.Blog.Impl
{
  public class NullObjectPostWriter : PostWriter
  {
    public NullObjectPostWriter(IPostWriterWebService postWriterWebService) : base(postWriterWebService)
    {
    }

    public override void WritePost(Track track)
    {
      //no-op
    }

    protected override string GetBody(Track track)
    {
      throw new System.NotImplementedException();
    }

    protected override string GetTitle(Track track)
    {
      throw new System.NotImplementedException();
    }
  }
}