Esempio n. 1
0
        public RemComplicacioneCollection FetchByQuery(Query qry)
        {
            RemComplicacioneCollection coll = new RemComplicacioneCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 2
0
        public RemComplicacioneCollection FetchAll()
        {
            RemComplicacioneCollection coll = new RemComplicacioneCollection();
            Query qry = new Query(RemComplicacione.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Esempio n. 3
0
        public RemComplicacioneCollection FetchByID(object IdComplicaciones)
        {
            RemComplicacioneCollection coll = new RemComplicacioneCollection().Where("idComplicaciones", IdComplicaciones).Load();

            return(coll);
        }