public CustomerBindings(
     ScenarioContext context,
     CustomerMapper mapper,
     SharedCustomer sharedCustomer)
 {
     _context        = context;
     _mapper         = mapper;
     _sharedCustomer = sharedCustomer;
 }
Example #2
0
 public CustomerMapper(SharedCustomer sharedCustomer)
 {
     _sharedCustomer = sharedCustomer;
 }