Exemple #1
0
        // Written By James Hibbard
        /// <summary>
        ///     Returns the Question associated with the TakeFiveID
        /// </summary>
        /// <param name="TakeFiveID">A Unique ID from the TakeFive table</param>
        /// <returns>The related Question</returns>
        public static string getTakeFiveQuestion(int TakeFiveID)
        {
            TakeFiveTableAdapter takefiveAdapter = new TakeFiveTableAdapter();
            NuRacingDataSet.TakeFiveDataTable takeFiveTable = takefiveAdapter.GetTakeFive(TakeFiveID);

            if (takeFiveTable.Rows.Count == 0)
            {
                throw new ArgumentException("Take Five record doesn't exist");
            }
            else
            {
                return ((NuRacingDataSet.TakeFiveRow)(takeFiveTable.Rows[0])).TakeFive_Question;
            }
        }
Exemple #2
0
        // Written By James Hibbard
        /// <summary>
        ///     Returns the Question associated with the TakeFiveID
        /// </summary>
        /// <param name="TakeFiveID">A Unique ID from the TakeFive table</param>
        /// <returns>The related Question</returns>
        public static string getTakeFiveQuestion(int TakeFiveID)
        {
            TakeFiveTableAdapter takefiveAdapter = new TakeFiveTableAdapter();

            NuRacingDataSet.TakeFiveDataTable takeFiveTable = takefiveAdapter.GetTakeFive(TakeFiveID);

            if (takeFiveTable.Rows.Count == 0)
            {
                throw new ArgumentException("Take Five record doesn't exist");
            }
            else
            {
                return(((NuRacingDataSet.TakeFiveRow)(takeFiveTable.Rows[0])).TakeFive_Question);
            }
        }