Пример #1
0
        private void Link_detele_reserva_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            FrmGetOneValue formData = new FrmGetOneValue
            {
                Title_form    = "Eliminar Documento Reserva:",
                Title_Textbox = "Introduzca Documento :"
            };

            formData.ShowDialog();
            if (string.IsNullOrEmpty(formData.DataValue))
            {
                return;
            }
            bool result = inimanager.DeleteDocumentReserva(formData.DataValue);

            if (result)
            {
                MessageBox.Show("Operacion con Exito.");
            }
            else
            {
                MessageBox.Show("Ocurrio un error.");
            }
            LOAD_DATA_ROLLS();
        }