view Agendas/trunk/src/Agendas.Twitter/TwitterPublicador.cs @ 31:bbe0f8e16dd7

dll de asp.net mvc & razor en lib y con copy local en true
author nelo@MTEySS.neluz.int
date Wed, 16 Mar 2011 09:52:54 -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
	}
}