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

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

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

            return(coll);
        }