Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Blog/Impl/NullObjectPostWriter.cs @ 99:3027c64344bd
agregado de llamadas a web service para crear posts en el blog de la comunidad
agregado de tests sobre el publicador de blogs
agregado de tests sobre el adapter del web service
author | jorge.rowies |
---|---|
date | Sat, 04 Jun 2011 22:33:05 -0300 |
parents | ebce59b45b50 |
children | 1d820f17fc75 |
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(Evento evento) { //no-op } protected override string GetBody(Evento evento) { throw new System.NotImplementedException(); } protected override string GetTitle(Evento evento) { throw new System.NotImplementedException(); } } }