Ejemplo n.º 1
0
        public LabSolicitudScreeningEstadoCollection FetchByQuery(Query qry)
        {
            LabSolicitudScreeningEstadoCollection coll = new LabSolicitudScreeningEstadoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 2
0
        public LabSolicitudScreeningEstadoCollection FetchAll()
        {
            LabSolicitudScreeningEstadoCollection coll = new LabSolicitudScreeningEstadoCollection();
            Query qry = new Query(LabSolicitudScreeningEstado.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Ejemplo n.º 3
0
        public LabSolicitudScreeningEstadoCollection FetchByID(object Id)
        {
            LabSolicitudScreeningEstadoCollection coll = new LabSolicitudScreeningEstadoCollection().Where("id", Id).Load();

            return(coll);
        }