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

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

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

            return(coll);
        }