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

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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 4
0
        public PSpecyCollection FetchByID(object SpcRecID)
        {
            PSpecyCollection coll = new PSpecyCollection().Where("SpcRecID", SpcRecID).Load();

            return(coll);
        }
Exemplo n.º 5
0
 public PSpecyCollection FetchByQuery(Query qry)
 {
     PSpecyCollection coll = new PSpecyCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemplo n.º 6
0
 public PSpecyCollection FetchByID(object SpcRecID)
 {
     PSpecyCollection coll = new PSpecyCollection().Where("SpcRecID", SpcRecID).Load();
     return coll;
 }