@page "/google-address-validation" @using DevExpress.Blazor @using TIAMWebApp.Shared.Application.Services @inject GooglePlacesService GooglePlacesService Validate Address

@ValidationMessage

@code { private string Address { get; set; } private string ValidationMessage { get; set; } private async Task ValidateAddress() { ValidationMessage = await GooglePlacesService.ValidateAddressAsync(Address); } }