view Agendas/trunk/src/Agendas.Twitter/TwitterPublicador.cs @ 55:39f5258ebdcf

Agregando referencias con NuGet
author nelopauselli
date Mon, 16 May 2011 20:10:45 -0300
parents 475be11edf56
children 26d0513a8410
line wrap: on
line source

using System;
using AltNetHispano.Agendas.Domain;

namespace AltNetHispano.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
	}
}