view Agendas/trunk/src/Agendas.Domain/EventoPublicadoState.cs @ 182:beeb48ddb44a

Warning con los errores que se guarden en el log del track de un evento durante una notificación (twitter, calendar, blog)
author nelopauselli
date Mon, 08 Aug 2011 21:57:10 -0300
parents 3639803112c6
children
line wrap: on
line source

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

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

		private static readonly EventoState _instance = new EventoPublicadoState();
		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 "Publicado"; }
		}

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