ATUL_v1.ATUL.GetProcessScheduleByID C# (CSharp) Method

GetProcessScheduleByID() private method

private GetProcessScheduleByID ( string ScheduleID ) : Schedule
ScheduleID string
return Schedule
        public Schedule GetProcessScheduleByID(string ScheduleID)
        {
            Schedule s;
            long AtulProcessScheduleID = Convert.ToInt64(ScheduleID);
            AtulBusinessLogic adb = new AtulBusinessLogic();
            s = adb.GetProcessScheduleByID(AtulProcessScheduleID);
            return s;
        }
ATUL