コード例 #1
0
ファイル: frmRefundCash.cs プロジェクト: Klutzdon/SIOTS_HHZX
        public frmRefundCash()
            : base()
        {
            InitializeComponent();

            this._ICardUserAccountBL = MasterBLLFactory.GetBLL<ICardUserAccountBL>(MasterBLLFactory.CardUserAccount);
            this._IUserCardPairBL = MasterBLLFactory.GetBLL<IUserCardPairBL>(MasterBLLFactory.UserCardPair);
            this._ISystemAccountDetailBL = MasterBLLFactory.GetBLL<ISystemAccountDetailBL>(MasterBLLFactory.SystemAccountDetail);
            this._IPreConsumeRecordBL = MasterBLLFactory.GetBLL<IPreConsumeRecordBL>(MasterBLLFactory.PreConsumeRecord);
            this._IRechargeRecordBL = MasterBLLFactory.GetBLL<IRechargeRecordBL>(MasterBLLFactory.RechargeRecord);
        }
コード例 #2
0
        public frmDepartmentBalance()
        {
            InitializeComponent();

            this._systemAccountDetailBL = MasterBLLFactory.GetBLL<ISystemAccountDetailBL>(MasterBLLFactory.SystemAccountDetail);

            this._info = new DepartmentBalance_dtb_Info();

            this.lblHotWaterIncome.Text = "0.00";
            this.lblOrtherIncome.Text = "0.00";
            this.nbxHotIncome.Text = this.lblHotWaterIncome.Text;
            this.nbxOrtherIncome.Text = this.lblHotWaterIncome.Text;
        }