view Agendas/trunk/src/Agendas.Domain/EventoDescartadoState.cs @ 209:a36a76bd6ec3

Se soluciona ticket 173. Se agrega eliminación de personas siempre y cuando no esté asociada a ninguna van.
author alabra
date Wed, 24 Aug 2011 19:27:30 -0300
parents 3639803112c6
children
line wrap: on
line source

using System;
using AltNetHispano.Agendas.Domain.Exceptions;

namespace AltNetHispano.Agendas.Domain
{
    public class EventoDescartadoState : EventoState
    {
		protected EventoDescartadoState()
        {
        }

        private static readonly EventoState _instance = new EventoDescartadoState();

        public static EventoState GetInstance()
        {
            return _instance;
        }

        public override void Promover(Evento evento, Accion accion)
        {
            throw new AccionNoSoportadaException(this.GetType(), accion);
        }

    	public override string Descripcion
    	{
			get { return "Descartado"; }
    	}

    	public override bool PuedePromover(Accion accion)
        {
            return false;
        }
    }
}