public async Task ResetTenantSpecificFeatures(EntityDto input) { await TenantManager.ResetAllFeaturesAsync(input.Id); }
public async Task DeleteTenant(EntityDto input) { var tenant = await TenantManager.GetByIdAsync(input.Id); await TenantManager.DeleteAsync(tenant); }
public async Task UpdateTenantFeatures(UpdateTenantFeaturesInput input) { await TenantManager.SetFeatureValuesAsync(input.Id, input.FeatureValues.Select(fv => new NameValue(fv.Name, fv.Value)).ToArray()); }