view Agendas/trunk/src/Agendas.Tests/EventoObjectMother.cs @ 11:9d6b28a696d1

corrección en método que verifica la autenticación del usuario
author nelo@MTEySS.neluz.int
date Sun, 13 Mar 2011 19:30:58 -0300
parents 49b572535156
children 05996fa19e04
line wrap: on
line source

using System;
using AltNetHispano.Agendas.Domain;

namespace AltNetHispano.Agendas.Tests
{
	public static class EventoObjectMother
	{
		public static Van GetVanValidaParaPublicar()
		{
			return new Van {Fecha = DateTime.Now, Ponente = "jjmontes"};
		}

		public static Cafe GetCafeValidoParaPublicar()
		{
			return new Cafe { Fecha = DateTime.Now };
		}
	}
}