예제 #1
0
 public CustomerService(ICustomerRepository customerRepository, ICustomerSessionRepository customerSessionRepository)
 {
     this._customerRepository        = customerRepository;
     this._customerSessionRepository = customerSessionRepository;
 }
예제 #2
0
 public CustomerSessionService(ICustomerSessionRepository iCustomerSessionRepository)
 {
     this._iCustomerSessionRepository = iCustomerSessionRepository;
 }