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