view Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs @ 55:39f5258ebdcf

Agregando referencias con NuGet
author nelopauselli
date Mon, 16 May 2011 20:10:45 -0300
parents 475be11edf56
children 65bbcdd5d357
line wrap: on
line source

using System;
using System.Collections.Generic;

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