public CustomerService(ICustomerRepository customerRepository, ICustomerSessionRepository customerSessionRepository)
 {
     this._customerRepository        = customerRepository;
     this._customerSessionRepository = customerSessionRepository;
 }
Esempio n. 2
0
 public CustomerSessionService(ICustomerSessionRepository iCustomerSessionRepository)
 {
     this._iCustomerSessionRepository = iCustomerSessionRepository;
 }