using Learun.Util; using System; using System.Data; using System.Collections.Generic; namespace Learun.Application.TwoDevelopment.EducationalAdministration { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创 建:超级管理员 /// 日 期:2019-01-29 17:31 /// 描 述:教师信息管理 /// public class EmpInfoBLL : EmpInfoIBLL { private EmpInfoService empInfoService = new EmpInfoService(); #region 获取数据 /// /// 获取页面显示列表数据 /// /// 查询参数 /// public IEnumerable GetPageList(Pagination pagination, string queryJson) { try { return empInfoService.GetPageList(pagination, queryJson); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public IEnumerable GetAllList() { try { return empInfoService.GetAllList(); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } /// /// 获取页面显示列表数据 /// /// 查询参数 /// public IEnumerable GetList(string queryJson) { try { return empInfoService.GetList(queryJson); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public bool GetAny() { try { return empInfoService.GetAny(); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } /// /// 获取EmpInfo表实体数据 /// 主键 /// /// public EmpInfoEntity GetEmpInfoEntity(string keyValue) { try { return empInfoService.GetEmpInfoEntity(keyValue); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public IEnumerable GetEmpInfoEntitiesByName(string name) { try { return empInfoService.GetEmpInfoEntitiesByName(name); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } /// /// 教师年龄比例 /// /// public EmpInfoEntity GetEmpInfoAgeRate() { try { return empInfoService.GetEmpInfoAgeRate(); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } #endregion #region 提交数据 /// /// 生成教师帐号 /// public void GenerateAccout(string empId = null) { try { empInfoService.GenerateAccout(empId); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public void Lock(string keyValue) { try { empInfoService.Lock(keyValue); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public void UnLock(string keyValue) { try { empInfoService.UnLock(keyValue); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } /// /// 删除实体数据 /// 主键 /// /// public void DeleteEntity(string keyValue) { try { empInfoService.DeleteEntity(keyValue); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } /// /// 保存实体数据(新增、修改) /// 主键 /// /// public void SaveEntity(string keyValue, EmpInfoEntity entity) { try { empInfoService.SaveEntity(keyValue, entity); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } /// /// 保存实体数据(新增、修改) /// 主键 /// /// public void SaveEntity(UserInfo userInfo, string keyValue, EmpInfoEntity entity) { try { empInfoService.SaveEntity(userInfo, keyValue, entity); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public void UpdatePhoto(string id, string photo) { try { empInfoService.UpdatePhoto(id, photo); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public void CheckAll() { try { empInfoService.CheckAll(); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public EmpInfoEntity GetEmpInfoEntityByEmpNo(string keyValue) { try { return empInfoService.GetEmpInfoEntityByNo(keyValue); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public EmpInfoEntity GetEmpInfoEntityByIdCardNo(string keyValue) { try { return empInfoService.GetEmpInfoEntityByIdCardNo(keyValue); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public EmpInfoEntity GetEmpInfoEntityByMobile(string mobile) { try { return empInfoService.GetEmpInfoEntityByMobile(mobile); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public List GetEmpInfoEntityByDepartment(string keyValue) { try { return empInfoService.GetEmpInfoEntityByDepartment(keyValue); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public EmpInfoEntity GetEmpInfoEntityById(string keyValue) { try { return empInfoService.GetEmpInfoEntityById(keyValue); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } public void UpdateAccount(string empId = null) { try { empInfoService.UpdateAccount(empId); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } /// /// 保存部门、系部 /// 主键 /// /// public void SaveEditEntity(string keyValue, EmpInfoEntity entity) { try { empInfoService.SaveEditEntity(keyValue, entity); } catch (Exception ex) { if (ex is ExceptionEx) { throw; } else { throw ExceptionEx.ThrowBusinessException(ex); } } } #endregion } }