this._http.get(
`https://aluracar.herokuapp.com/salvarpedido?
carro=${this.carro.nome}
&nome=${this.agendamento.nome}
&preco=${this.agendamento.precoTotal}
&email=${this.agendamento.email}
&endereco=${this.agendamento.endereco}
&dataAgendamento=${this.agendamento.data}`
).toPromise()
.then(() =>
this._alert.setSubTitle('Agendamento feito com sucesso!')
.present()
).catch((err) =>{
this._alert.setSubTitle('Não foi possível realizar agendamento, tente novamente mais tarde!')
.present();
console.log(err);
});