Beispiel #1
0
 public async Task ResetTenantSpecificFeatures(EntityRequestInput input)
 {
     await TenantManager.ResetAllFeaturesAsync(input.Id);
 }
Beispiel #2
0
 public async Task UpdateTenantFeatures(UpdateTenantFeaturesInput input)
 {
     await TenantManager.SetFeatureValuesAsync(input.Id, input.FeatureValues.Select(fv => new NameValue(fv.Name, fv.Value)).ToArray());
 }