Exemplo n.º 1
0
        public LabProtocoloScreeningCollection FetchByQuery(Query qry)
        {
            LabProtocoloScreeningCollection coll = new LabProtocoloScreeningCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public LabProtocoloScreeningCollection FetchAll()
        {
            LabProtocoloScreeningCollection coll = new LabProtocoloScreeningCollection();
            Query qry = new Query(LabProtocoloScreening.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public LabProtocoloScreeningCollection FetchByID(object IdProtocoloHead)
        {
            LabProtocoloScreeningCollection coll = new LabProtocoloScreeningCollection().Where("idProtocoloHead", IdProtocoloHead).Load();

            return(coll);
        }