public void Alterar(ModeloItensVenda modelo)
        {
            if (modelo.VenCod <= 0)
            {
                throw new Exception("O código da venda é obrigatório");
            }
            if (modelo.ItvCod <= 0)
            {
                throw new Exception("O código do item da venda é obrigatório");
            }

            if (modelo.ItvQtde <= 0)
            {
                throw new Exception("A quantidade deve ser maior do que zero");
            }

            if (modelo.ItvValor <= 0)
            {
                throw new Exception("O valor do item deve ser maior do que zero");
            }

            if (modelo.ProCod <= 0)
            {
                throw new Exception("O código do produto é obrigatório");
            }
            DALItensVenda DALobj = new DALItensVenda(conexao);

            DALobj.Alterar(modelo);
        }
Exemple #2
0
        //-------------------------------------------------------------------------------------------------------------------
        public void Alterar(ModeloItensVenda obj)
        {
            //O nome da categoria é obrigatório
            if (obj.itv_qtde == 0)
            {
                throw new Exception("O nome da categoria é obrigatório");
            }

            obj.itv_qtde = obj.itv_qtde;

            //Se tudo está Ok, chama a rotina de inserção.
            DALItensVenda DALobj = new DALItensVenda(new DALConexao(DALDadosDoBanco.stringDeConexao));

            DALobj.Alterar(obj);
        }