예제 #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);
 }
예제 #2
0
 public Configuration(DataProtectionManager protectionManager)
 {
     Local  = new ConfigLocal(protectionManager);
     Remote = new ConfigRemote(protectionManager);
 }