using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hg.Core.Domain.Impl { public interface IEmployeeDomain : IScopedDependency { /// /// 根据工号获取所在部门信息 /// /// /// List GetEmployee_Department_Details(int eid); Task GetCenterNameAsync(int eid); string GetAllDeptName(int eid); DepartmentInfo GetAllDeptInfos(int eid); string GetEmpoyeeName(int eid); } }