view Agendas/trunk/src/Agendas.Blog/Impl/NullObjectPostWriter.cs @ 107:1ee5711256db

Utilizando Twitterizer en adapter a Twitter
author Nelo@Kenia.neluz.int
date Tue, 07 Jun 2011 21:03:56 -0300
parents ebce59b45b50
children 3027c64344bd
line wrap: on
line source

using AltNetHispano.Agendas.Domain;

namespace Agendas.Blog.Impl
{
  public class NullObjectPostWriter : PostWriter
  {
    public override void WritePost(Evento evento)
    {
      //no-op
    }

    protected override string GetBody(Evento evento)
    {
      throw new System.NotImplementedException();
    }

    protected override string GetTitle(Evento evento)
    {
      throw new System.NotImplementedException();
    }
  }
}