diff Agendas/trunk/src/Agendas.Blog/Impl/PostWriter.cs @ 70:c7264bfc4b71

agregado de properties en clase Evento (UrlInvitacion, UrlWiki, NumeroOrden) modificaciones en proyecto Agendas.Blog modificacion de viewmodel EventoModel - agregado de UrlInvitacion (no requerido)
author jorge.rowies
date Fri, 20 May 2011 12:21:07 -0300
parents ebce59b45b50
children bc46e7426c80
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Blog/Impl/PostWriter.cs	Thu May 19 01:32:29 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Blog/Impl/PostWriter.cs	Fri May 20 12:21:07 2011 -0300
@@ -1,4 +1,5 @@
 using System;
+using System.Linq;
 using AltNetHispano.Agendas.Domain;
 
 namespace Agendas.Blog.Impl
@@ -18,8 +19,7 @@
 
     protected string GetNombreUsuario(Evento evento)
     {
-      return string.Empty;
-      //return evento.Tracks.Single(t => t.Accion == Accion.Realizar).Usuario; TODO (property Usuario debe ser publica)
+      return evento.Tracks.Single(t => t.Accion == Accion.Realizar).Usuario;
     }
 
     protected void ExecuteService(string title, string body)