public async Task SendHelperRequest()
        {
            if (IsBusy)
            {
                return;
            }

            try
            {
                await ParseAccess.AddRequestedHelper(questionId);
            }
            catch (Exception e)
            {
                Debug.WriteLine(e);
            }
        }