public USER_CARD_INFO
 (
     string id, string card_holder_name, string card_no, string card_type,
     string street_no, string city, string state, string country, string zip_code
 )
 {
     this.id = id;
     this.card_holder_name = card_holder_name;
     this.card_no          = card_no;
     this.card_type        = card_type;
     this.address          = new USER_ADDRESS_DETAIL(street_no, city, state, country, zip_code);
 }
Esempio n. 2
0
 public USER_SHIPPING_INFO(string resident_name, string street_no, string city, string state, string country, string zip_code, string delivery_instruction, string delivery_date)
 {
     this.delivery_instruction = delivery_instruction;
     this.delivery_date        = delivery_date;
     this.address = new USER_ADDRESS_DETAIL(resident_name, street_no, city, state, country, zip_code);
 }