Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Domain/EventoState.cs @ 109:6bd9be78caa0
Merge
author | Nelo@Kenia.neluz.int |
---|---|
date | Tue, 07 Jun 2011 23:21:07 -0300 |
parents | 23325dddddcc |
children | 53bcd338542b |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Agendas/trunk/src/Agendas.Domain/EventoState.cs Tue Jun 07 23:21:07 2011 -0300 @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace AltNetHispano.Agendas.Domain +{ + public abstract class EventoState + { + public abstract void Promover(Evento evento, Accion accion); + + public abstract string GetDescripcion(); + } +}