Beispiel #1
0
        protected override async Task OnInitializedAsync()
        {
            var result = await ProductGateway.GetProductsWithIdNameDescriptionAndMicroName();

            if (result.IsValid)
            {
                Products = result.Success;
            }

            IsValid = result.IsValid;
        }