Exemplo n.º 1
0
 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);
 }
Exemplo n.º 2
0
 public CommandLoader(PluginsPath plugins, IRepository <VEvent> eventStorage, IRepository <Person> personStorage)
 {
     Plugins       = plugins;
     EventStorage  = eventStorage;
     PersonStorage = personStorage;
 }