view Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs @ 17:9a07d3091a40

Test sobre la modificación de un evento
author nelo@MTEySS.neluz.int
date Mon, 14 Mar 2011 00:25:34 -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>();
	}
}