示例#1
0
        public PnEvaluadoreCollection FetchByQuery(Query qry)
        {
            PnEvaluadoreCollection coll = new PnEvaluadoreCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#2
0
        public PnEvaluadoreCollection FetchAll()
        {
            PnEvaluadoreCollection coll = new PnEvaluadoreCollection();
            Query qry = new Query(PnEvaluadore.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#3
0
        public PnEvaluadoreCollection FetchByID(object IdEvaluador)
        {
            PnEvaluadoreCollection coll = new PnEvaluadoreCollection().Where("id_evaluador", IdEvaluador).Load();

            return(coll);
        }