Example #1
0
        static void Main(string[] args)
        {
            Controlador controlador = new Controlador();
            CLI         cli         = new CLI(controlador);

            cli.iniciar();
        }
Example #2
0
 public CLI(Controlador controlador)
 {
     this.controlador = controlador;
 }