Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs @ 38:3c5657d99727
Cambio de setters de las propiedades a private
author | nelo@MTEySS.neluz.int |
---|---|
date | Thu, 17 Mar 2011 23:16:35 -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>(); } }