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

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

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

            return(coll);
        }