Exemple #1
0
 public virtual async Task DeleteAsync(IdentityResourceGetByIdInputDto identityResourceGetById)
 {
     await IdentityResourceRepository.DeleteAsync(identityResourceGetById.Id);
 }
Exemple #2
0
 public virtual async Task DeleteAsync(IdentityResourceGetByIdInputDto identityResourceGetById)
 {
     await IdentityResourceAppService.DeleteAsync(identityResourceGetById);
 }
Exemple #3
0
        public virtual async Task <IdentityResourceDto> GetAsync(IdentityResourceGetByIdInputDto identityResourceGetById)
        {
            var identityResource = await IdentityResourceRepository.GetAsync(identityResourceGetById.Id);

            return(ObjectMapper.Map <IdentityResource, IdentityResourceDto>(identityResource));
        }
Exemple #4
0
 public virtual async Task <IdentityResourceDto> GetAsync(IdentityResourceGetByIdInputDto identityResourceGetById)
 {
     return(await IdentityResourceAppService.GetAsync(identityResourceGetById));
 }