Mercurial > altnet-hispano
diff Agendas/trunk/src/Agendas.Domain/Patrocinador.cs @ 274:72a96459f910
Ticket #123: Patrocinadores de las vans.
author | juanjose.montesdeocaarbos |
---|---|
date | Wed, 30 Nov 2011 08:56:01 -0300 |
parents | 5346c0500594 |
children | 6f5ab71614d4 |
line wrap: on
line diff
--- a/Agendas/trunk/src/Agendas.Domain/Patrocinador.cs Tue Nov 29 07:56:23 2011 -0300 +++ b/Agendas/trunk/src/Agendas.Domain/Patrocinador.cs Wed Nov 30 08:56:01 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