using KonSoft.TenantManagement.Localization; using Volo.Abp.AspNetCore.Mvc; namespace KonSoft.TenantManagement.Controllers; /* Inherit your controllers from this class. */ public abstract class TenantManagementController : AbpControllerBase { protected TenantManagementController() { LocalizationResource = typeof(TenantManagementResource); } }