Esempio n. 1
0
        /// <summary>
        /// Run Candidates_SelectBy_CandidateId, and return results as a list of CandidatesRow.
        /// </summary>
        /// <param name="fldCandidateId">Value for CandidateId</param>
        /// <returns>A collection of CandidatesRow.</returns>
        public static List <CandidatesContract> SelectBy_CandidateIdNow(int fldCandidateId
                                                                        )
        {
            var driver = new CandidatesLogic();

            driver.SelectBy_CandidateId(fldCandidateId
                                        );
            return(driver.Results);
        }
Esempio n. 2
0
        /// <summary>
        /// Run Candidates_SelectBy_CandidateId, and return results as a list of CandidatesRow.
        /// </summary>
        /// <param name="fldCandidateId">Value for CandidateId</param>
        /// <param name="connection">The SqlConnection to use</param>
        /// <param name="transaction">The SqlTransaction to use</param>
        /// <returns>A collection of CandidatesRow.</returns>
        public static List <CandidatesContract> SelectBy_CandidateIdNow(int fldCandidateId
                                                                        , SqlConnection connection, SqlTransaction transaction)
        {
            var driver = new CandidatesLogic();

            driver.SelectBy_CandidateId(fldCandidateId
                                        , connection, transaction);

            return(driver.Results);
        }