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

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

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