view Agendas/trunk/src/Agendas.Twitter/TwitterPublicador.cs @ 30:3e5b80e58b1d

tabs en web.config
author nelo@MTEySS.neluz.int
date Wed, 16 Mar 2011 09:51:43 -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
	}
}