BinaryStudio.TaskManager.Logic.Core.TaskProcessor.GetAllClosedTasksForProject C# (CSharp) Метод

GetAllClosedTasksForProject() публичный Метод

The get all closed tasks for project.
public GetAllClosedTasksForProject ( int projectId ) : IEnumerable
projectId int /// The project id. ///
Результат IEnumerable
        public IEnumerable<HumanTask> GetAllClosedTasksForProject(int projectId)
        {
            var tasks = this.humanTaskRepository.GetAllTasksInProject(projectId);
            var openTasks = tasks.Where(x => x.Closed != (DateTime?)null);
            return openTasks;
        }