Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Ponente.cs @ 55:39f5258ebdcf
Agregando referencias con NuGet
author | nelopauselli |
---|---|
date | Mon, 16 May 2011 20:10:45 -0300 |
parents | 3059a5f8930f |
children | 65bbcdd5d357 |
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; } } }