Skip to content

Commit c10a593

Browse files
V4.3 MVC project build failure. Fixes: #372
1 parent 6fc8872 commit c10a593

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Controllers/TenantsController.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using AbpCompanyName.AbpProjectName.Authorization;
66
using AbpCompanyName.AbpProjectName.Controllers;
77
using AbpCompanyName.AbpProjectName.MultiTenancy;
8+
using AbpCompanyName.AbpProjectName.MultiTenancy.Dto;
89

910
namespace 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

0 commit comments

Comments
 (0)