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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public PnSmiefectoreCollection FetchAll()
        {
            PnSmiefectoreCollection coll = new PnSmiefectoreCollection();
            Query qry = new Query(PnSmiefectore.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public PnSmiefectoreCollection FetchByID(object Cuie)
        {
            PnSmiefectoreCollection coll = new PnSmiefectoreCollection().Where("cuie", Cuie).Load();

            return(coll);
        }