using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Threading.Tasks; using VueWebCoreApi.DLL.DAL; using VueWebCoreApi.Models; using VueWebCoreApi.Tools; namespace VueWebCoreApi.DLL.BLL { public class ExcelCheckBLL { #region【Excel导入模板验证】 public static ToMessage ExcelCheck(string fileCode, List dataTable) { return ExcelCheckDAL.ExcelCheck(fileCode, dataTable); } #endregion #region[Excel导入数据验证] public static List ExcelCheckData(string fileCode, List dataTable, out string stuCode, out string message, out int count) { return ExcelCheckDAL.ExcelCheckData(fileCode, dataTable, out stuCode, out message, out count); } #endregion #region[Excel导入数据] public static ToMessage ExcelImportSubmit(string FileCode, List dataTable, User us) { return ExcelCheckDAL.ExcelImportSubmit(FileCode, dataTable, us); } #endregion } }