public void CargaMesasGrid()
        {
            try
            {
                List <Entidades.Producto> productos = new List <Entidades.Producto>();
                productos = mesaBLL.ObtenerProductosMesa(mesa);

                if (this.dgvProductosMesa.RowCount > productos.Count)
                {
                    this.dgvProductosMesa.Rows.Clear();
                }
                this.dgvProductosMesa.RowCount = productos.Count;

                int i = 0;

                foreach (var producto in productos)
                {
                    this.dgvProductosMesa.DefaultCellStyle.SelectionBackColor = Color.Silver;//ForestGreen;
                    this.dgvProductosMesa.DefaultCellStyle.SelectionForeColor = Color.Black;
                    this.dgvProductosMesa.SelectionMode = DataGridViewSelectionMode.CellSelect;
                    this.producto = null;
                    this.producto = producto;

                    //this.dgvMesasAsignadas[0, i].Value = this.mesa.idMesa;
                    this.dgvProductosMesa[0, i].Value = this.producto.cantidadProductos;
                    this.dgvProductosMesa[1, i].Value = this.producto.codigo;
                    this.dgvProductosMesa[2, i].Value = this.producto.nombreProducto;
                    this.dgvProductosMesa[3, i].Value = "$" + this.producto.precio;
                    this.dgvProductosMesa[4, i].Value = "$" + this.producto.totalProductos;

                    dgvProductosMesa.Columns[5].Visible = true;
                    i++;
                }
                LblTotalCuenta.Text = productos[0].totalMesa.ToString();
                lblTicket.Text      = productos[0].ticketVenta.ToString();
            }
            catch (Exception ex)
            {
                Utilidades.MuestraErrores(ex.Message);
            }
        }