using BlazorComponent; using Microsoft.AspNetCore.Components; using TenantManagement.Api.DDD.Application; using TenantManagement.Api.DDD.Contracts.Dtos; namespace TenantManagement.Blazor.Pages; public partial class TenantManagement { private List> _headers = new List> { new () { Text= "租户名称", Align= "start", Sortable= false, Value= nameof(TenantDto.TenantName) } }; private List _desserts = new List { new TenantDto {TenantName=""} }; [Inject] TenantAppService TenantAppService { get; set; } }