Esempio n. 1
0
        public Claim GetOne(string issuerId, string subjectId, string scope, string type, bool meta = true)
        {
            var query = trustDBService.GetClaims(trustDBService.Claims, issuerId, subjectId, scope, type);

            query = trustDBService.GetActiveClaims(query);

            return(trustDBService.AddClaimMeta(query).FirstOrDefault());
        }