Example #1
0
 public void AlteraStatusUsuarioFechado(int idUsuario)
 {
     try
     {
         novoUsuario = new AcessoDados.UsuarioAcessoDados();
         novoUsuario.AlterarStatusUsuarioFechado(idUsuario);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message);
     }
 }