public KskLuotkhamCollection FetchByQuery(Query qry)
        {
            KskLuotkhamCollection coll = new KskLuotkhamCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public KskLuotkhamCollection FetchAll()
        {
            KskLuotkhamCollection coll = new KskLuotkhamCollection();
            Query qry = new Query(KskLuotkham.Schema);

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

            return(coll);
        }