CreateProcessSchedule() public method

public CreateProcessSchedule ( long ProcessID, string scheduleVersion, System.DateTime nextScheduled, string repeatSchedule, string instantiatedUsers ) : Schedule
ProcessID long
scheduleVersion string
nextScheduled System.DateTime
repeatSchedule string
instantiatedUsers string
return Schedule
Beispiel #1
0
 public Schedule CreateProcessSchedule(string ProcessID, string scheduleVersion, string nextScheduled, string repeatSchedule, string instantiatedUsers)
 {
     Schedule s;
     long AtulProcessID = Convert.ToInt64(ProcessID);
     DateTime NextScheduledDate = DateTime.Parse(nextScheduled);
     AtulBusinessLogic adb = new AtulBusinessLogic();
     s = adb.CreateProcessSchedule(AtulProcessID, scheduleVersion, NextScheduledDate, repeatSchedule, instantiatedUsers);
     return s;
 }