GetProcessScheduleByID() public method

public GetProcessScheduleByID ( long ScheduleID ) : Schedule
ScheduleID long
return Schedule
Beispiel #1
0
 public Schedule GetProcessScheduleByID(string ScheduleID)
 {
     Schedule s;
     long AtulProcessScheduleID = Convert.ToInt64(ScheduleID);
     AtulBusinessLogic adb = new AtulBusinessLogic();
     s = adb.GetProcessScheduleByID(AtulProcessScheduleID);
     return s;
 }