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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public AprAbortoCollection FetchAll()
        {
            AprAbortoCollection coll = new AprAbortoCollection();
            Query qry = new Query(AprAborto.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public AprAbortoCollection FetchByID(object IdAborto)
        {
            AprAbortoCollection coll = new AprAbortoCollection().Where("idAborto", IdAborto).Load();

            return(coll);
        }