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

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

The get all tasks for user in project.
public GetAllTasksForUserInProject ( int projectId, int userId ) : IEnumerable
projectId int /// The project id. ///
userId int /// The user id. ///
Результат IEnumerable
        public IEnumerable<HumanTask> GetAllTasksForUserInProject(int projectId, int userId)
        {
            return this.humanTaskRepository.GetAllTasksForUserInProject(projectId, userId);
        }