Exemplo n.º 1
0
        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);
        }