Exemplo n.º 1
0
 public Customer(Customer _customer)
 {
     this.No = _customer.No;
     this.Name = _customer.Name;
     this.Address = _customer.Address;
     this.Post_Code = _customer.Post_Code;
 }
Exemplo n.º 2
0
 public CustomerViewModel(Customer cust)
 {
     this._cust = cust;
 }