示例#1
0
 public CustomerUnitOfWork(CustomerContext context)
 {
     this.context        = context;
     _customerRepository = new CustomerRepository(context);
 }
示例#2
0
 public CustomerRepository(CustomerContext context)
 {
     this.context = context;
 }