Example #1
0
        public ConTipoPrestacionCollection FetchByQuery(Query qry)
        {
            ConTipoPrestacionCollection coll = new ConTipoPrestacionCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Example #2
0
        public ConTipoPrestacionCollection FetchAll()
        {
            ConTipoPrestacionCollection coll = new ConTipoPrestacionCollection();
            Query qry = new Query(ConTipoPrestacion.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Example #3
0
        public ConTipoPrestacionCollection FetchByID(object IdTipoPrestacion)
        {
            ConTipoPrestacionCollection coll = new ConTipoPrestacionCollection().Where("idTipoPrestacion", IdTipoPrestacion).Load();

            return(coll);
        }