public FrmStockInvestIncomeSummary(IDailyRecordService dailyRecordService, ITKLineService TKLineService, IUserService userService) { InitializeComponent(); this._dailyRecordService = dailyRecordService; this._TKLineService = TKLineService; this._userService = userService; }
public FrmDeliveryAccountInvestIncomeFlow( IAccountService accountService, IDeliveryRecordService deliveryRecordService, IDeliveryStatisticsReportService deliveryReportService, IDictionaryService dictionaryService, ITKLineService tkLineService) { InitializeComponent(); this._accountService = accountService; this._deliveryRecordService = deliveryRecordService; this._deliveryReportService = deliveryReportService; this._dictionaryService = dictionaryService; this._tkLineService = tkLineService; }
public FrmUserInvestIncomeAccount( IDailyRecordService dailyRecordService, IAccountService accountService, IUserService userService, IDepartmentService deptService, ITKLineService tKLineService) { InitializeComponent(); this._dailyRecordService = dailyRecordService; this._accountService = accountService; this._userService = userService; this._deptService = deptService; this._tKLineService = tKLineService; }
public FrmUserInvestIncomeMonthly( IDailyRecordService dailyRecordService, IUserService userService, IDepartmentService departmentService, ITKLineService tKLineService, IDailyStatisticsReportService statisticsReportService ) { InitializeComponent(); this._dailyRecordService = dailyRecordService; this._userService = userService; this._departmentService = departmentService; this._tKLineService = tKLineService; this._statisticsReportService = statisticsReportService; }
public FrmStockTransfer( IDailyRecordService tradeRecordService, IUserService userService, IAccountService accountService, IStockService stockService, ITKLineService tkLineService ) { InitializeComponent(); this._userService = userService; this._tradeRecordService = tradeRecordService; this._accountService = accountService; this._stockService = stockService; this._tkLineService = tkLineService; }