/// <summary>
 /// Url Normalization Service
 /// </summary>
 public UrlNormalizationService(IRedirectUrlFinderService locationFinder)
 {
     _locationFinder = locationFinder ?? throw new ArgumentNullException(nameof(locationFinder));
 }
 public RedirectUrlFinderServiceController(IRedirectUrlFinderService redirectUrlFinderService)
 {
     _redirectUrlFinderService = redirectUrlFinderService;
 }