Пример #1
0
        public HirelCommunityUserCurCollection FetchByQuery(Query qry)
        {
            HirelCommunityUserCurCollection coll = new HirelCommunityUserCurCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #2
0
        public HirelCommunityUserCurCollection FetchAll()
        {
            HirelCommunityUserCurCollection coll = new HirelCommunityUserCurCollection();
            Query qry = new Query(HirelCommunityUserCur.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Пример #3
0
        public HirelCommunityUserCurCollection FetchByID(object CtyId)
        {
            HirelCommunityUserCurCollection coll = new HirelCommunityUserCurCollection().Where("CTY_ID", CtyId).Load();

            return(coll);
        }