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

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

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

            return(coll);
        }