ATUL_v1.ATUL.UndeleteProcess C# (CSharp) Method

UndeleteProcess() private method

private UndeleteProcess ( string ProcessID, string ModifiedBy ) : bool
ProcessID string
ModifiedBy string
return bool
        public bool UndeleteProcess(string ProcessID, string ModifiedBy)
        {
            bool success = false;
            AtulBusinessLogic adb = new AtulBusinessLogic();
            long AtulProcessID = Convert.ToInt64(ProcessID);
            long ModifiedByID = Convert.ToInt64(ModifiedBy);
            success = adb.UndeleteProcess(AtulProcessID, ModifiedByID);
            return success;
        }
ATUL