コード例 #1
0
 public FinancialDataController(
     IFinancialDataService financialDataService,
     IWorkContext workContext,
     ITransactionReports transactionReports,
     IMapper mapper)
 {
     _financialDataService = financialDataService;
     _workContext          = workContext;
     _transactionReports   = transactionReports;
     _mapper = mapper;
 }
コード例 #2
0
 public ProcessOrdersController(
     IWorkContext workContext,
     IProcessOrderService processOrderService,
     ITransactionReports transactionReports,
     IMapper mapper,
     IRfqService rfqService,
     ISelectItemsServices selectItemsServices,
     ICostCenterService costCenterService)
 {
     _workContext         = workContext;
     _processOrderService = processOrderService;
     _transactionReports  = transactionReports;
     _mapper              = mapper;
     _rfqService          = rfqService;
     _selectItemsServices = selectItemsServices;
     _costCenterService   = costCenterService;
 }
コード例 #3
0
 public TransactionReportsController(
     ITransactionReports transactionReports,
     IWorkContext workContext,
     PAS2Context dbContext,
     IMapper mapper,
     IFinancialDataService financialDataService,
     ISelectItemsServices selectItemsServices,
     ICostCenterService costCenterService)
 {
     _transactionReports   = transactionReports;
     _workContext          = workContext;
     _dbContext            = dbContext;
     _mapper               = mapper;
     _financialDataService = financialDataService;
     _selectItemsServices  = selectItemsServices;
     _costCenterService    = costCenterService;
 }
コード例 #4
0
 public PaymentBouchet(ITransactionReports transactionReports)
     : base(transactionReports)
 {
 }
コード例 #5
0
 public PaymentFlower(ITransactionReports transactionReports)
     : base(transactionReports)
 {
 }
コード例 #6
0
ファイル: Payment.cs プロジェクト: EduardRotaru/Florarie
 public Payment(ITransactionReports transactionReports)
 {
     _transactionReports = transactionReports;
     Transactions        = new List <Transaction>();
 }