view Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs @ 6:2912c1dd0e6b

Se verificó mediante un test que las propuestas y las publicaciones se estaban mezclando. Se corrigió el bug.
author juanjose.montesdeocaarbos
date Tue, 08 Feb 2011 07:47:47 -0300
parents 49b572535156
children 475be11edf56
line wrap: on
line source

using System;
using System.Collections.Generic;

namespace Agendas.Repositories.Memory
{
	public class RepositoryBase<T>
	{
		protected static readonly IDictionary<Guid, T> Objects = new Dictionary<Guid, T>();
	}
}