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

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

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