public async Task <IActionResult> Delete(int answerId)
 {
     return(Ok(await _answerService.DeleteByIdAsync(answerId)));
 }