public async Task <ActionResult> SetTenantFeatures(int tenantId)
        {
            var model = await _tenantAppService.GetFeaturesForTenant(tenantId);

            return(View(model));
        }