ATUL_v1.ATUL.DeleteProcessSchedule C# (CSharp) Method

DeleteProcessSchedule() private method

private DeleteProcessSchedule ( string ProcessScheduleID ) : bool
ProcessScheduleID string
return bool
        public bool DeleteProcessSchedule(string ProcessScheduleID)
        {
            bool success = false;
            long AtulProcessScheduleID = Convert.ToInt64(ProcessScheduleID);
            AtulBusinessLogic adb = new AtulBusinessLogic();
            success = adb.DeleteProcessSchedule(AtulProcessScheduleID);
            return success;
        }
ATUL