public virtual async Task SetEntityTagsAsync(EntityTagSetDto input)
 {
     await RequestAsync(nameof(SetEntityTagsAsync), new ClientProxyRequestTypeValue
     {
         { typeof(EntityTagSetDto), input }
     });
 }
Пример #2
0
    public virtual async Task SetEntityTagsAsync(EntityTagSetDto input)
    {
        var definition = await TagDefinitionStore.GetAsync(input.EntityType);

        await CheckAnyOfPoliciesAsync(definition.UpdatePolicies);

        await EntityTagManager.SetEntityTagsAsync(input.EntityType, input.EntityId, input.Tags);
    }
Пример #3
0
 public Task SetEntityTagsAsync(EntityTagSetDto input)
 {
     return(EntityTagAdminAppService.SetEntityTagsAsync(input));
 }