X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/5bb1bb3c90e891755b8963804c9babe4b5f6b0d0..b18bbc0eb869a631a7ab9823204d4403645470ef:/demo/src/Dominio/Prestacion.cs diff --git a/demo/src/Dominio/Prestacion.cs b/demo/src/Dominio/Prestacion.cs index 01e585f..2fc922b 100644 --- a/demo/src/Dominio/Prestacion.cs +++ b/demo/src/Dominio/Prestacion.cs @@ -1,24 +1,44 @@ -namespace Dominio { -namespace Autorizaciones { - using System; using System.Collections; -public class Prestacion +namespace Dominio { - public string Codigo; - public string Nombre; - DateTime _fechaBaja = DateTime.MinValue; - ArrayList _prestadores = null; - public Categoria Categoria; - - public bool AgregarPrestador (Prestador p) - { - _prestadores.Add (p); - return true; - } - -} + namespace Autorizaciones { -} + public class Prestacion + { + public string Codigo; + public string Nombre; + public DateTime _fechaBaja = DateTime.MinValue; + ArrayList _prestadores = null; + public Categoria Categoria; + + public DateTime FechaBaja + { + get { return this._fechaBaja; } + set { this._fechaBaja = value; } + } + + #region Constructores + + public Prestacion() + { + } + + public Prestacion( string codigo ) + { + this.Codigo = codigo; + } + + #endregion Constructores + + public bool AgregarPrestador (Prestador p) + { + _prestadores.Add (p); + return true; + } + + } + + } }