private void btnAgregar_Servicio_Click(object sender, EventArgs e)
        {
            FrmSERVICIOS FormServicio = new FrmSERVICIOS(new MODELO.SERVICIO(), "A");
            DialogResult dr           = FormServicio.ShowDialog();

            if (dr == System.Windows.Forms.DialogResult.OK)
            {
                ARMA_GRILLA();
            }
        }
        private void btnConsultar_Servicio_Click(object sender, EventArgs e)
        {
            if (dgvSERVICIOS.CurrentRow == null)
            {
                MessageBox.Show("Debe seleccionar un servicio");
                return;
            }
            FrmSERVICIOS FormServicio = new FrmSERVICIOS((MODELO.SERVICIO)dgvSERVICIOS.CurrentRow.DataBoundItem, "C");
            DialogResult dr           = FormServicio.ShowDialog();

            if (dr == System.Windows.Forms.DialogResult.OK)
            {
                ARMA_GRILLA();
            }
        }