public InventoryOperationNotifier( IFuelReportFuelReportDtoMapper fuelReportDtoMapper, IInvoiceToDtoMapper invoiceToDtoMapper, IFuelReportDetailToFuelReportDetailDtoMapper fuelReportDetailDtoMapper) { this.fuelReportDtoMapper = fuelReportDtoMapper; this.invoiceToDtoMapper = invoiceToDtoMapper; this.fuelReportDetailDtoMapper = fuelReportDetailDtoMapper; }
//================================================================================ 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 InventoryOperationNotifier( ICharterInToDtoMapper charterInToDtoMapper , ICharterOutToDtoMapper charterOutToDtoMapper , ICharterItemToDtoMapper charterItemToDtoMapper , IScrapToScrapDtoMapper scrapToScrapDtoMapper , IFuelReportFuelReportDtoMapper fuelReportToFuelReportDtoMapper , IFuelReportDetailToFuelReportDetailDtoMapper fuelReportDetailToFuelReportDetailDtoMapper , IInvoiceToDtoMapper invoiceToDtoMapper) { //svc = new FuelServiceClient(); //svc.ClientCredentials.UserName.UserName = "******"; //svc.ClientCredentials.UserName.Password = "******"; this.charterInToDtoMapper = charterInToDtoMapper; this.charterOutToDtoMapper = charterOutToDtoMapper; this.charterItemToDtoMapper = charterItemToDtoMapper; this.scrapToScrapDtoMapper = scrapToScrapDtoMapper; this.fuelReportDetailToFuelReportDetailDtoMapper = fuelReportDetailToFuelReportDetailDtoMapper; this.invoiceToDtoMapper = invoiceToDtoMapper; this.fuelReportToFuelReportDtoMapper = fuelReportToFuelReportDtoMapper; }
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; }