public Comanda(string comanda_id, EstadoComanda estadoComanda, Mesa mesa, EstadoCuenta estadoCuenta, usuario usuarioComanda, string nombreCliente, DateTime fecha) { this.comanda_id = comanda_id; this.estadoComanda = estadoComanda; this.mesa = mesa; this.estadoCuenta = estadoCuenta; this.usuarioComanda = usuarioComanda; this.arrayPagoCuenta = new List <PagoCuenta>(); this.arrayDetalleOrden = new List <ComandaDetalle>(); this.nombreCliente = nombreCliente; this.fecha = fecha; }
private void asignarMesa(string mesa_idp, string nombre_cliente) { Comanda comanda = new Comanda(); comanda.mesa.mesa_id = mesa_idp; comanda.nombreCliente = nombre_cliente; comanda.usuarioComanda = (usuario)Session["usuarioLogueado"]; ComandaLN.Nuevo(comanda); //Selecciona la mesa Entidades.Mesa mesa = MesaLN.SeleccionarMesa(mesa_idp); //Modifica su estado mesa.ocupado = true; //Guarda su nuevo estado en base de datos MesaLN.Modificar(mesa); //Regresa a la pantalla principal Response.Redirect("gestion-mesas.aspx"); }