Esempio n. 1
0
 /// <summary>Static getter for Due Date</summary>
 public static DateTime GetWorkflowDueDate(ICompWorkflow that)
 {
     return(that.GetPropertyValue <DateTime>("WorkflowDueDate"));
 }
Esempio n. 2
0
 /// <summary>Static getter for Current Status Notes</summary>
 public static string GetWorkflowCurrentStatusNotes(ICompWorkflow that)
 {
     return(that.GetPropertyValue <string>("WorkflowCurrentStatusNotes"));
 }
Esempio n. 3
0
 /// <summary>Static getter for Assigned To</summary>
 public static object GetWorkflowAssignedTo(ICompWorkflow that)
 {
     return(that.GetPropertyValue("WorkflowAssignedTo"));
 }
Esempio n. 4
0
 /// <summary>Static getter for Tags</summary>
 public static IEnumerable <string> GetWorkflowTags(ICompWorkflow that)
 {
     return(that.GetPropertyValue <IEnumerable <string> >("WorkflowTags"));
 }
Esempio n. 5
0
 /// <summary>Static getter for References</summary>
 public static IEnumerable <RJP.MultiUrlPicker.Models.Link> GetWorkflowReferences(ICompWorkflow that)
 {
     return(that.GetPropertyValue <IEnumerable <RJP.MultiUrlPicker.Models.Link> >("WorkflowReferences"));
 }
Esempio n. 6
0
 /// <summary>Static getter for Exclude from Workflow Tracking</summary>
 public static bool GetWorkflowExcludeFromTracking(ICompWorkflow that)
 {
     return(that.GetPropertyValue <bool>("WorkflowExcludeFromTracking"));
 }