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