Mercurial > altnet-hispano
annotate 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 |
rev | line source |
---|---|
4 | 1 using System; |
2 using System.Collections.Generic; | |
3 | |
34
475be11edf56
Ajuste en los nombre de los assemblies y namespaces
nelo@MTEySS.neluz.int
parents:
4
diff
changeset
|
4 namespace AltNetHispano.Agendas.Repositories.Memory |
4 | 5 { |
6 public class RepositoryBase<T> | |
7 { | |
8 protected static readonly IDictionary<Guid, T> Objects = new Dictionary<Guid, T>(); | |
9 } | |
10 } |