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

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

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

            return(coll);
        }