Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Blog/Impl/PostWriter.cs @ 176:c58d26b15759
Merge
author | nelopauselli |
---|---|
date | Mon, 08 Aug 2011 10:13:46 -0300 |
parents | 1d820f17fc75 |
children |
line wrap: on
line source
using System.Linq; using AltNetHispano.Agendas.Domain; namespace Agendas.Blog.Impl { public abstract class PostWriter : IPostWriter { private readonly IPostWriterWebService _postWriterWebService; protected PostWriter(IPostWriterWebService postWriterWebService) { _postWriterWebService = postWriterWebService; } public virtual void WritePost(Track track) { var title = GetTitle(track); var body = GetBody(track); this.ExecuteService(title, body, this.GetNombreUsuario(track)); } protected abstract string GetBody(Track track); protected abstract string GetTitle(Track track); protected string GetNombreUsuario(Track track) { return track.Usuario.Nombre; } protected void ExecuteService(string title, string body, string author) { _postWriterWebService.WriteBlogPost(title, body, author, true); } } }