public LabSolicitudScreeningEstadoCollection FetchByQuery(Query qry)
        {
            LabSolicitudScreeningEstadoCollection coll = new LabSolicitudScreeningEstadoCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
        public LabSolicitudScreeningEstadoCollection FetchAll()
        {
            LabSolicitudScreeningEstadoCollection coll = new LabSolicitudScreeningEstadoCollection();
            Query qry = new Query(LabSolicitudScreeningEstado.Schema);

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

            return(coll);
        }