private void btnApply_Click(object sender, RoutedEventArgs e) { switch (buttonApply) { case EnumApplyAction.Create: if (ValidarProduto(produtoDTO)) { PreencherProduto(produtoDTO); produtoBLL.Create(produtoDTO); InitialConditionPage(); } break; case EnumApplyAction.Update: if (ValidarProduto(produtoDTO)) { PreencherProduto(produtoDTO); produtoBLL.Update(produtoDTO); InitialConditionPage(); } break; } }