示例#1
0
 public Customer(CustomerInfo cInfo) : this()
 {
     this.entity = cInfo.Map <CustomerEntity>();
 }
示例#2
0
 public Customer(int id) : this()
 {
     this.entity = customerRepo.GetByKey(id);
 }