Exemplo n.º 1
0
        public void AssembleFlatFileWithHeaderAndTrailer(string headerSpecName, string trailerSpecName)
        {
            ApplyFlatFileAssemblerInstruction instruction = new ApplyFlatFileAssemblerInstruction(headerSpecName, trailerSpecName);

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

            base.AddInstruction(instruction);
        }
Exemplo n.º 3
0
        public void AssembleFlatFile()
        {
            ApplyFlatFileAssemblerInstruction instruction = new ApplyFlatFileAssemblerInstruction();

            base.AddInstruction(instruction);
        }