Ejemplo n.º 1
0
 public Office2013()
 {
     _tools            = new OfficeTools();
     _installUninstall = new InstUninst();
     _source           = _tools.Paths("ZipFile");
     _proFile          = _tools.Paths("UserProfile");
     _destination      = _tools.Paths("Downloads");
     _setupExe         = _tools.Paths("SetupExe");
     _msgsApps         = new MsgsApps();
 }
Ejemplo n.º 2
0
 public AnyDesk()
 {
     _msgsApps    = new MsgsApps();
     _userProfile = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
     _destination = Path.Combine(_userProfile, "Downloads\\");
 }
Ejemplo n.º 3
0
 public Download(string downloadUrl, string destinationFilePath)
 {
     _downloadUrl         = downloadUrl;
     _destinationFilePath = destinationFilePath;
     _msgsApps            = new MsgsApps();
 }