view Agendas/trunk/src/Agendas.Twitter/TwitterPublicador.cs @ 26:71b02443450a

UI de Propuestas de VANs
author nelo@MTEySS.neluz.int
date Tue, 15 Mar 2011 08:45:00 -0300
parents 5f007e266509
children 475be11edf56
line wrap: on
line source

using System;
using AltNetHispano.Agendas.Domain;

namespace Agendas.Twitter
{
	public class TwitterPublicador : IPublicador, IRecordador
	{
		#region IPublicador Members

		public void Publicar(Evento evento)
		{
			throw new NotImplementedException();
		}

		#endregion

		#region IRecordador Members

		public void Recordar(Evento evento)
		{
			throw new NotImplementedException();
		}

		#endregion
	}
}