private void ObtenerTipoPago()
 {
     this.cboTipoPago.ItemsSource       = _ventaBL.ObtenerTipoPago();
     this.cboTipoPago.DisplayMemberPath = "Nombre";
     this.cboTipoPago.SelectedValuePath = "Id";
     this.cboTipoPago.SelectedIndex     = 0;
 }