Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Ponente.cs @ 39:e548379cc314
track de cambios en evento
author | nelo@MTEySS.neluz.int |
---|---|
date | Fri, 18 Mar 2011 00:10:21 -0300 |
parents | 3c5657d99727 |
children | 3059a5f8930f |
line wrap: on
line source
using System; 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 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; } public string Twitter { get; private set; } public string Blog { get; private set; } } }