WhiskWork.Core.WorkflowRepository.GetWorkItems C# (CSharp) Method

GetWorkItems() public method

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

Usage Example

Ejemplo n.º 1
0
 public IEnumerable <WorkItem> GetWorkItems(string path)
 {
     return(WorkflowRepository.GetWorkItems(path));
 }