2 using System.Collections;
6 namespace Autorizaciones {
8 public class Prestacion
12 public DateTime _fechaBaja = DateTime.MinValue;
13 ArrayList _prestadores = null;
14 public Categoria Categoria;
16 public DateTime FechaBaja
18 get { return this._fechaBaja; }
19 set { this._fechaBaja = value; }
26 _prestadores = new ArrayList ();
29 public Prestacion( string codigo )
34 public Prestacion( string codigo, string nombre )
40 #endregion Constructores
42 public bool AgregarPrestador (Prestador p)
48 public bool ExistePrestador (Prestador p)
50 if (_prestadores == null) return false;
52 foreach (Prestador p1 in _prestadores) {
53 if (p1.Cuit.Equals (p.Cuit))