public async Task <IdentityClaimTypeDto> UpdateAsync(Guid id, IdentityClaimTypeUpdateDto input) { var entity = await IdentityClaimTypeRepository.GetAsync(id); ObjectMapper.Map(input, entity); return(ObjectMapper.Map <IdentityClaimType, IdentityClaimTypeDto>(await IdenityClaimTypeManager.UpdateAsync(entity))); }
public virtual Task<IdentityClaimTypeDto> UpdateAsync(Guid id, IdentityClaimTypeUpdateDto input) { return ClaimTypeAppService.UpdateAsync(id, input); }