public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }
            ContenedorEN t = obj as ContenedorEN;

            if (t == null)
            {
                return(false);
            }
            if (Id.Equals(t.Id))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
 public ContenedorEN(ContenedorEN contenedor)
 {
     this.init(Id, contenedor.Tipo, contenedor.Punto, contenedor.Acciones);
 }