Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Domain/Ponente.cs @ 60:02e163f2ca38
Refactoring de test de crud del evento
author | nelopauselli |
---|---|
date | Mon, 16 May 2011 21:40:40 -0300 |
parents | 65bbcdd5d357 |
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; } } }