public void Excluir(int abastecimentoDto)
        {
            try
            {
                if (abastecimentoDto <= 0)
                {
                    throw new Exception("O campo Código não pode ser zero ou negativo.");
                }

                _abastecimento.Excluir(abastecimentoDto);
            }
            catch (Exception ex)
            {
                throw new Exception("BLL: " + ex.Message);
            }
        }