public InventoryOperationNotifier(IAddCharterInStartReceiptVoucher addCharterInStartReceiptVoucher
     //IFuelReportFuelReportDtoMapper fuelReportDtoMapper,
     //IInvoiceToDtoMapper invoiceToDtoMapper,
     //IFuelReportDetailToFuelReportDetailDtoMapper fuelReportDetailDtoMapper
     )
 {
     this.inventoryOperationManager = new InventoryOperationManager();
     _addCharterInStartReceiptVoucher = addCharterInStartReceiptVoucher;
     //this.fuelReportDtoMapper = fuelReportDtoMapper;
     //this.invoiceToDtoMapper = invoiceToDtoMapper;
     //this.fuelReportDetailDtoMapper = fuelReportDetailDtoMapper;
 }
 public InventoryManagementDomainService(IGoodDomainService goodDomainService, ICurrencyDomainService currencyDomainService)
 {
     this.goodDomainService = goodDomainService;
     this.currencyDomainService = currencyDomainService;
     this.inventoryOperationManager = new InventoryOperationManager();
 }