view Agendas/trunk/src/Agendas.Blog/IPostWriterWebService.cs @ 183:212c664db5aa

Generalización del manejo de las acciones sobre eventos
author nelopauselli
date Mon, 08 Aug 2011 22:27:00 -0300
parents 3027c64344bd
children
line wrap: on
line source

namespace Agendas.Blog
{
  public interface IPostWriterWebService
  {
    void WriteBlogPost(string postTitle, string postHtmlContent, string postAuthor, bool setPublicationDate);
  }
}