Esempio n. 1
0
        public _dialogAmountSplit(IDailyRecordService dailyService, IDeliveryRecordService deliveryService)
        {
            InitializeComponent();

            this._dailyService    = dailyService;
            this._deliveryService = deliveryService;
        }
Esempio n. 2
0
 public MonthlyStatementService(
     IRepository <MIAccountFund> MIFundRepo,
     IRepository <MIAccountPosition> MIPositionRepo,
     IDeliveryRecordService deliveryRecordService)
 {
     this._MIFundRepo            = MIFundRepo;
     this._MIPositionRepo        = MIPositionRepo;
     this._deliveryRecordService = deliveryRecordService;
 }
Esempio n. 3
0
        public _dialogTradeDataContrast(IAccountService accountService, IDictionaryService dictionaryService, IDeliveryRecordService deliveryService, IDailyRecordService dailyService)
        {
            InitializeComponent();

            this._accountService    = accountService;
            this._dictionaryService = dictionaryService;
            this._deliveryService   = deliveryService;
            this._dailyService      = dailyService;
        }
Esempio n. 4
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;
        }
Esempio n. 5
0
        public FrmDeliveryManage(
            IDeliveryRecordService deliveryRecordService,
            IStockService stockService,
            IAccountService accountService,
            IUserService userService,
            ICommonService commonService
            )
        {
            InitializeComponent();

            this._deliveryRecordService = deliveryRecordService;
            this._accountService        = accountService;
            this._stockService          = stockService;
            this._userService           = userService;
            this._commonService         = commonService;
        }
Esempio n. 6
0
        public FrmDeliveryImport
        (
            IDictionaryService dictionaryService,
            IAccountService accountService,
            IDeliveryRecordService deliveryRecordService,
            IDataImportCommonService dataImportCommonService,
            ICommonService commonService
        )
        {
            InitializeComponent();

            this._dictionaryService       = dictionaryService;
            this._accountService          = accountService;
            this._deliveryRecordService   = deliveryRecordService;
            this._dataImportCommonService = dataImportCommonService;
            this._commonService           = commonService;
        }