public SyncPromptController(WindowController parent, Transfer transfer, SessionPool source, SessionPool destination)
     : base(parent, transfer, source, destination)
 {
     TransferPromptModel = new SyncPromptModel(this, source, destination, Transfer);
 }
Exemplo n.º 2
0
 public override TransferAction prompt()
 {
     TransferPromptModel = new SyncPromptModel(this, Transfer);
     Action = TransferAction.ACTION_OVERWRITE;
     return base.prompt();
 }