public ClaimThirdInsuredVehicleRepository(
     ApplicationDbContext applicationDbContext,
     IClaimMapper claimMapper)
 {
     this.applicationDbContext = applicationDbContext;
     this.claimMapper          = claimMapper;
 }
Пример #2
0
 public ClaimAdressRepository(
     ApplicationDbContext applicationDbContext,
     IClaimMapper claimMapper)
 {
     this.applicationDbContext = applicationDbContext;
     this.claimMapper          = claimMapper;
 }
Пример #3
0
 public ClaimRepository(
     ApplicationDbContext applicationDbContext,
     IClaimMapper claimMapper,
     IClaimThirdInsuredVehicleRepository claimThirdInsuredVehicleRepository,
     IClaimThirdInsuredPersonRepository claimThirdInsuredPersonRepository,
     IClaimInsuredVehicleRepository claimInsuredVehicleRepository,
     IClaimInsuredPersonRepository claimInsuredPersonRepository,
     IClaimAdressRepository claimAdressRepository,
     IClaimFileRepository claimFileRepository)
 {
     this.applicationDbContext = applicationDbContext;
     this.claimMapper          = claimMapper;
     this.claimThirdInsuredVehicleRepository = claimThirdInsuredVehicleRepository;
     this.claimThirdInsuredPersonRepository  = claimThirdInsuredPersonRepository;
     this.claimInsuredVehicleRepository      = claimInsuredVehicleRepository;
     this.claimInsuredPersonRepository       = claimInsuredPersonRepository;
     this.claimAdressRepository = claimAdressRepository;
     this.claimFileRepository   = claimFileRepository;
 }