Ejemplo n.º 1
0
 public TResultDetailCollection FetchAll()
 {
     TResultDetailCollection coll = new TResultDetailCollection();
     Query qry = new Query(TResultDetail.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 2
0
        public TResultDetailCollection FetchByQuery(Query qry)
        {
            TResultDetailCollection coll = new TResultDetailCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public TResultDetailCollection FetchAll()
        {
            TResultDetailCollection coll = new TResultDetailCollection();
            Query qry = new Query(TResultDetail.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 4
0
 public TResultDetailCollection FetchByQuery(Query qry)
 {
     TResultDetailCollection coll = new TResultDetailCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Ejemplo n.º 5
0
 public TResultDetailCollection FetchByID(object TestDetailId)
 {
     TResultDetailCollection coll = new TResultDetailCollection().Where("TestDetail_ID", TestDetailId).Load();
     return coll;
 }
Ejemplo n.º 6
0
        public TResultDetailCollection FetchByID(object TestDetailId)
        {
            TResultDetailCollection coll = new TResultDetailCollection().Where("TestDetail_ID", TestDetailId).Load();

            return(coll);
        }