public List <CredentialValue> SearchForCredentialValues(CredentialValueSearchOptions searchOptions)
        {
            const string StoredProcedureName = "[LAF].[csp_SearchForCredentialValues]";
            var          parameters          = new
            {
                searchOptions.ApplicationId,
                searchOptions.Urn,
                searchOptions.Value,
                searchOptions.SourceApplicationId
            };

            var foundItems = this.RunQuery <CredentialValue>(StoredProcedureName, parameters).ToList();

            return(foundItems);
        }
 public List <CredentialValue> SearchForCredentialValues(CredentialValueSearchOptions searchOptions)
 {
     return(this.credentialRepository.SearchForCredentialValues(searchOptions));
 }