public CriarPedidoPageViewModel(INavigationService navigationService) : base(navigationService)
        {
            Title = "Cadastrar pedido";

            CadastrarCommand = new Command(async() =>
            {
                ValorMaoDeObra.Replace(",", ".");
                ValorPecas.Replace(",", ".");

                double valorMaoDeObra = double.Parse(ValorMaoDeObra);
                double valorPecas     = double.Parse(ValorPecas);

                var pedido = new Pedido()
                {
                    TipoDeServicoId = SelectedItem.Key,
                    VeiculoId       = VeiculoId,
                    ValorMaoDeObra  = valorMaoDeObra,
                    ValorPecas      = valorPecas,
                    SLA             = SelectedSLAItem.Value
                };

                try
                {
                    await PedidoService.Cadastrar(pedido);
                }
                catch
                {
                    await navigationService.NavigateAsync("MenuPage");
                }
            });
        }