Esempio n. 1
0
 public ScrapFacadeService(
     IScrapApplicationService scrapApplicationService,
     IScrapDomainService scrapDomainService,
     IScrapToScrapDtoMapper scrapDtoMapper,
     IScrapDetailToScrapDetailDtoMapper scrapDetailDtoMapper, IInventoryOperationDomainService inventoryOperationDomainService, IInventoryOperationToInventoryOperationDtoMapper inventoryOperationDtoMapper)
 {
     this.scrapApplicationService = scrapApplicationService;
     this.scrapDomainService = scrapDomainService;
     this.scrapDtoMapper = scrapDtoMapper;
     this.scrapDetailDtoMapper = scrapDetailDtoMapper;
     this.inventoryOperationDomainService = inventoryOperationDomainService;
     this.inventoryOperationDtoMapper = inventoryOperationDtoMapper;
 }
        public CharterOutFacadeService(

         ICharterOutApplicationService charterOutApplicationService,
         ICharterOutRepository charterOutRepository,
         ICharterOutToDtoMapper charterOutToDtoMapper,
         ICharterItemToDtoMapper charterItemToDtoMapper,
            IInventoryOperationToInventoryOperationDtoMapper inventoryOperationDtoMapper
)
        {
            _charterOutApplicationService = charterOutApplicationService;
            _charterOutRepository = charterOutRepository;
            _charterOutToDtoMapper = charterOutToDtoMapper;
            _charterItemToDtoMapper = charterItemToDtoMapper;
            _inventoryOperationDtoMapper = inventoryOperationDtoMapper;
        }
        public CharterInFacadeService(

         ICharterInApplicationService charterInApplicationService,
         ICharterInRepository charterInRepository,
         ICharterInToDtoMapper charterInToDtoMapper,
         ICharterItemToDtoMapper charterItemToDtoMapper,
            IInventoryOperationToInventoryOperationDtoMapper inventoryOperationDtoMapper,
            IEntityConfigurator<Charter> configurator 
)
        {
            _charterInApplicationService = charterInApplicationService;
            _charterInRepository = charterInRepository;
            _charterInToDtoMapper = charterInToDtoMapper;
            _charterItemToDtoMapper = charterItemToDtoMapper;
            _inventoryOperationDtoMapper = inventoryOperationDtoMapper;
            _configurator = configurator;
        }
 //================================================================================
 public FuelReportFacadeService(
     IFuelReportApplicationService appService,
     IFuelReportFuelReportDtoMapper fuelReportMapper,
     IFuelReportDetailToFuelReportDetailDtoMapper fuelReportDetailToFuelReportDetailDtoMapper,
     ICurrencyDomainService currencyDomainService,
     ICurrencyToCurrencyDtoMapper currencyToCurrencyDtoMapper,
     IFuelReportDomainService fuelReportDomainService,
     IInventoryOperationDomainService inventoryOperationDomainService,
     IInventoryOperationToInventoryOperationDtoMapper inventoryOperationMapper)
 {
     this.appService = appService;
     this.fuelReportMapper = fuelReportMapper;
     this.fuelReportDetailToFuelReportDetailDtoMapper = fuelReportDetailToFuelReportDetailDtoMapper;
     this.currencyToCurrencyDtoMapper = currencyToCurrencyDtoMapper;
     this.fuelReportDomainService = fuelReportDomainService;
     this.inventoryOperationDomainService = inventoryOperationDomainService;
     this.inventoryOperationMapper = inventoryOperationMapper;
     this.currencyDomainService = currencyDomainService;
 }
 public VoyageFacadeService(
     IVoyageDomainService voyageDomainService,
     IVoyageToVoyageDtoMapper voyageDtoMapper,
     IFuelReportDomainService fuelReportDomainService,
     IFuelReportFuelReportDtoMapper fuelReportDtoMapper,
     IInventoryOperationDomainService inventoryOperationDomainService,
     IInventoryOperationToInventoryOperationDtoMapper inventoryOperationDtoMapper,
     IVoyageLogDomainService voyageLogDomainService,
     IVoyageLogToVoyageLogDtoMapper voyageLogDtoMapper,
     IGoodToGoodDtoMapper goodDtoMapper)
 {
     this.voyageDomainService = voyageDomainService;
     this.voyageDtoMapper = voyageDtoMapper;
     //this.fuelReportDomainService = fuelReportDomainService;
     this.fuelReportDtoMapper = fuelReportDtoMapper;
     this.inventoryOperationDomainService = inventoryOperationDomainService;
     this.inventoryOperationDtoMapper = inventoryOperationDtoMapper;/**/
     this.voyageLogDtoMapper = voyageLogDtoMapper;
     this.goodDtoMapper = goodDtoMapper;
     this.voyageLogDomainService = voyageLogDomainService;
 }
        public OffhireFacadeService(
            IOffhireApplicationService offhireApplicationService,
            IOffhireDomainService offhireDomainService,
            IEntityConfigurator<Offhire> offhireConfigurator,
            IOffhireToOffhireDtoMapper offhireDtoMapper,
            IOffhireDetailToOffhireDetailDtoMapper offhireDetailDtoMapper,
            IInventoryOperationToInventoryOperationDtoMapper inventoryOperationDtoMapper,
            IOffhireManagementSystemDomainService offhireManagementSystemDomainService,
            IOffhireManagementSystemEntityToOffhireManagementSystemDtoMapper offhireManagementSystemDtoMapper,
            IOffhirePreparedDataToOffhireDtoMapper offhirePreparedDataToOffhireDtoMapper,
            IPricingValueToPricingValueDtoMapper pricingValueDtoMapper)
        {
            this.offhireApplicationService = offhireApplicationService;
            this.offhireDomainService = offhireDomainService;
            this.offhireDtoMapper = offhireDtoMapper;
            this.offhireDetailDtoMapper = offhireDetailDtoMapper;
            this.inventoryOperationDtoMapper = inventoryOperationDtoMapper;
            this.offhireManagementSystemDomainService = offhireManagementSystemDomainService;
            this.offhireManagementSystemDtoMapper = offhireManagementSystemDtoMapper;
            this.offhirePreparedDataToOffhireDtoMapper = offhirePreparedDataToOffhireDtoMapper;
            this.pricingValueDtoMapper = pricingValueDtoMapper;

            this.offhireDomainService.SetConfigurator(offhireConfigurator);
        }