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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public LabItemScreeningCollection FetchByID(object IdItemScreening)
        {
            LabItemScreeningCollection coll = new LabItemScreeningCollection().Where("idItemScreening", IdItemScreening).Load();

            return(coll);
        }