Beispiel #1
0
        public LabProtocoloScreeningDetalleCollection FetchByQuery(Query qry)
        {
            LabProtocoloScreeningDetalleCollection coll = new LabProtocoloScreeningDetalleCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #2
0
        public LabProtocoloScreeningDetalleCollection FetchAll()
        {
            LabProtocoloScreeningDetalleCollection coll = new LabProtocoloScreeningDetalleCollection();
            Query qry = new Query(LabProtocoloScreeningDetalle.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #3
0
        public LabProtocoloScreeningDetalleCollection FetchByID(object IdProtocolo)
        {
            LabProtocoloScreeningDetalleCollection coll = new LabProtocoloScreeningDetalleCollection().Where("idProtocolo", IdProtocolo).Load();

            return(coll);
        }