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 5
5
using AbpCompanyName . AbpProjectName . Authorization ;
6
6
using AbpCompanyName . AbpProjectName . Controllers ;
7
7
using AbpCompanyName . AbpProjectName . MultiTenancy ;
8
+ using AbpCompanyName . AbpProjectName . MultiTenancy . Dto ;
8
9
9
10
namespace AbpCompanyName . AbpProjectName . Web . Controllers
10
11
{
@@ -20,7 +21,7 @@ public TenantsController(ITenantAppService tenantAppService)
20
21
21
22
public async Task < ActionResult > Index ( )
22
23
{
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
24
25
return View ( output ) ;
25
26
}
26
27
You can’t perform that action at this time.
0 commit comments