private void btn_CrearPedido_Click(object sender, RoutedEventArgs e) { PedidoCallCenter pedido = new PedidoCallCenter(); pedido.Show(); this.Close(); }
private void AbrirVentana() { string typeEmpleado = Properties.Settings.Default.EmpleadoType; switch (typeEmpleado) { case "Gerente": Productos productos = new Productos(); productos.Show(); this.Close(); break; case "Administrador BD": AdministradorBd administradorBd = new AdministradorBd(); administradorBd.Show(); this.Close(); break; case "Cajero": ListaPedidoVendedor pedido = new ListaPedidoVendedor(); pedido.Show(); this.Close(); break; case "Call Center": PedidoCallCenter pedidoCallCenter = new PedidoCallCenter(); pedidoCallCenter.Show(); this.Close(); break; case "Cocinero": ListaPedidoCocinero listaPedidoCocinero = new ListaPedidoCocinero(); listaPedidoCocinero.Show(); this.Close(); break; case "Mesero": PedidoMesero pedidoMesero = new PedidoMesero(); pedidoMesero.Show(); this.Close(); break; } }