예제 #1
0
 public Card AddCvn(string value)
 {
     if (this.Cvn == null)
     {
         this.Cvn = new Cvn().AddNumber(value);
     }
     else
     {
         this.Cvn.AddNumber(value);
     }
     return(this);
 }
예제 #2
0
 public Card AddCvnPresenceIndicator(string value)
 {
     if (this.Cvn == null)
     {
         this.Cvn = new Cvn().AddPresenceIndicator(value);
     }
     else
     {
         this.Cvn.AddPresenceIndicator(value);
     }
     return(this);
 }