public void GetFileBySftpSync(string serverId, string source, string destination)
 {
     aServer = serverFactory.GetServer(serverId);
     aServer.GetFileBySftpSync(source, destination);
 }
 public string RunCommandWithResultSync(string serverId, string command)
 {
     aServer = serverFactory.GetServer(serverId);
     return(aServer.RunCommandSync(command));
 }