BinaryStudio.TaskManager.Logic.Core.ConnectionProvider.GetProjectConnections C# (CSharp) Method

GetProjectConnections() public method

public GetProjectConnections ( int projectId ) : IEnumerable
projectId int
return IEnumerable
        public IEnumerable<ClientConnection> GetProjectConnections(int projectId)
        {
            return SignalRClients.Connections.Where(it => it.ProjectId == projectId);
        }