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

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

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

            return(coll);
        }