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

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

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

            return(coll);
        }