public async Task <IActionResult> GetRandomJoke()
 {
     return(Ok(await _jokeRepository.GetRandomJoke()));
 }
 public async Task <IActionResult> GetRandomJoke()
 {
     return(Ok(await _jokeProvider.GetRandomJoke()));
 }