CreateScheduledProcessInstance() public method

public CreateScheduledProcessInstance ( long ProcessID, string scheduleVersion ) : bool
ProcessID long
scheduleVersion string
return bool
Beispiel #1
0
 public bool CreateScheduledProcessInstance(long ProcessID, string scheduleVersion)
 {
     bool success = false;
     AtulBusinessLogic adb = new AtulBusinessLogic();
     success = adb.CreateScheduledProcessInstance(ProcessID, scheduleVersion);
     return success;
 }