Esempio n. 1
0
        public void Alterar(clsMotoristasDto Motoristas)
        {
            _motoristaDal = new clsMotoristasDal();
            try
            {
                if (Motoristas.Nome.ToUpper() != "" || Motoristas.NumCNH.ToUpper() != "" || Motoristas.TipoCNH.ToUpper() != "" || Motoristas.ValidadeCNH.ToString() != "")
                {
                    _motoristaDal.Alterar(Motoristas);
                }
                else
                {
                    throw new Exception("PREENCHIMENTO INCORRETO");
                }
            }

            catch (Exception)
            {
                throw;
            }
        }
Esempio n. 2
0
        public void Excluir(int IdMotorista)
        {
            _motoristaDal = new clsMotoristasDal();
            try
            {
                if (IdMotorista > 0)
                {
                    _motoristaDal.Excluir(IdMotorista);
                }
                else
                {
                    throw new Exception("PREENCHIMENTO INCORRETO");
                }
            }

            catch (Exception)
            {
                throw;
            }
        }
Esempio n. 3
0
        public List <clsMotoristasDto> ObterDados2(int tipo, String filtro)
        {
            clsMotoristasDal _motoristaDal = new clsMotoristasDal();

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

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

            catch (Exception)
            {
                throw;
            }
        }
Esempio n. 4
0
        public List <clsMotoristasDto> obterDados(int tipo, String filtro)
        {
            try
            {
                clsMotoristasDal _motoristasDal = new clsMotoristasDal();

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

                throw;
            }
        }