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

ExistsWorkItem() 공개 메소드

public ExistsWorkItem ( string id ) : bool
id string
리턴 bool
        public bool ExistsWorkItem(string id)
        {
            return _workItemRepsitory.ExistsWorkItem(id);
        }

Usage Example

예제 #1
0
 public bool ExistsWorkItem(string workItemId)
 {
     return(WorkflowRepository.ExistsWorkItem(workItemId));
 }