private void SyncTotal()
        {
            Inventarios total = new Inventarios();

            try
            {
                if (InventarioBLL.Buscar() != null)
                {
                    InventarioBLL.Actualizar();
                    total = InventarioBLL.Buscar();
                }
                else
                {
                    Inventarios valor = new Inventarios();
                    InventarioBLL.Guardar(valor);
                    InventarioBLL.Actualizar();
                    valor = InventarioBLL.Buscar();
                }
            }
            catch (Exception)
            {
            }
            SyncedTotaltextBox.Text = total.ValorTotalInventario.ToString();
        }