protected override async Task OnInitializedAsync()
        {
            OriginCountry = await CountryModel.GetDetails(Origin);

            DestinyCountry = await CountryModel.GetDetails(Destiny);

            Route = await CountryModel.GetRoute(Origin, Destiny);
        }
 protected override async Task OnInitializedAsync()
 {
     this.Country = await CountryModel.GetDetails(Name);
 }