Mercurial > altnet-hispano
changeset 146:3ca9fb66d397
Habilitando la modificación de eventos propuestos o agendados
author | Nelo@Guinea.neluz.int |
---|---|
date | Mon, 01 Aug 2011 11:42:50 -0300 |
parents | e6e6bfb1da9e |
children | 5a1f7233aa5a |
files | Agendas/trunk/src/Agendas.Domain/EventoAgendadoState.cs Agendas/trunk/src/Agendas.Domain/EventoPropuestoState.cs |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/EventoAgendadoState.cs Mon Aug 01 11:42:24 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Domain/EventoAgendadoState.cs Mon Aug 01 11:42:50 2011 -0300 @@ -38,7 +38,7 @@ public override bool PuedePromover(Accion accion) { - return accion == Accion.Confirmar || accion == Accion.Cancelar; + return accion == Accion.Confirmar || accion == Accion.Cancelar || accion==Accion.Modificar; } } } \ No newline at end of file
--- a/Agendas/trunk/src/Agendas.Domain/EventoPropuestoState.cs Mon Aug 01 11:42:24 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Domain/EventoPropuestoState.cs Mon Aug 01 11:42:50 2011 -0300 @@ -39,7 +39,7 @@ public override bool PuedePromover(Accion accion) { - return accion == Accion.Agendar || accion == Accion.Descartar; + return accion == Accion.Agendar || accion == Accion.Descartar || accion==Accion.Modificar; } } } \ No newline at end of file