Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Domain/Patrocinador.cs @ 200:5346c0500594 deploy pre 1.0
Pasando a estructura de db fija, ya no se crea automáticamente.
Se comenta lo referente a Patrocinadores que queda para alguna futura versión.
Script para tablas de v1.0
author | nelopauselli |
---|---|
date | Wed, 17 Aug 2011 17:54:45 -0300 |
parents | 62dc9fb3a03e |
children | 72a96459f910 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/Patrocinador.cs Mon Aug 15 20:00:02 2011 -0400 +++ b/Agendas/trunk/src/Agendas.Domain/Patrocinador.cs Wed Aug 17 17:54:45 2011 -0300 @@ -3,26 +3,26 @@ namespace AltNetHispano.Agendas.Domain { - public class Patrocinador : Identificable - { - public virtual string Nombre { get; set; } - public virtual byte[] Logo { get; set; } + //public class Patrocinador : Identificable + //{ + // public virtual string Nombre { get; set; } + // public virtual byte[] Logo { get; set; } - public Patrocinador(string nombre) - { - Nombre = nombre; - } + // public Patrocinador(string nombre) + // { + // Nombre = nombre; + // } - protected Patrocinador() - { - } + // protected Patrocinador() + // { + // } - public virtual void LoadLogo(string path) - { - var image = Image.FromFile(path); - var ms = new MemoryStream(); - image.Save(ms, image.RawFormat); - Logo = ms.ToArray(); - } - } + // public virtual void LoadLogo(string path) + // { + // var image = Image.FromFile(path); + // var ms = new MemoryStream(); + // image.Save(ms, image.RawFormat); + // Logo = ms.ToArray(); + // } + //} } \ No newline at end of file