Exemple #1
0
        public bool ImportQuestions(string excelFilePath, string questionDbFilePath, string loggedUserId, string quizId)
        {
            var dt = GetDataTableFromExcelSheat(excelFilePath);

            return(_systemDb.BulkInsertQuestions(dt, questionDbFilePath, loggedUserId, quizId));
        }