public static string GetValue(this IAppConfigurationRoot appConfig, string key, string tenant, string defaultValue)
 {
     return(appConfig.GetValue <string>(key, tenant, defaultValue));
 }