view Agendas/trunk/src/Agendas.Domain/EventoDescartadoState.cs @ 300:48ab8788bd19

#200: Patrocinadores: Agregar link al sitio web.
author juanjose.montesdeocaarbos
date Mon, 27 Feb 2012 14:45:12 -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;
        }
    }
}