private void Create()
 {
     Command = new ProductCategoryCommand(textBox1.Text);
     CreateHandler.Trigger(Command);
 }
예제 #2
0
 public void Trigger(ProductCategoryCommand command)
 {
     Creator.Create(command.GetName);
 }