+ 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;
+ }
+
+ }
+
+ }