using System; using System.Collections.Generic; using System.Linq; using System.Security.Principal; using System.Web; using VueWebApi.DLL.DAL; using VueWebApi.Models; using VueWebApi.Tools; namespace VueWebApi.DLL.BLL { public class ExcelCheckBLL { #region【Excel导入模板验证】 public static ToMessage ExcelCheck(string fileCode, string savePath) { return ExcelCheckDAL.ExcelCheck(fileCode, savePath); } #endregion #region[Excel导入数据验证] public static List ExcelCheckData(string fileCode, string savePath, out string stuCode, out string message, out int count) { return ExcelCheckDAL.ExcelCheckData(fileCode, savePath, out stuCode, out message, out count); } #endregion #region[Excel导入数据] public static ToMessage ExcelImportSubmit(string fileCode, string savePath, string username) { return ExcelCheckDAL.ExcelImportSubmit(fileCode, savePath, username); } #endregion } }