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();
        }