private void CargarBodegasDestino()
 {
     try
     {
         var       sedeDestino      = (HCSoft.Util.Item) this.cmbSucursalDestino.SelectedItem;
         DataTable dtBodegasDestino = new DataTable();
         if (sedeDestino.Value != "-" && sedeDestino.Value != "")
         {
             dtBodegasDestino = new HCSoft.POS.Bodegas().ListarPorSucursal(Int32.Parse(sedeDestino.Value));
         }
         new UI().CargarCombo(dtBodegasDestino, this.cmbBodegaDestino);
     }
     catch (Exception e)
     {
         MessageBox.Show("Se ha provocado un error al  intentar cagar el combo de bodegas destino", "Información",
                         MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     }
 }
        private void  CargarBodegas()
        {
            try
            {
                var       sede  = (HCSoft.Util.Item) this.ComboSede.SelectedItem;
                DataTable datos = new DataTable();
                if (sede.Value != "-" && sede.Value != "")
                {
                    datos = new HCSoft.POS.Bodegas().ListarPorSucursal(Int32.Parse(sede.Value));
                }

                //new HCSoft.UI().CargarCombo(datos, this.ComboBodegas);
            }
            catch (Exception)
            {
                throw;
            }
        }