view Agendas/trunk/src/Agendas.Google/GooglePublicador.cs @ 56:65bbcdd5d357

Pasando la responsabilidad de generar el Id al repositorio
author nelopauselli
date Mon, 16 May 2011 20:15:05 -0300
parents 475be11edf56
children 26d0513a8410
line wrap: on
line source

using System;
using AltNetHispano.Agendas.Domain;

namespace AltNetHispano.Agendas.Google
{
	public class GooglePublicador : IPublicador
	{
		#region IPublicador Members

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

		#endregion
	}
}