diff Agendas/trunk/src/Agendas.Domain/Patrocinador.cs @ 137:2d1adbaf0373

CRUD de Patrocinador
author nelopauselli
date Thu, 28 Jul 2011 09:26:24 -0300
parents
children 62791999ad01
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Agendas/trunk/src/Agendas.Domain/Patrocinador.cs	Thu Jul 28 09:26:24 2011 -0300
@@ -0,0 +1,19 @@
+using System;
+
+namespace AltNetHispano.Agendas.Domain
+{
+	public class Patrocinador : Identificable
+	{
+		public virtual string Nombre { get; set; }
+		public virtual byte[] Logo { get; set; }
+
+		public Patrocinador(string nombre)
+		{
+			Nombre = nombre;
+		}
+
+		protected Patrocinador()
+		{
+		}
+	}
+}
\ No newline at end of file