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