Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs @ 26:71b02443450a
UI de Propuestas de VANs
author | nelo@MTEySS.neluz.int |
---|---|
date | Tue, 15 Mar 2011 08:45:00 -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>(); } }