Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Blog/Impl/NullObjectPostWriter.cs @ 97:2434c2323f3d
En el evento, volvemos a llamar Ponente a la persona que está a cargo de la presentación
author | Nelo@Kenia.neluz.int |
---|---|
date | Sat, 04 Jun 2011 19:41:40 -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(); } } }