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

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

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

            return(coll);
        }