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

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

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

            return(coll);
        }