Beispiel #1
0
        /// <summary>
        /// Run Voter_SelectBy_ContentInspectionId, and return results as a list of VoterRow.
        /// </summary>
        /// <param name="fldContentInspectionId">Value for ContentInspectionId</param>
        /// <returns>A collection of VoterRow.</returns>
        public static List <VoterContract> SelectBy_ContentInspectionIdNow(int fldContentInspectionId
                                                                           )
        {
            var driver = new VoterLogic();

            driver.SelectBy_ContentInspectionId(fldContentInspectionId
                                                );
            return(driver.Results);
        }
Beispiel #2
0
        /// <summary>
        /// Run Voter_SelectBy_ContentInspectionId, and return results as a list of VoterRow.
        /// </summary>
        /// <param name="fldContentInspectionId">Value for ContentInspectionId</param>
        /// <param name="connection">The SqlConnection to use</param>
        /// <param name="transaction">The SqlTransaction to use</param>
        /// <returns>A collection of VoterRow.</returns>
        public static List <VoterContract> SelectBy_ContentInspectionIdNow(int fldContentInspectionId
                                                                           , SqlConnection connection, SqlTransaction transaction)
        {
            var driver = new VoterLogic();

            driver.SelectBy_ContentInspectionId(fldContentInspectionId
                                                , connection, transaction);

            return(driver.Results);
        }