private IList <SelectListItem> GetActionList(Guid?processId)
        {
            IList <IActionTypeVO> actionList = CallReportManager.RetrieveActionList(processId);

            Logger.Debug("Search|Action DDL: " + (actionList != null ? actionList : null));

            return((IList <SelectListItem>)
                   CallReportMapper.Map(actionList, typeof(IList <IActionTypeVO>), typeof(IList <SelectListItem>)));
        }