public override UITableViewRowAction[] EditActionsForRow(UITableView tableView, NSIndexPath indexPath)
        {
            var delete = UITableViewRowAction.Create(UITableViewRowActionStyle.Destructive, "X", (arg1, arg2) =>
            {
                _customListView.NotifyDeleteItemSelected(indexPath.Section);
            });

            var reduce = UITableViewRowAction.Create(UITableViewRowActionStyle.Normal, "-1", (arg1, arg2) =>
            {
                _customListView.NotifyReduceQuantitySelected(indexPath.Section);
            });

            reduce.BackgroundColor = UIColor.FromRGB(95, 95, 95);
            delete.BackgroundColor = UIColor.Red;
            return(new UITableViewRowAction[] { delete, reduce });
        }