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

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

public GetAllInvitationsToProject ( int projectId ) : IEnumerable
projectId int
Результат IEnumerable
        public IEnumerable<Invitation> GetAllInvitationsToProject(int projectId)
        {
            return this.dataBaseContext.Invitations.Where(x => x.ProjectId == projectId);
        }