Ejemplo n.º 1
0
        public void ShowClickCommandUpdate(ClickCommand command)
        {
            CommandCreate commandCreateWindow = new CommandCreate(command);

            commandCreateWindow.Show();
        }
Ejemplo n.º 2
0
        public void ShowSaveCommandUpdate(SaveCommand command)
        {
            CommandCreate commandCreateWindow = new CommandCreate(command);

            commandCreateWindow.Show();
        }
Ejemplo n.º 3
0
        public void ShowCommandCreate(CommandCreator creator)
        {
            CommandCreate commandCreateWindow = new CommandCreate(creator);

            commandCreateWindow.Show();
        }