Exemplo n.º 1
0
        public bool UploadCostcoFA(string fileName, IAppSettingsService appSettings)
        {
            string encryptedFilePath = Path.Combine(appSettings.Costco.Dir.Encrypt.FAs.Path, fileName);

            CostcoCHFtp costcoFtp = new CostcoCHFtp();
            return costcoFtp.UploadFA(encryptedFilePath);
        }
Exemplo n.º 2
0
        public List <IFTPfileInfo> GetCostcoOrders()
        {
            CostcoCHFtp         costcoFtp = new CostcoCHFtp();
            List <IFTPfileInfo> orders    = costcoFtp.GetFtpOrders();

            return(orders);
        }
Exemplo n.º 3
0
        public bool UploadCostcoConfirm(string fileName, IAppSettingsService appSettings)
        {
            string encryptedFilePath = Path.Combine(appSettings.Costco.Dir.Encrypt.Confirms.Path, fileName);

            CostcoCHFtp costcoFtp = new CostcoCHFtp();

            return(costcoFtp.UploadConfirm(encryptedFilePath));
        }
Exemplo n.º 4
0
        public FileInfo DownloadCostoOrder(string fileName, IAppSettingsService appSettings)
        {
            string encryptedFilePath = Path.Combine(appSettings.Costco.Dir.Encrypt.Orders.Path, fileName);

            CostcoCHFtp costcoFtp = new CostcoCHFtp();
            costcoFtp.DownloadOrder(fileName, encryptedFilePath, true);

            return new FileInfo(encryptedFilePath);
        }
Exemplo n.º 5
0
        public FileInfo DownloadCostoOrder(string fileName, IAppSettingsService appSettings)
        {
            string encryptedFilePath = Path.Combine(appSettings.Costco.Dir.Encrypt.Orders.Path, fileName);

            CostcoCHFtp costcoFtp = new CostcoCHFtp();

            costcoFtp.DownloadOrder(fileName, encryptedFilePath, true);

            return(new FileInfo(encryptedFilePath));
        }
Exemplo n.º 6
0
 public List<IFTPfileInfo> GetCostcoOrders()
 {
     CostcoCHFtp costcoFtp = new CostcoCHFtp();
     List<IFTPfileInfo> orders = costcoFtp.GetFtpOrders();
     return orders;
 }