diff Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs @ 4:49b572535156

proponer van publicar van propuesta comportamiento ante excepcion en publicador
author nelopauselli
date Tue, 08 Feb 2011 00:08:49 -0300
parents
children 475be11edf56
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Agendas/trunk/src/Agendas.Repositories.Memory/RepositoryBase.cs	Tue Feb 08 00:08:49 2011 -0300
@@ -0,0 +1,10 @@
+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>();
+	}
+}
\ No newline at end of file