Skip to content

Commit

Permalink
V4.3 MVC project build failure. Fixes: #372
Browse files Browse the repository at this point in the history
  • Loading branch information
alirizaadiyahsi committed Dec 20, 2018
1 parent 6fc8872 commit c10a593
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using AbpCompanyName.AbpProjectName.Authorization;
using AbpCompanyName.AbpProjectName.Controllers;
using AbpCompanyName.AbpProjectName.MultiTenancy;
using AbpCompanyName.AbpProjectName.MultiTenancy.Dto;

namespace AbpCompanyName.AbpProjectName.Web.Controllers
{
Expand All @@ -20,7 +21,7 @@ public TenantsController(ITenantAppService tenantAppService)

public async Task<ActionResult> Index()
{
var output = await _tenantAppService.GetAll(new PagedResultRequestDto { MaxResultCount = int.MaxValue }); // Paging not implemented yet
var output = await _tenantAppService.GetAll(new PagedTenantResultRequestDto { MaxResultCount = int.MaxValue }); // Paging not implemented yet
return View(output);
}

Expand Down

0 comments on commit c10a593

Please sign in to comment.