diff Agendas/trunk/src/Agendas.Domain/Ponente.cs @ 54:3059a5f8930f

Code cleanup
author nelopauselli
date Sat, 14 May 2011 13:01:24 -0300
parents 3c5657d99727
children 65bbcdd5d357
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/Ponente.cs	Sat May 14 12:45:50 2011 -0300
+++ b/Agendas/trunk/src/Agendas.Domain/Ponente.cs	Sat May 14 13:01:24 2011 -0300
@@ -2,22 +2,23 @@
 
 namespace AltNetHispano.Agendas.Domain
 {
-	public class Ponente {
-	    public Ponente(string nombre, string mail, string twitter, string blog)
-            : this(nombre)
-	    {
-	        Mail = mail;
-	        Twitter = twitter;
-	        Blog = blog;
-	    }
+	public class Ponente
+	{
+		public Ponente(string nombre, string mail, string twitter, string blog)
+			: this(nombre)
+		{
+			Mail = mail;
+			Twitter = twitter;
+			Blog = blog;
+		}
 
-	    public Ponente(string nombre)
-	    {
-            Id = Guid.NewGuid();
-            Nombre = nombre;
-	    }
+		public Ponente(string nombre)
+		{
+			Id = Guid.NewGuid();
+			Nombre = nombre;
+		}
 
-	    public Guid Id { get; private set; }
+		public Guid Id { get; private set; }
 
 		public string Nombre { get; private set; }
 
@@ -26,6 +27,5 @@
 		public string Twitter { get; private set; }
 
 		public string Blog { get; private set; }
-
 	}
 }
\ No newline at end of file