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

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

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

            return(coll);
        }