Exemplo n.º 1
0
 public Address( String Nick, String Line1, String Line2, String City, State State, String ZIP )
     : this()
 {
     this.Nick = Nick;
     this.Line1 = Line1;
     this.Line2 = Line2;
     this.City = City;
     this.State = State;
     this.ZIP = ZIP;
 }
Exemplo n.º 2
0
 public AddressInput( Guid RID, string Nick, string Line1, string Line2, string City, State State, String ZIP )
 {
     this.RID = RID;
     this.Nick = Nick;
     this.Line1 = Line1;
     this.Line2 = Line2;
     this.City = City;
     this.StateID = State.RID;
     this.ZIP = ZIP;
 }
Exemplo n.º 3
0
 public Address( Guid ID, String Nick, String Line1, String Line2, String City, State State, String ZIP, Profile Profile )
     : this()
 {
     this.RID = ID;
     this.Nick = Nick;
     this.Line1 = Line1;
     this.Line2 = Line2;
     this.City = City;
     this.State = State;
     this.ZIP = ZIP;
     this.Profile = Profile;
 }