view Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs @ 20:c5a99dde072f

reorganizando tests
author nelo@MTEySS.neluz.int
date Mon, 14 Mar 2011 20:59:28 -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>();
	}
}