public Configuration(string token, string dbName, string pathToPlugins, int remindTimeOut)
 {
     Token = new ApiToken(token);
     Db    = new DbInfo(dbName);
     PathToPluginsFolder = new PluginsPath(pathToPlugins);
     RemindTimeOut       = new ReminderTimeOut(remindTimeOut);
 }
 public CommandLoader(PluginsPath plugins, IRepository <VEvent> eventStorage, IRepository <Person> personStorage)
 {
     Plugins       = plugins;
     EventStorage  = eventStorage;
     PersonStorage = personStorage;
 }