Ejemplo n.º 1
0
 public Configuration(ConfigDTO dto, DataProtectionManager protectionManager, bool runDebug)
 {
     RunDebug        = runDebug;
     ReoccurenceTime = dto.ReoccurenceTime;
     Local           = new ConfigLocal(dto.Local, protectionManager);
     Remote          = new ConfigRemote(dto.Remote, protectionManager);
 }
Ejemplo n.º 2
0
 public Configuration(DataProtectionManager protectionManager)
 {
     Local  = new ConfigLocal(protectionManager);
     Remote = new ConfigRemote(protectionManager);
 }