コード例 #1
0
ファイル: Vehicle.cs プロジェクト: nedernasser/reply-api
 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;
 }