private void btnEditar_Click(object sender, EventArgs e)
        {

            string strServicioFacturadoId = grdData.Selected.Rows[0].Cells["v_FacturacionId"].Value.ToString();

            frmServicioFacturadoEditar frm = new frmServicioFacturadoEditar(strServicioFacturadoId, "Edit");
            frm.ShowDialog();
        }
 private void btnNuevo_Click(object sender, EventArgs e)
 {
     frmServicioFacturadoEditar frm = new frmServicioFacturadoEditar("0", "New");
     frm.ShowDialog();
 }