コード例 #1
0
        public CurrencyFacadeService(
              ICurrencyDomainService currencyDomainService,
            ICurrencyToCurrencyDtoMapper currencyToCurrencyDtoMapper

                                                 )
        {
            this.currencyDomainService = currencyDomainService;
            this._mapper = currencyToCurrencyDtoMapper;
        }
コード例 #2
0
 //================================================================================
 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;
 }