예제 #1
0
        public IList <OneSpanSign.Sdk.DelegationUser> GetDelegates(string senderId)
        {
            IList <OneSpanSign.Sdk.DelegationUser> result             = new List <OneSpanSign.Sdk.DelegationUser>();
            IList <OneSpanSign.API.DelegationUser> apiDelegationUsers = apiClient.GetDelegates(senderId);

            foreach (OneSpanSign.API.DelegationUser delegationUser in apiDelegationUsers)
            {
                result.Add(new DelegationUserConverter(delegationUser).ToSDKDelegationUser());
            }
            return(result);
        }
예제 #2
0
        public IList <Silanis.ESL.SDK.DelegationUser> GetDelegates(string senderId)
        {
            IList <Silanis.ESL.SDK.DelegationUser> result             = new List <Silanis.ESL.SDK.DelegationUser>();
            IList <Silanis.ESL.API.DelegationUser> apiDelegationUsers = apiClient.GetDelegates(senderId);

            foreach (Silanis.ESL.API.DelegationUser delegationUser in apiDelegationUsers)
            {
                result.Add(new DelegationUserConverter(delegationUser).ToSDKDelegationUser());
            }
            return(result);
        }