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