Beispiel #1
0
        public PageModule(IOptions <GoogleBloggerAppSettings> GoogleBloggerAppSettings,
                          ELanguage Language)
        {
            this.language = Language;
            this.googleBloggerAppSettings = GoogleBloggerAppSettings.Value;

            if (googleBloggerAppSettings.ApiKey == null)
            {
                throw new ArgumentNullException("GoogleBloggerAppSettings is null");
            }
        }
Beispiel #2
0
 public PostModule(IOptions <GoogleBloggerAppSettings> GoogleBloggerAppSettings,
                   ELanguage Language = ELanguage.En)
 {
     this.language = Language;
     this.googleBloggerAppSettings = GoogleBloggerAppSettings.Value;
 }