Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs @ 34:475be11edf56
Ajuste en los nombre de los assemblies y namespaces
author | nelo@MTEySS.neluz.int |
---|---|
date | Thu, 17 Mar 2011 16:59:29 -0300 |
parents | 49b572535156 |
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>(); } }