示例#1
0
        public bool ImportStudents(string excelFilePath, string companyId, string loggedUserId)
        {
            var dt         = GetDataTableFromExcelSheat(excelFilePath);
            var dbFilePath = GetCompanyDbFilePath(companyId);

            return(_systemDb.BulkInsertStudents(dt, companyId, loggedUserId, dbFilePath));
        }