예제 #1
0
 public Vehicle(
     ZurichContext dbContext,
     IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }
예제 #2
0
 public Customer(
     ZurichContext dbContext,
     IMapper mapper)
 {
     _dbContext = dbContext;
     _mapper    = mapper;
 }
예제 #3
0
 public CustomerInsurance(
     SettingConfiguration settingConfiguration,
     ZurichContext dbContext,
     IMapper mapper)
 {
     _settingConfiguration = settingConfiguration;
     _dbContext            = dbContext;
     _mapper = mapper;
 }