Exemple #1
0
        public void AssembleFlatFileWithHeaderAndTrailer(string headerSpecName, string trailerSpecName)
        {
            ApplyFlatFileAssemblerInstruction instruction = new ApplyFlatFileAssemblerInstruction(headerSpecName, trailerSpecName);

            base.AddInstruction(instruction);
        }
Exemple #2
0
        public void AssembleFlatFileWithTrailer(string trailerSpecName)
        {
            ApplyFlatFileAssemblerInstruction instruction = new ApplyFlatFileAssemblerInstruction(trailerSpecName: trailerSpecName);

            base.AddInstruction(instruction);
        }
Exemple #3
0
        public void AssembleFlatFile()
        {
            ApplyFlatFileAssemblerInstruction instruction = new ApplyFlatFileAssemblerInstruction();

            base.AddInstruction(instruction);
        }