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

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

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

            return(coll);
        }