Esempio n. 1
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;
 }
Esempio n. 2
0
 public UpdateClaimInsuredVehicleService(IClaimInsuredVehicleRepository claimInsuredVehicleRepository)
 {
     this.claimInsuredVehicleRepository = claimInsuredVehicleRepository;
 }