public bool ExcluirServicosPorOrcamento(int idOrcamento) { retvalor = false; try { oServicoDAO = new ServicoDAO(); retvalor = oServicoDAO.ExcluirServicosPorOrcamento(idOrcamento); } catch (Exception ex) { throw ex; } finally { oServicoDAO = null; } return(retvalor); }