示例#1
0
 public void Modify(string _SSN, string email, MobilePhone mobilePhone, Customer customer, Guid id = default(Guid))
 {
     SSN         = _SSN;
     Email       = email;
     MobilePhone = mobilePhone;
     Customer    = customer;
     Id          = id;
 }
示例#2
0
 public UserProfile(string _SSN, string email, MobilePhone mobilePhone, Customer customer, Guid id = default(Guid))
 {
     Modify(_SSN, email, mobilePhone, customer, id);
 }