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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public GuardiaRegistrosPracticasLaboratorioCollection FetchByID(object IdPractica)
        {
            GuardiaRegistrosPracticasLaboratorioCollection coll = new GuardiaRegistrosPracticasLaboratorioCollection().Where("idPractica", IdPractica).Load();

            return(coll);
        }