Exemplo n.º 1
0
        public FrmStockInvestIncomeSummary(IDailyRecordService dailyRecordService, ITKLineService TKLineService, IUserService userService)
        {
            InitializeComponent();

            this._dailyRecordService = dailyRecordService;
            this._TKLineService      = TKLineService;
            this._userService        = userService;
        }
Exemplo n.º 2
0
        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;
        }
Exemplo n.º 3
0
        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;
        }
Exemplo n.º 4
0
        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;
        }
Exemplo n.º 5
0
        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;
        }