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

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

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

            return(coll);
        }