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

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

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

            return(coll);
        }