BinaryStudio.TaskManager.Logic.Core.HumanTaskRepository.GetAllTasksForEmployee C# (CSharp) 메소드

GetAllTasksForEmployee() 공개 메소드

The get all tasks for employee.
public GetAllTasksForEmployee ( int employeeId ) : IList
employeeId int /// The employee id. ///
리턴 IList
        public IList<HumanTask> GetAllTasksForEmployee(int employeeId)
        {
            return this.dataBaseContext.HumanTasks.Where(it => it.AssigneeId == employeeId).ToList();
        }