public IcoUbicacionArchivoCollection FetchByQuery(Query qry)
        {
            IcoUbicacionArchivoCollection coll = new IcoUbicacionArchivoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public IcoUbicacionArchivoCollection FetchAll()
        {
            IcoUbicacionArchivoCollection coll = new IcoUbicacionArchivoCollection();
            Query qry = new Query(IcoUbicacionArchivo.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }