Пример #1
0
 public CustomerService(ICustomerRepository customerRepository, ICustomerSessionRepository customerSessionRepository)
 {
     this._customerRepository        = customerRepository;
     this._customerSessionRepository = customerSessionRepository;
 }
Пример #2
0
 public CustomerSessionService(ICustomerSessionRepository iCustomerSessionRepository)
 {
     this._iCustomerSessionRepository = iCustomerSessionRepository;
 }