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

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

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