public OutPutResult GetCredentialTypeByUserIdAndId(string userId, string credentialTypeId)
        {
            GetCredentialTypeByUserIdAndIdIGet getCredentialTypeByUserIdAndIdIGet = credentialTypeBusinessServiceMapper.MapGetCredentialTypeByUserIdAndIdIGet(credentialTypeId);
            RestResponse            restResponse            = katavuccolClient.Get(getCredentialTypeByUserIdAndIdIGet);
            CredentialTypeDetailAPI credentialTypeDetailAPI = JsonConvert.DeserializeObject <CredentialTypeDetailAPI>(restResponse.ResponseContent);

            return(new OutPutResult());
        }
        public CredentialTypeMsgEntity GetCredentialTypeById(string credentialTypeId)
        {
            GetCredentialTypeByIdIGet getCredentialTypeByIdIGet = credentialTypeBusinessServiceMapper.MapGetCredentialTypeByIdIGet(credentialTypeId);
            RestResponse            restResponse            = katavuccolClient.Get(getCredentialTypeByIdIGet);
            CredentialTypeDetailAPI credentialTypeDetailAPI = JsonConvert.DeserializeObject <CredentialTypeDetailAPI>(restResponse.ResponseContent);

            throw new NotImplementedException();
        }