Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Blog/Impl/NullObjectPostWriter.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 | 3027c64344bd |
comparison
equal
deleted
inserted
replaced
62:c40b97bbed01 | 65:ebce59b45b50 |
---|---|
1 using AltNetHispano.Agendas.Domain; | |
2 | |
3 namespace Agendas.Blog.Impl | |
4 { | |
5 public class NullObjectPostWriter : PostWriter | |
6 { | |
7 public override void WritePost(Evento evento) | |
8 { | |
9 //no-op | |
10 } | |
11 | |
12 protected override string GetBody(Evento evento) | |
13 { | |
14 throw new System.NotImplementedException(); | |
15 } | |
16 | |
17 protected override string GetTitle(Evento evento) | |
18 { | |
19 throw new System.NotImplementedException(); | |
20 } | |
21 } | |
22 } |