Esempio n. 1
0
 public DownloadFilesActivity(
     Entity context,
     IDataController <ProductDownloads> productDownloadsDataController,
     IDownloadProductFileAsyncDelegate downloadProductFileAsyncDelegate,
     IStatusController statusController) :
     base(statusController)
 {
     this.context = context;
     this.productDownloadsDataController   = productDownloadsDataController;
     this.downloadProductFileAsyncDelegate = downloadProductFileAsyncDelegate;
 }
Esempio n. 2
0
 public DownloadManualUrlFileAsyncDelegate(
     INetworkController networkController,
     IFormatDelegate <string, string> formatUriRemoveSessionDelegate,
     IRoutingController routingController,
     IDownloadFromResponseAsyncDelegate downloadFromResponseAsyncDelegate,
     IDownloadProductFileAsyncDelegate downloadValidationFileAsyncDelegate,
     IStatusController statusController)
 {
     this.networkController = networkController;
     this.formatUriRemoveSessionDelegate = formatUriRemoveSessionDelegate;
     this.routingController = routingController;
     this.downloadFromResponseAsyncDelegate   = downloadFromResponseAsyncDelegate;
     this.downloadValidationFileAsyncDelegate = downloadValidationFileAsyncDelegate;
     this.statusController = statusController;
 }