WhiskWork.Core.WorkflowRepository.GetWorkItems C# (CSharp) Méthode

GetWorkItems() public méthode

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

Usage Example

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