ATUL_v1.ATUL.GetProcessScheduleByProcessID C# (CSharp) Метод

GetProcessScheduleByProcessID() приватный Метод

private GetProcessScheduleByProcessID ( string ProcessID ) : Schedule
ProcessID string
Результат Schedule
        public Schedule GetProcessScheduleByProcessID(string ProcessID)
        {
            Schedule s;
            long AtulProcessID = Convert.ToInt64(ProcessID);
            AtulBusinessLogic adb = new AtulBusinessLogic();
            s = adb.GetProcessScheduleByProcessID(AtulProcessID);
            return s;
        }
ATUL