Beispiel #1
0
 public CustomerSignUpResult(int customerId, CustomerSignUpStatus customerSignUpStatus)
 {
     this.CustomerId           = customerId;
     this.CustomerSignUpStatus = customerSignUpStatus;
 }
Beispiel #2
0
 public CustomerSignUpResult(int customerId)
 {
     this.CustomerId      = customerId;
     CustomerSignUpStatus = customerId > 0?CustomerSignUpStatus.Registered:CustomerSignUpStatus.Failed;
 }