示例#1
0
 public static string InserirItensOrcamento(int iOrcamento, int iProdutoID)
 {
     try
     {
         NegocioOrcamento negOrcamento = new NegocioOrcamento();
         negOrcamento.InserirItensOrcamento(iOrcamento, iProdutoID);
         return("OK");
     }
     catch (Exception erro)
     {
         return(erro.Message);
     }
 }