Example #1
0
        protected async Task SaveAsync(Question question)
        {
            Question    = question;
            ModalIsOpen = false;

            await _questionsService.AddItemAsync(question);

            Questions = await _questionsService.GetAllWithObjectsAsync();
        }