public ServiceNoteList()
        {
            InitializeComponent();
            dateTimePickerDate.MaxDate = DateTime.Now;
            dgvServiceNote.AutoGenerateColumns = false;
            txtTotalMoney.KeyPress += TxtMoney_KeyPress;
            Load += ServiceNoteList_Load;
            dgvServiceNote.SelectionChanged += DgvServiceNote_SelectionChanged;

            this.resetUI();

            this.serviceNoteBLT = new ServiceNoteBLT();
            this.contractBLT = new ContractBLT();
            this.roomBLT = new RoomBLT();
            this.tollBillsBLT = new TollBillsBLT();

            cmbContractId.DataSource = contractBLT.getListContract();
            cmbContractId.DisplayMember = "ID";
            cmbContractId.ValueMember = "ID";

            cmbRoomName.DataSource = roomBLT.getListRoom();
            cmbRoomName.DisplayMember = "NAME";
            cmbRoomName.ValueMember = "NAME";

            dgvServiceNote.DataSource = serviceNoteBLT.getListServiceNote();
        }
        public TollBillList()
        {
            InitializeComponent();
            Load += TollBillList_Load;
            dateTimePickerDate.MaxDate = DateTime.Now;
            dateTimePickerNoteService.MaxDate = DateTime.Now;
            dgvTollBills.AutoGenerateColumns = false;
            txtDebt.KeyPress += TxtMoney_KeyPress;
            txtDiscountMoney.KeyPress += TxtMoney_KeyPress;
            txtPriceRoom.KeyPress += TxtMoney_KeyPress;
            txtTotal.KeyPress += TxtMoney_KeyPress;
            txtTotalMoneyService.KeyPress += TxtMoney_KeyPress;
            Load += ServiceNoteList_Load;
            dgvTollBills.SelectionChanged += DgvTollBills_SelectionChanged;

            this.resetUI();

            this.roomBLT = new RoomBLT();
            this.tollBillsBLT = new TollBillsBLT();
            this.receiptsBLT = new ReceiptsBLT();
            this.serviceNoteBLT = new ServiceNoteBLT();

            cmbRoom.DataSource = roomBLT.getListRoom();
            cmbRoom.DisplayMember = "NAME";
            cmbRoom.ValueMember = "NAME";

            dgvTollBills.DataSource = tollBillsBLT.getListTollBill();
        }
Ejemplo n.º 3
0
        public RoomList()
        {
            InitializeComponent();

            this.gridRoomList.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;

            roomBLT = new RoomBLT();
        }
Ejemplo n.º 4
0
        public RoomEdit(Room rooms, int type)
        {
            InitializeComponent();
            this.room = rooms;
            this.typeHandle = type;

            this.tbID.Enabled = false;

            roomBLT = new RoomBLT();
        }
        public ContractList()
        {
            InitializeComponent();

            dateTimePickerDateBegin.MaxDate = DateTime.Now;
            dgvContract.AutoGenerateColumns = false;
            txtPriceRoom.KeyPress += TxtMoney_KeyPress;
            Load += ContractList_Load;
            dgvContract.SelectionChanged += DgvContract_SelectionChanged;

            this.resetUI();

            this.serviceNoteBLT = new ServiceNoteBLT();
            this.contractBLT = new ContractBLT();
            this.roomBLT = new RoomBLT();

            cmbContractStatus.DataSource = new List<ContractStatus>()
            {
                new ContractStatus()
                {
                    Value = false,
                    Display = "InValid"
                },
                new ContractStatus()
                {
                    Value = true,
                    Display = "Valid"
                }
            };
            cmbContractStatus.DisplayMember = "Display";
            cmbContractStatus.ValueMember = "Value";

            cmbRoom.DataSource = roomBLT.getListRoom();
            cmbRoom.DisplayMember = "NAME";
            cmbRoom.ValueMember = "ID";

            dgvContract.DataSource = contractBLT.getListContract();
        }
        public void Init()
        {
            InitializeComponent();
            Load += ContractEdit_Load;
            contractBLT = new ContractBLT();
            serviceBLT = new ServiceBLT();
            roomBLT = new RoomBLT();
            customerBLT = new CustomerBLT();
            dateTimePickerBeginDate.MaxDate = DateTime.Now;
            dateTimePickerBeginDate.Value = dateTimePickerBeginDate.MaxDate;
            dateTimePickerEndDate.Value = dateTimePickerBeginDate.MaxDate;
            dgvService.AutoGenerateColumns = false;
            dgvService.AllowUserToDeleteRows = false;
            dgvService.AllowUserToAddRows = false;

            cmbRoom.DisplayMember = "NAME";
            cmbRoom.ValueMember = "ID";

            cmbCustomer.DisplayMember = "NAME";
            cmbCustomer.ValueMember = "ID";
            cmbCustomer.DataSource = customerBLT.getListCustomer();

            txtDuration.KeyPress += TxtMoney_KeyPress;
            txtPriceRoom.KeyPress += TxtMoney_KeyPress;
            txtDeposit.KeyPress += TxtMoney_KeyPress;
            txtBail.KeyPress += TxtMoney_KeyPress;
            txtRest.KeyPress += TxtMoney_KeyPress;

            txtPriceRoom.TextChanged += TxtMoney_TextChanged;
            txtDeposit.TextChanged += TxtMoney_TextChanged;
        }