public DownloadPromptController(WindowController parent, Transfer transfer, SessionPool source, SessionPool destination)
     : base(parent, transfer, source, destination)
 {
     TransferPromptModel = new DownloadPromptModel(this, source, destination, Transfer);
 }
 public override TransferAction prompt()
 {
     TransferPromptModel = new DownloadPromptModel(this, Transfer);
     return base.prompt();
 }
 public override TransferAction prompt()
 {
     TransferPromptModel = new DownloadPromptModel(this, Transfer);
     return(base.prompt());
 }