Exemple #1
0
        public async Task <IdentityResource> GetDetails(string name)
        {
            var irs = await _identityResourceRepository.GetDetails(name);

            return(irs.ToModel());
        }
 public Task <IdentityResource> GetDetails(string name)
 {
     return(_identityResourceRepository.GetDetails(name));
 }