コード例 #1
0
        public FacOrdenLaboratorioCollection FetchByQuery(Query qry)
        {
            FacOrdenLaboratorioCollection coll = new FacOrdenLaboratorioCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
        public FacOrdenLaboratorioCollection FetchAll()
        {
            FacOrdenLaboratorioCollection coll = new FacOrdenLaboratorioCollection();
            Query qry = new Query(FacOrdenLaboratorio.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }