BinaryStudio.TaskManager.Logic.Core.ProjectRepository.GetAllProjectsForTheirCreator C# (CSharp) Метод

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

public GetAllProjectsForTheirCreator ( int userId ) : IEnumerable
userId int
Результат IEnumerable
        public IEnumerable<Project> GetAllProjectsForTheirCreator(int userId)
        {
            return this.dataBaseContext.Projects.Where(x => x.CreatorId == userId).ToList();
        }