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

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 2
0
        public EmrGlasgowOcularCollection FetchAll()
        {
            EmrGlasgowOcularCollection coll = new EmrGlasgowOcularCollection();
            Query qry = new Query(EmrGlasgowOcular.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
Exemplo n.º 3
0
        public EmrGlasgowOcularCollection FetchByID(object IdGlasgowOcular)
        {
            EmrGlasgowOcularCollection coll = new EmrGlasgowOcularCollection().Where("idGlasgowOcular", IdGlasgowOcular).Load();

            return(coll);
        }