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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public LabMetodoScreeningCollection FetchByID(object IdMetodoScreening)
        {
            LabMetodoScreeningCollection coll = new LabMetodoScreeningCollection().Where("idMetodoScreening", IdMetodoScreening).Load();

            return(coll);
        }