BinaryStudio.TaskManager.Logic.Core.HumanTaskRepository.GetAllTasksForUserInProject C# (CSharp) 메소드

GetAllTasksForUserInProject() 공개 메소드

public GetAllTasksForUserInProject ( int projectId, int userId ) : IEnumerable
projectId int
userId int
리턴 IEnumerable
        public IEnumerable<HumanTask> GetAllTasksForUserInProject(int projectId, int userId)
        {
            return this.dataBaseContext.HumanTasks.Where(x => x.ProjectId == projectId && x.AssigneeId == userId);
        }