view Agendas/trunk/src/Agendas.Twitter/TwitterPublicador.cs @ 60:02e163f2ca38

Refactoring de test de crud del evento
author nelopauselli
date Mon, 16 May 2011 21:40:40 -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
	}
}