void SetEvents()
        {
            var categoryNameGesture = new UITapGestureRecognizer(() =>
            {
                _parent.EditExpenseClicked(_expenseId, this);
            });

            this.UserInteractionEnabled = true;
            this.AddGestureRecognizer(categoryNameGesture);
        }