namespace Dominio { namespace Autorizaciones { using System; using System.Collections; public class Prestacion { private string _codigo; private string _nombre; private DateTime _fechaBaja; private ArrayList _prestadores; private Categoria _categoria; public bool AgregarPrestador (Prestador p) { _prestadores.Add (p); return true; } } } }