public AddressLoader(SalesOrderCustomerObject customer)
 {
     this.customer = customer;
 }
Beispiel #2
0
 public AddressLoader(SalesOrderCustomerObject customer)
 {
     this.customer = customer;
 }
Beispiel #3
0
 public AddressLoader(SalesOrderCustomerObject customer) : base(customer.ServiceProvider)
 {
     this.customer = customer;
     this.customer.StoreIdProperty.Change  += OnCustomerChanged;
     this.customer.PersonIdProperty.Change += OnCustomerChanged;
 }