Example #1
0
 public CsvViewer(CommandLine.CommandLine cmd, FileIO fio, Ui ui, Formatieren format)
 {
     _cmd = cmd;
     _fio = fio;
     _ui = ui;
     _format = format;
 }
Example #2
0
        static void Main(string[] args)
        {
            // build
            var cmd = new CommandLine.CommandLine();
            var fio = new FileIO();
            var ui = new Ui();

            var format = new Formatieren();

            // bind
            var app = new CsvViewer(cmd, fio, ui, format);

            // run
            app.Run();
        }