Beispiel #1
0
        public AprControlNiñoSanoOdontologicoCollection FetchByQuery(Query qry)
        {
            AprControlNiñoSanoOdontologicoCollection coll = new AprControlNiñoSanoOdontologicoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #2
0
        public AprControlNiñoSanoOdontologicoCollection FetchAll()
        {
            AprControlNiñoSanoOdontologicoCollection coll = new AprControlNiñoSanoOdontologicoCollection();
            Query qry = new Query(AprControlNiñoSanoOdontologico.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Beispiel #3
0
        public AprControlNiñoSanoOdontologicoCollection FetchByID(object IdControlOdontologico)
        {
            AprControlNiñoSanoOdontologicoCollection coll = new AprControlNiñoSanoOdontologicoCollection().Where("idControlOdontologico", IdControlOdontologico).Load();

            return(coll);
        }