public DeviceValidationService(
     IConfiguration config,
     IHttpClientFactory http,
     IAuthorizedAppRepository authApp)
 {
     Android = new DeviceValidationAndroidService(config, http);
     Apple   = new DeviceValidationAppleService(config, http);
     AuthApp = authApp;
 }