/// <summary>
        /// Import the given surveys into the DB
        /// </summary>
        public void ImportSurveys(NSurveyForm importSurveys, int userId, int folderId)
        {
            ISurvey survey = SurveyFactory.Create();

            this.TurnOverPrimaryKeys(importSurveys);
            survey.ImportSurveys(importSurveys, userId, folderId);
        }