public async Task CreateQuestionAsync(Question questionModel) { await _context.AddAsync(questionModel); await _context.SaveChangesAsync(); }