public TEvolisRerunCollection FetchByQuery(Query qry)
        {
            var coll = new TEvolisRerunCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public TEvolisRerunCollection FetchAll()
        {
            var coll = new TEvolisRerunCollection();
            var qry  = new Query(TEvolisRerun.Schema);

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

            return(coll);
        }