WhiskWork.Core.MemoryWorkItemRepository.GetWorkItems C# (CSharp) 메소드

GetWorkItems() 공개 메소드

public GetWorkItems ( string path ) : IEnumerable
path string
리턴 IEnumerable
        public IEnumerable<WorkItem> GetWorkItems(string path)
        {
            return _workItems.Values.Where(wi => wi.Path == path).ToList();
        }