File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Controllers Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 55using AbpCompanyName . AbpProjectName . Authorization ;
66using AbpCompanyName . AbpProjectName . Controllers ;
77using AbpCompanyName . AbpProjectName . MultiTenancy ;
8+ using AbpCompanyName . AbpProjectName . MultiTenancy . Dto ;
89
910namespace AbpCompanyName . AbpProjectName . Web . Controllers
1011{
@@ -20,7 +21,7 @@ public TenantsController(ITenantAppService tenantAppService)
2021
2122 public async Task < ActionResult > Index ( )
2223 {
23- var output = await _tenantAppService . GetAll ( new PagedResultRequestDto { MaxResultCount = int . MaxValue } ) ; // Paging not implemented yet
24+ var output = await _tenantAppService . GetAll ( new PagedTenantResultRequestDto { MaxResultCount = int . MaxValue } ) ; // Paging not implemented yet
2425 return View ( output ) ;
2526 }
2627
You can’t perform that action at this time.
0 commit comments