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.
31 lines
733 B
31 lines
733 B
3 years ago
|
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; }
|
||
|
|
||
|
}
|