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);
        }