private void LongPressingGesture(object sender, MR.Gestures.LongPressEventArgs e)
        {
            ArticleViewModel articleViewModel = (ArticleViewModel)BindingContext;

            CellGestures.LongPressingGesture(_stateController, articleViewModel);
        }
        private void TappedGesture(object sender, MR.Gestures.TapEventArgs e)
        {
            ArticleViewModel articleViewModel = (ArticleViewModel)BindingContext;

            CellGestures.TappedGesture(_stateController, articleViewModel);
        }