diff Agendas/trunk/src/Agendas.Domain/Ponente.cs @ 56:65bbcdd5d357

Pasando la responsabilidad de generar el Id al repositorio
author nelopauselli
date Mon, 16 May 2011 20:15:05 -0300
parents 3059a5f8930f
children cb3f7b47c1f0
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/Ponente.cs	Mon May 16 20:10:45 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Domain/Ponente.cs	Mon May 16 20:15:05 2011 -0300
@@ -1,8 +1,6 @@
-using System;
-
-namespace AltNetHispano.Agendas.Domain
+namespace AltNetHispano.Agendas.Domain
 {
-	public class Ponente
+	public class Ponente : Identificable
 	{
 		public Ponente(string nombre, string mail, string twitter, string blog)
 			: this(nombre)
@@ -14,12 +12,9 @@
 
 		public Ponente(string nombre)
 		{
-			Id = Guid.NewGuid();
 			Nombre = nombre;
 		}
 
-		public Guid Id { get; private set; }
-
 		public string Nombre { get; private set; }
 
 		public string Mail { get; private set; }