From: Guillermo Rugilo Date: Wed, 6 Jul 2005 17:35:09 +0000 (+0000) Subject: - Agrego constructores e identacion X-Git-Tag: svn_import~40 X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/commitdiff_plain/7ad63ec33948b09e7bfcd28057e5fa91bc51220c?hp=15be33679d438f2d74de7f5aef118103fb12df57 - Agrego constructores e identacion --- diff --git a/demo/src/Dominio/Prestacion.cs b/demo/src/Dominio/Prestacion.cs index b196b89..9594083 100644 --- a/demo/src/Dominio/Prestacion.cs +++ b/demo/src/Dominio/Prestacion.cs @@ -1,24 +1,38 @@ -namespace Dominio { -namespace Autorizaciones { - using System; using System.Collections; -public class Prestacion +namespace Dominio { - public string Codigo; - public string Nombre; - public DateTime _fechaBaja = DateTime.MinValue; - ArrayList _prestadores = null; - public Categoria Categoria; + namespace Autorizaciones { - public bool AgregarPrestador (Prestador p) - { - _prestadores.Add (p); - return true; - } - -} + public class Prestacion + { + public string Codigo; + public string Nombre; + public DateTime _fechaBaja = DateTime.MinValue; + ArrayList _prestadores = null; + public Categoria Categoria; -} + #region Constructores + + public Prestacion() + { + } + + public Prestacion( string codigo ) + { + this.Codigo = codigo; + } + + #endregion Constructores + + public bool AgregarPrestador (Prestador p) + { + _prestadores.Add (p); + return true; + } + + } + + } }