public RandomStatusCodeController(RandomValuesForTesting randomValuesForTesting)
 {
     _randomValuesForTesting = randomValuesForTesting;
 }
 public RandomExceptionController(RandomValuesForTesting randomValuesForTesting)
 {
     _randomValuesForTesting = randomValuesForTesting;
 }
 public RandomStatusCodeController(IMetrics metrics, RandomValuesForTesting randomValuesForTesting)
 {
     _metrics = metrics ?? throw new ArgumentNullException(nameof(metrics));
     _randomValuesForTesting = randomValuesForTesting;
 }