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

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

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