gov.va.medora.mdo.dao.vista.VistaSocSecNum.toHyphenatedString C# (CSharp) Method

toHyphenatedString() public method

public toHyphenatedString ( ) : string
return string
        public override string toHyphenatedString()
        {
            return base.toHyphenatedString() + (isPseudo ? "p" : "");
        }

Usage Example

Example #1
0
 public void TestPseudoSSNValidSSNToHyphenatedString()
 {
     SocSecNum testSsn = new VistaSocSecNum("123456789p");
     Assert.AreEqual("123-45-6789p", testSsn.toHyphenatedString());
 }
All Usage Examples Of gov.va.medora.mdo.dao.vista.VistaSocSecNum::toHyphenatedString