Exemple #1
0
        public InsTipoPrescripcionCollection FetchByQuery(Query qry)
        {
            InsTipoPrescripcionCollection coll = new InsTipoPrescripcionCollection();

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemple #3
0
        public InsTipoPrescripcionCollection FetchByID(object IdTipoPrescripcion)
        {
            InsTipoPrescripcionCollection coll = new InsTipoPrescripcionCollection().Where("idTipoPrescripcion", IdTipoPrescripcion).Load();

            return(coll);
        }