You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
733 B
30 lines
733 B
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<DataTableHeader<TenantDto>> _headers = new List<DataTableHeader<TenantDto>>
|
|
{
|
|
new ()
|
|
{
|
|
Text= "租户名称",
|
|
Align= "start",
|
|
Sortable= false,
|
|
Value= nameof(TenantDto.TenantName)
|
|
}
|
|
};
|
|
|
|
private List<TenantDto> _desserts = new List<TenantDto>
|
|
{
|
|
new TenantDto {TenantName=""}
|
|
};
|
|
|
|
|
|
[Inject]
|
|
TenantAppService TenantAppService { get; set; }
|
|
|
|
}
|
|
|