diff Agendas/trunk/src/Agendas.Repositories.Memory/PonenteRepository.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 e548379cc314
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Repositories.Memory/PonenteRepository.cs	Thu Mar 17 17:04:03 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Repositories.Memory/PonenteRepository.cs	Thu Mar 17 23:16:35 2011 -0300
@@ -10,11 +10,8 @@
 	{
 		public void Save(Ponente ponente)
 		{
-			if (Guid.Empty.Equals(ponente.Id))
-			{
-				ponente.Id = Guid.NewGuid();
+			if (!Objects.Keys.Contains(ponente.Id))
 				Objects.Add(ponente.Id, ponente);
-			}
 		}
 
 		public void Update(Ponente ponente)