Example #1
0
        public FileInfo SaveCostcoFA(FAMessageBatch faBatch, IAppSettingsService appSettings)
        {
            string saveFilePath = Path.Combine(appSettings.Costco.Dir.Decrypt.FAs.Path, faBatch.FileName);
            faBatch.ValidateXml();
            faBatch.SaveFile(saveFilePath);

            return new FileInfo(saveFilePath);
        }