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

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

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

            return(coll);
        }