Exemplo n.º 1
0
        public AutOrdenRepItemCollection FetchByQuery(Query qry)
        {
            AutOrdenRepItemCollection coll = new AutOrdenRepItemCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public AutOrdenRepItemCollection FetchAll()
        {
            AutOrdenRepItemCollection coll = new AutOrdenRepItemCollection();
            Query qry = new Query(AutOrdenRepItem.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public AutOrdenRepItemCollection FetchByID(object IdOrdenRepItem)
        {
            AutOrdenRepItemCollection coll = new AutOrdenRepItemCollection().Where("idOrdenRepItem", IdOrdenRepItem).Load();

            return(coll);
        }