Mercurial > altnet-hispano
comparison 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 |
comparison
equal
deleted
inserted
replaced
108:786a90e26c9b | 109:6bd9be78caa0 |
---|---|
1 using System; | |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 | |
6 namespace AltNetHispano.Agendas.Domain | |
7 { | |
8 public abstract class EventoState | |
9 { | |
10 public abstract void Promover(Evento evento, Accion accion); | |
11 | |
12 public abstract string GetDescripcion(); | |
13 } | |
14 } |