gov.va.medora.mdo.dao.vista.VistaUserDao.buildHasSecurityKeyRequest C# (CSharp) Method

buildHasSecurityKeyRequest() private method

private buildHasSecurityKeyRequest ( string duz, string key ) : MdoQuery
duz string
key string
return gov.va.medora.mdo.MdoQuery
        internal MdoQuery buildHasSecurityKeyRequest(string duz, string key)
        {
            VistaQuery vq = new VistaQuery("ORWU NPHASKEY");
            vq.addParameter(vq.LITERAL, duz);
            vq.addParameter(vq.LITERAL, key);
            return vq;
        }
VistaUserDao