]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blob - demo/src/Dominio/Prestacion.cs
58e44475cb2702ca491ae139019122b2acd2e173
[z.facultad/75.10/miklolife.git] / demo / src / Dominio / Prestacion.cs
1 using System;
2 using System.Collections;
3
4 namespace Dominio \r
5 {
6         namespace Autorizaciones {
7
8                 public class Prestacion 
9                 {
10                         public string Codigo;
11                         public string Nombre;
12                         public DateTime _fechaBaja = DateTime.MinValue;
13                         ArrayList _prestadores = null;
14                         public Categoria Categoria;
15
16                         public DateTime FechaBaja
17                         {
18                                 get { return this._fechaBaja; }
19                                 set { this._fechaBaja = value; }
20                         }
21
22                         #region Constructores
23                         
24                         public Prestacion()
25                         {
26                         }
27
28                         public Prestacion( string codigo )
29                         {
30                                 this.Codigo = codigo;
31                         }
32
33                         public Prestacion( string codigo, string nombre )
34                         {
35                                 this.Codigo = codigo;
36                                 this.Nombre = nombre;
37                         }
38
39                         #endregion Constructores
40
41                         public bool AgregarPrestador (Prestador p)
42                         {
43                                 _prestadores.Add (p);
44                                 return true;
45                         }
46                         
47                 }
48
49         }
50 }