private void DeleteZipExecute(Zip zip)
 {
     if (File.Exists(zip.FullPath))
     {
         File.Delete(zip.FullPath);
     }
     //await DatabaseProvider.Instance.DeleteZip(zip);
     this.Zips.Remove(zip);
     this.UpdateIsZipsShown();
 }
 private void SendZipExecute(Zip zip)
 {
     this.sendingFromRecent = true;
     this.PrepareToSendZip(zip.FullPath);
 }