Mercurial > altnet-hispano
comparison Agendas/trunk/src/Agendas.Domain/EventoAgendadoState.cs @ 116:53bcd338542b
acciones de confirmar y publicar desde la UI
author | Nelo@Kenia.neluz.int |
---|---|
date | Sun, 19 Jun 2011 13:00:02 -0300 |
parents | c5034884c7d7 |
children | 6f1041301797 |
comparison
equal
deleted
inserted
replaced
115:7a2eeb9e9bf9 | 116:53bcd338542b |
---|---|
1 using AltNetHispano.Agendas.Domain.Exceptions; | 1 using System; |
2 using AltNetHispano.Agendas.Domain.Exceptions; | |
2 | 3 |
3 namespace AltNetHispano.Agendas.Domain | 4 namespace AltNetHispano.Agendas.Domain |
4 { | 5 { |
5 public class EventoAgendadoState : EventoState | 6 public class EventoAgendadoState : EventoState |
6 { | 7 { |
31 | 32 |
32 public override string GetDescripcion() | 33 public override string GetDescripcion() |
33 { | 34 { |
34 return Descripcion; | 35 return Descripcion; |
35 } | 36 } |
37 | |
38 public override bool PuedePromover(Accion accion) | |
39 { | |
40 return accion == Accion.Confirmar; | |
41 } | |
36 } | 42 } |
37 } | 43 } |