public CustomerUnitOfWork(CustomerContext context) { this.context = context; _customerRepository = new CustomerRepository(context); }
public CustomerRepository(CustomerContext context) { this.context = context; }