public Instance(string settingContainerName) : this()
 {
     _options     = new Options(settingContainerName);
     App          = new AppHelper(_options);
     Notification = new NotificationHelper(_options);
 }
 public Instance(Options options) : this()
 {
     _options     = options;
     App          = new AppHelper(options);
     Notification = new NotificationHelper(options);
 }