protected void ButtonGuardarEditar_Click(object sender, EventArgs e)
        {
            Pago    pago;
            PagoBLL pagoBLL = new PagoBLL();

            try
            {
                pago = new Pago();

                pago.IdPago       = Convert.ToInt32(TextBoxID.Text);
                pago.DescripcionP = TextBoxDescripcion.Text;
                pago.Estado       = true;

                pagoBLL.editarPago(pago);

                mostrar();
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }