public bool AddTorrent()
 {
     if (openFileService.OpenFileDialog() && folderBrowerService.OpenFolderBrowserDialog())
     {
         return(bitTorrentManager.AddTorrent(openFileService.FileName, folderBrowerService.FolderName));
     }
     return(false);
 }