コード例 #1
0
ファイル: Customer.cs プロジェクト: jackyzhou/ZSharp
 public Customer(CustomerInfo cInfo) : this()
 {
     this.entity = cInfo.Map <CustomerEntity>();
 }
コード例 #2
0
ファイル: Customer.cs プロジェクト: jackyzhou/ZSharp
 public Customer(int id) : this()
 {
     this.entity = customerRepo.GetByKey(id);
 }