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

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

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

            return(coll);
        }