Esempio n. 1
0
        public LabMetodoScreeningCollection FetchByQuery(Query qry)
        {
            LabMetodoScreeningCollection coll = new LabMetodoScreeningCollection();

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

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

            return(coll);
        }