Пример #1
0
        private void txtBkRFID_KeyDown(object sender, KeyEventArgs e)
        {
            if (txtBkRFID.TextLength != 10)
            {
                return;
            }
            else
            {
                // MessageBox.Show(string.Format("Student RFID: {0} \n Copy RFID: {1}", txtStuRFID.Text, txtBkRFID.Text));

                TransactionResponse Tresponse = WebApiClient.CheckInCheckOut(txtStuRFID.Text, txtBkRFID.Text);

                MessageBox.Show(Tresponse.ResponseMessage);
            }
        }