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

GetAllHistoryForTask() 공개 메소드

The get all history for task.
public GetAllHistoryForTask ( int taskId ) : IList
taskId int /// The task id. ///
리턴 IList
        public IList<HumanTaskHistory> GetAllHistoryForTask(int taskId)
        {
            return this.dataBaseContext.HumanTaskHistories.Where(x => x.Task.Id == taskId).ToList();
        }