24 lines
654 B
C#
24 lines
654 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 根据工号获取所在部门信息
|
|
/// </summary>
|
|
/// <param name="eid"></param>
|
|
/// <returns></returns>
|
|
List<Employee_Department_Detail> GetEmployee_Department_Details(int eid);
|
|
|
|
Task<CenterInfo> GetCenterNameAsync(int eid);
|
|
string GetAllDeptName(int eid);
|
|
DepartmentInfo GetAllDeptInfos(int eid);
|
|
string GetEmpoyeeName(int eid);
|
|
}
|
|
}
|