/// <summary>
        /// Populates the fields for multiple objects from the columns found in an open reader.
        /// </summary>
        ///
        /// <param name="rdr" type="IDataReader">An object that implements the IDataReader interface</param>
        ///
        /// <returns>Object of ContactMasterTemps</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			1/27/2010 1:13:46 PM		Created function
        /// 
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        internal static ContactMasterTemps PopulateObjectsFromReaderWithCheckingReader(IDataReader rdr, DatabaseHelper oDatabaseHelper, string ConnectionString)
        {
            ContactMasterTemps list = new ContactMasterTemps();

            if (rdr.Read())
            {
                ContactMasterTemp obj = new ContactMasterTemp(ConnectionString);
                PopulateObjectFromReader(obj, rdr,ConnectionString);
                list.Add(obj);
                while (rdr.Read())
                {
                    obj = new ContactMasterTemp(ConnectionString);
                    PopulateObjectFromReader(obj, rdr,ConnectionString);
                    list.Add(obj);
                }
                oDatabaseHelper.Dispose();
                return list;
            }
            else
            {
                oDatabaseHelper.Dispose();
                return null;
            }
        }
        /// <summary>
        /// This method will return an object representing the record matching the primary key information specified.
        /// </summary>
        ///
        /// <param name="pk" type="ContactMasterTempPrimaryKey">Primary Key information based on which data is to be fetched.</param>
        ///
        /// <returns>object of class ContactMasterTemp</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			1/27/2010 1:13:46 PM		Created function
        /// 
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        public static ContactMasterTemp SelectOne(ContactMasterTempPrimaryKey pk, String ConnectionString)
        {
            DatabaseHelper oDatabaseHelper = new DatabaseHelper(ConnectionString);
            bool ExecutionState = false;

            // Pass the values of all key parameters to the stored procedure.
            System.Collections.Specialized.NameValueCollection nvc = pk.GetKeysAndValues();
            foreach (string key in nvc.Keys)
            {
                oDatabaseHelper.AddParameter("@" + key,nvc[key] );
            }
            // The parameter '@ErrorCode' will contain the status after execution of the stored procedure.
            oDatabaseHelper.AddParameter("@ErrorCode", -1, System.Data.ParameterDirection.Output);

            IDataReader dr=oDatabaseHelper.ExecuteReader("sp_ContactMasterTemp_SelectbyPrimaryKey", ref ExecutionState);
            if (dr.Read())
            {
                ContactMasterTemp obj=new ContactMasterTemp(ConnectionString);
                PopulateObjectFromReader(obj,dr,ConnectionString);
                dr.Close();
                oDatabaseHelper.Dispose();
                return obj;
            }
            else
            {
                dr.Close();
                oDatabaseHelper.Dispose();
                return null;
            }
        }
        /// <summary>
        /// Populates the fields for multiple objects from the columns found in an open reader.
        /// </summary>
        ///
        /// <param name="rdr" type="IDataReader">An object that implements the IDataReader interface</param>
        ///
        /// <returns>Object of ContactMasterTemps</returns>
        ///
        /// <remarks>
        ///
        /// <RevisionHistory>
        /// Author				Date			Description
        /// DLGenerator			1/27/2010 1:13:46 PM		Created function
        /// 
        /// </RevisionHistory>
        ///
        /// </remarks>
        ///
        internal static ContactMasterTemps PopulateObjectsFromReader(IDataReader rdr,string ConnectionString)
        {
            ContactMasterTemps list = new ContactMasterTemps();

            while (rdr.Read())
            {
                ContactMasterTemp obj = new ContactMasterTemp(ConnectionString);
                PopulateObjectFromReader(obj,rdr,ConnectionString);
                list.Add(obj);
            }
            return list;
        }