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