Ejemplo n.º 1
0
 public inputLine(outputLine outputLine)
 {
     this.lastName      = outputLine.FamilyName;
     this.firstName     = outputLine.GivenName;
     this.streetAddress = outputLine.Address1Street;
     this.phoneNumber   = outputLine.Phone1Value;
     this.emailAddress  = outputLine.Email1Value;
 }
Ejemplo n.º 2
0
            public outputLine toOutputLine()
            {
                outputLine newLine = new outputLine(this);

                return(newLine);
            }