comparison Agendas/trunk/src/Agendas.Domain/Evento.cs @ 105:1d820f17fc75

ajustes y correcciones en el publicador de blogs agregado de numeroOrden y urlWiki en metodo Publicar de Agenda y Evento (con test)
author jorge.rowies
date Mon, 06 Jun 2011 09:12:52 -0300
parents c5034884c7d7
children 80c22175c9b5
comparison
equal deleted inserted replaced
104:c5034884c7d7 105:1d820f17fc75
173 public virtual void Confirmar() 173 public virtual void Confirmar()
174 { 174 {
175 this.GetEstado().Promover(this, Accion.Confirmar); 175 this.GetEstado().Promover(this, Accion.Confirmar);
176 } 176 }
177 177
178 public virtual void Publicar() 178 public virtual void Publicar(short numeroOrden, string urlWiki)
179 { 179 {
180 this.NumeroOrden = numeroOrden;
181 this.UrlWiki = urlWiki;
180 this.GetEstado().Promover(this, Accion.Publicar); 182 this.GetEstado().Promover(this, Accion.Publicar);
181 } 183 }
182 184
183 #endregion 185 #endregion
184 186