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

GetWorkItems() 공개 메소드

public GetWorkItems ( string path ) : IEnumerable
path string
리턴 IEnumerable
        public IEnumerable<WorkItem> GetWorkItems(string path)
        {
            return _workItemRepsitory.GetWorkItems(path);
        }

Usage Example

예제 #1
0
 public IEnumerable <WorkItem> GetWorkItems(string path)
 {
     return(WorkflowRepository.GetWorkItems(path));
 }