Exemplo n.º 1
0
        public FrmAccountInvestIncomeFlow(
            IAccountService accountService,
            IDailyRecordService dailyRecordService,
            IDailyStatisticsReportService dailyReportService,
            IDictionaryService dictionaryService,
            ITKLineService tkLineService)
        {
            InitializeComponent();

            this._accountService     = accountService;
            this._dailyRecordService = dailyRecordService;
            this._dailyReportService = dailyReportService;
            this._dictionaryService  = dictionaryService;
            this._tkLineService      = tkLineService;
        }
Exemplo n.º 2
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.º 3
0
        public FrmDailyReportExport(IDailyStatisticsReportService statisticsReportService)
        {
            InitializeComponent();

            this._statisticsReportService = statisticsReportService;
        }