UpdateProcessSchedule() публичный Метод

public UpdateProcessSchedule ( long scheduleProcessID, string scheduleVersion, System.DateTime lastInstantiated, System.DateTime nextScheduled, string repeatSchedule, string instantiatedUsers ) : bool
scheduleProcessID long
scheduleVersion string
lastInstantiated System.DateTime
nextScheduled System.DateTime
repeatSchedule string
instantiatedUsers string
Результат bool
Пример #1
0
 public bool UpdateProcessSchedule(long scheduleProcessID, string scheduleVersion, DateTime? lastInstantiated, DateTime nextScheduled, string repeatSchedule, string instantiatedUsers)
 {
     bool success = false;
     Atul_v1Data adb = new Atul_v1Data();
     success = adb.UpdateProcessSchedule(scheduleProcessID, scheduleVersion, lastInstantiated, nextScheduled, repeatSchedule, instantiatedUsers);
     return success;
 }