Beispiel #1
0
 public OilCardProofAppService(
     ISysDictionaryRepository sysDictionaryRepository,
     IApplicationForBunkerARepository applicationForBunkerARepository,
     IUploadOilCarRoofRelationshipRepository uploadOilCarRoofRelationshipRepository,
     IUploadOilCardRoofRepository uploadOilCardRoofRepository)
 {
     this.sysDictionaryRepository                = sysDictionaryRepository;
     this.applicationForBunkerARepository        = applicationForBunkerARepository;
     this.uploadOilCardRoofRepository            = uploadOilCardRoofRepository;
     this.uploadOilCarRoofRelationshipRepository = uploadOilCarRoofRelationshipRepository;
 }
Beispiel #2
0
 public CarOilAppService(ICarOilRepository carOilRepository,
                         IUploadOilCarRoofRelationshipRepository uploadOilCarRoofRelationshipRepositor,
                         IUploadOilCardRoofRepository uploadOilCardRoofRepository,
                         ICarInfoRepository carInfoRepository,
                         IOilCardRepository oilCardRepository,
                         IApplicationForBunkerBRepository applicationForBunkerBRepository,
                         ISysDictionaryRepository sysDictionaryRepository)
 {
     this._carOilRepository = carOilRepository;
     this._uploadOilCarRoofRelationshipRepository = uploadOilCarRoofRelationshipRepositor;
     this._uploadOilCardRoofRepository            = uploadOilCardRoofRepository;
     this._carInfoRepository = carInfoRepository;
     this._oilCardRepository = oilCardRepository;
     this._applicationForBunkerBRepository = applicationForBunkerBRepository;
     this._sysDictionaryRepository         = sysDictionaryRepository;
 }