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

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

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

            return(coll);
        }