Example #1
0
        public void Alterar(clsPecasDto Peca)
        {
            _pecaDal = new clsPecasDal();
            try
            {
                if (Peca.Marca.ToUpper() != "" || Peca.Pecas.ToUpper() != "" || Peca.Valor.ToString() != "" || Peca.OBS.ToUpper() != "")

                {
                    _pecaDal.Alterar(Peca);
                }
                else
                {
                    throw new Exception("PREENCHIMENTO INCORRETO");
                }
            }

            catch (Exception)
            {
                throw;
            }
        }
Example #2
0
        public List <clsPecasDto> ObterDados(int tipo, String filtro)
        {
            clsPecasDal _pecaDal = new clsPecasDal();

            try
            {
                if ((tipo == 0) || (tipo == 1))
                {
                    return(_pecaDal.obterDados(tipo, filtro));
                }

                else
                {
                    throw new Exception("A informação do Tipo para a consulta não foi fornecedida!");
                }
            }

            catch (Exception)
            {
                throw;
            }
        }
Example #3
0
        public void Excluir(int Peca)
        {
            _pecaDal = new clsPecasDal();

            try
            {
                if (Peca > 0)

                {
                    _pecaDal.Excluir(Peca);
                }
                else
                {
                    throw new Exception("PREENCHIMENTO INCORRETO");
                }
            }

            catch (Exception)
            {
                throw;
            }
        }
Example #4
0
        public List <clsPecasDto> obterDados(int tipo, String filtro)
        {
            clsPecasDal _pecaDal = new clsPecasDal();

            try
            {
                if (tipo == 0 || tipo == 1)
                {
                    return(_pecaDal.obterDados(tipo, filtro));
                }
                else
                {
                    throw new Exception("Não foi possivel realizar a busca");
                }
            }
            catch (Exception)
            {
                return(null);

                throw;
            }
        }