|
|
|
@ -2,15 +2,14 @@ |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Microsoft.AspNetCore.Mvc; |
|
|
|
using Volo.Abp.Application.Dtos; |
|
|
|
using Volo.Abp.Application.Services; |
|
|
|
using Volo.Abp.DependencyInjection; |
|
|
|
using Volo.Abp.AspNetCore.Mvc; |
|
|
|
|
|
|
|
namespace Volo.Abp.TenantManagement |
|
|
|
{ |
|
|
|
[Controller] |
|
|
|
[RemoteService] |
|
|
|
[Area("multi-tenancy")] |
|
|
|
public class TenantController : ITenantAppService, ITransientDependency //TODO: Throws exception on validation if we inherit from Controller
|
|
|
|
public class TenantController : AbpController, ITenantAppService //TODO: Throws exception on validation if we inherit from Controller
|
|
|
|
{ |
|
|
|
private readonly ITenantAppService _service; |
|
|
|
|
|
|
|
|