ATUL_v1.ATUL.CreateProcessSchedule C# (CSharp) 메소드

CreateProcessSchedule() 개인적인 메소드

private CreateProcessSchedule ( string ProcessID, string scheduleVersion, string nextScheduled, string repeatSchedule, string instantiatedUsers ) : Schedule
ProcessID string
scheduleVersion string
nextScheduled string
repeatSchedule string
instantiatedUsers string
리턴 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