view Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs @ 24:41b283d27e3e

Ponentes como entidad Agenda no es una entidad persistente (por ahora)
author nelo@MTEySS.neluz.int
date Tue, 15 Mar 2011 07:49:53 -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>();
	}
}