//取得人员部门 public Bill_Departments GetDept() { return(depDal.GetDeptByCode(users.UserDept)); }
/// <summary> /// 获得部门 /// </summary> /// <param name="deptCode"></param> /// <returns></returns> public Bill_Departments GetDeptByCode(string deptCode) { return(deptDal.GetDeptByCode(deptCode)); }
public DepartmentManager(string deptCode) { dept = deptDal.GetDeptByCode(deptCode); }