ATUL_v1.ATUL.CreateProcessSchedule C# (CSharp) Method

CreateProcessSchedule() private method

private CreateProcessSchedule ( string ProcessID, string scheduleVersion, string nextScheduled, string repeatSchedule, string instantiatedUsers ) : Schedule
ProcessID string
scheduleVersion string
nextScheduled string
repeatSchedule string
instantiatedUsers string
return Schedule
        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;
        }
ATUL