view 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 source

namespace AltNetHispano.Agendas.Domain
{
	public class Ponente : Identificable
	{
		public Ponente(string nombre, string mail, string twitter, string blog)
			: this(nombre)
		{
			Mail = mail;
			Twitter = twitter;
			Blog = blog;
		}

		public Ponente(string nombre)
		{
			Nombre = nombre;
		}

		public string Nombre { get; private set; }

		public string Mail { get; private set; }

		public string Twitter { get; private set; }

		public string Blog { get; private set; }
	}
}